/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
a,
button,
span,
p,
input,
textarea,
img,
svg,
li,
h1,
h2,
h3,
h4,
h5,
h6,
.body__overlay {
    -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: "Tajawal", sans-serif;
    --rs-ff-title: "Tajawal", sans-serif;
    --rs-ff-p: "Tajawal", sans-serif;
    --rs-ff-fontawesome: "Font Awesome 6 Pro";
    --rs-ff-remixicon: "remixicon";
    /** @color declaration */
    --rs-white: #FFFFFF;
    --rs-black: #1F1F1F;
    --rs-light: #eee;
    --mainColor: #4a6571;
    --rs-theme-orange: #4a6571;
    --rs-theme-red: #E30613;
    --rs-theme-blue: #005EB8;
    --rs-theme-light-blue: #0D80CE;
    --rs-theme-green: #023B4A;
    --rs-theme-light-green: #507A7C;
    --rs-theme-yellow: #F7C600;
    --rs-theme-deep-blue: #3B37FD;
    --rs-theme-cyan: #00CAA4;
    --rs-theme-medium-blue: #1455AA;
    --rs-theme-medium-yellow: #FFCA3B;
    --rs-text-primary: #616161;
    --rs-text-secondary: #CBCCCD;
    --rs-text-tertiary: #142340;
    --rs-title-primary: #1F1F1F;
    --rs-title-secondary: #152A40;
    --rs-bg-primary: #f8f9fa;
    --rs-border-primary: rgba(0, 0, 0, 0.05);
    --rs-border-secondary: rgba(102, 102, 102, 0.2);
    --rs-border-tertiary: #152A40;
    --rs-placeholder: rgba(30, 30, 30, 0.4);
    --rs-rgba-1: rgba(255, 255, 255, 0.07);
    --rs-rgba-2: rgba(255, 255, 255, 0.05);
    --rs-rating-color: #FFC62D;
    /** @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: 18px;
    --rs-fs-p: 17px;
    --rs-fs-h1: 68px;
    --rs-fs-h2: 52px;
    --rs-fs-h3: 38px;
    --rs-fs-h4: 28px;
    --rs-fs-h5: 24px;
    --rs-fs-h6: 20px;
    --rs-fs-b1: 14px;
    --rs-fs-b2: 16px;
    --rs-fs-b3: 18px;
    --rs-fs-b4: 22px;
}

/*----------------------------------------
   Icomoon customize
-----------------------------------------*/
i[class^=icon-] {
    line-height: 1;
    position: relative;
}

/*----------------------------------------
   Bootstrap customize
-----------------------------------------*/
.container,
.container-fluid {
    --bs-gutter-x: 3rem;
}

@media (min-width: 1441px) {
    .container {
        max-width: 1390px;
    }
}

.row {
    --bs-gutter-x: 3rem;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
.p-relative {
    position: relative;
}

/*----------------------------------------
    Body Overlay
-----------------------------------------*/
.body__overlay {
    background-color: var(--rs-common-heading);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.body__overlay {
    background-color: var(--rs-common-heading);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.body__overlay.opened {
    opacity: 0.7;
    visibility: visible;
}

.image-overly::before {
    position: absolute;
    content: "";
    inset-inline-start: 0;
    inset-block-start: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/*----------------------------------------
   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: 0 90%;
    background-repeat: no-repeat;
    background-size: 0 2px;
    -webkit-transition: all 0.3s, background-size 0.8s;
    transition: all 0.3s, background-size 0.8s;
}

.underline a:hover {
    color: var(--mainColor);
    background-size: 100% 2px;
}

.underline.has-theme-red a {
    background-image: linear-gradient(var(--rs-theme-red), var(--rs-theme-red)), linear-gradient(var(--rs-theme-red), var(--rs-theme-red));
}

.underline.has-theme-red a:hover {
    color: var(--rs-theme-red);
}

.underline.has-white a {
    background-image: linear-gradient(var(--rs-white), var(--rs-white)), linear-gradient(var(--rs-white), var(--rs-white));
    padding: 0 0 1% 0;
}

.underline.has-white a:hover {
    color: var(--rs-white);
}

.underline.has-black a {
    background-image: linear-gradient(var(--rs-title-primary), var(--rs-title-primary)), linear-gradient(var(--rs-title-primary), var(--rs-title-primary));
}

.underline.has-black a:hover {
    color: var(--rs-title-primary);
}

/*----------------------------------------
   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: 575px), only screen and (max-width: 767px), 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,
h2,
h3,
h4,
h5,
h6 {
    color: var(--rs-title-primary);
    margin-top: 0px;
    line-height: 1;
    margin-bottom: 0;
    font-weight: var(--rs-fw-bold);
    word-break: break-word;
    font-family: var(--rs-ff-title);
}

h1 {
    font-size: var(--rs-fs-h1);
    line-height: 1;
    font-weight: var(--rs-fw-bold);
    font-family: var(--rs-ff-title);
}

h2 {
    font-size: var(--rs-fs-h2);
    line-height: 1.17;
    font-weight: var(--rs-fw-bold);
}

@media only screen and (max-width: 1366px) {
    h2 {
        font-size: 25px;
    }
}

@media only screen and (max-width: 1199px) {
    h2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 991px) {
    h2 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 575px) {
    h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 480px) {
    h2 {
        font-size: 26px;
    }
}

h3 {
    font-size: var(--rs-fs-h3);
    line-height: 1.25;
    font-weight: var(--rs-fw-bold);
}

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

@media only screen and (max-width: 575px) {
    h3 {
        font-size: 24px;
    }
}

h4 {
    font-size: var(--rs-fs-h4);
    line-height: 1.33;
    font-weight: var(--rs-fw-bold);
}

@media only screen and (max-width: 767px), only screen and (max-width: 575px) {
    h4 {
        font-size: 22px;
    }
}

h5 {
    font-size: var(--rs-fs-h5);
    line-height: 1.4;
    font-weight: var(--rs-fw-bold);
}

@media only screen and (max-width: 1366px) {
    h5 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1199px) {
    h5 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
    h5 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 575px) {
    h5 {
        font-size: 20px;
    }
}

h6 {
    font-size: var(--rs-fs-h6);
    line-height: 1.44;
    font-weight: var(--rs-fw-bold);
}

@media only screen and (max-width: 575px) {
    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:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

a: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;
}

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(--mainColor);
}

textarea {
    padding: 14px 24px;
}

textarea:focus {
    border-color: var(--mainColor);
}

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

::selection {
    background: #1f1f1f;
    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: 110px;
    padding-bottom: 110px;
}

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

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

.section-space-top {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

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

.section-space-bottom {
    padding-bottom: 100px;
}

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

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

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

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

.rs-accordion-one .accordion-button:not(.collapsed) .accordion-btn::before {
    transform: translateX(-50%) rotate(90deg);
}

.rs-accordion-one .accordion-button:not(.collapsed) .accordion-btn::after {
    background: var(--mainColor);
}

.rs-accordion-one .accordion-button .accordion-btn::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    background-color: var(--rs-black);
    transform: translateX(-50%);
    border-radius: 2px;
    transition: all 0.3s ease-out 0s;
}

.rs-accordion-one .accordion-button .accordion-btn::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--rs-black);
    border-radius: 2px;
}

.rs-accordion-one .accordion-body {
    padding: 0;
    color: var(--rs-text-primary);
    padding: 20px 50px 20px 20px;
    border-top: 1px solid rgba(31, 31, 31, 0.1);
}

.rs-accordion-one.has-theme-red .accordion-button:not(.collapsed) .accordion-btn::after {
    background: var(--rs-theme-red);
}

.rs-accordion-one.has-theme-red .accordion-button .accordion-btn::before, .rs-accordion-one.has-theme-red .accordion-button .accordion-btn::after {
    background: var(--rs-white);
}

.rs-accordion-one.has-theme-red .accordion-body {
    color: #E6E6E6;
    border-top: 1px solid transparent;
}

.rs-accordion-one.has-theme-orange .accordion-button:not(.collapsed) .accordion-btn::after {
    background: var(--mainColor);
}

.rs-accordion-one.has-theme-orange .accordion-button .accordion-btn::before, .rs-accordion-one.has-theme-orange .accordion-button .accordion-btn::after {
    background: var(--rs-white);
}

.rs-accordion-one.has-theme-orange .accordion-body {
    color: #E6E6E6;
    border-top: 1px solid transparent;
}

.rs-accordion-one.has-theme-blue .accordion-button:not(.collapsed) .accordion-btn::after {
    background: var(--rs-theme-blue);
}

.rs-accordion-one.has-theme-blue .accordion-button .accordion-btn::before, .rs-accordion-one.has-theme-blue .accordion-button .accordion-btn::after {
    background: var(--rs-black);
}

.rs-accordion-one.has-theme-blue .accordion-body {
    padding: 20px 50px 20px 30px;
}

@media only screen and (max-width: 575px) {
    .rs-accordion-one.has-theme-blue .accordion-body {
        padding: 20px 30px 20px 30px;
    }
}

.rs-accordion-one.has-theme-green .accordion-button:not(.collapsed) .accordion-btn::after {
    background: var(--rs-theme-green);
}

.rs-accordion-one.has-white .accordion-body {
    background: var(--rs-white);
}

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

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

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

/*----------------------------------------*/
/*  2.3 Background
/*----------------------------------------*/
.primary-bg {
    background-color: var(--rs-bg-primary);
}

/*----------------------------------------*/
/*  2.7 Buttons
/*----------------------------------------*/
.rs-btn {
    font-size: 18px;
    text-transform: capitalize;
    color: var(--rs-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    height: 60px;
    transition: all 0.3s linear;
    border-radius: 2px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.rs-btn.has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #7e969e;
    transition: all 0.5s ease;
    transform: translateX(-100%);
    border-radius: 2px;
    z-index: -1;
}

.rs-btn.white-bg.has-theme-medium-yellow.has-bg::before {
    background: var(--rs-theme-medium-yellow);
}

.rs-btn.has-bg-transparent {
    background: transparent;
    color: var(--rs-title-primary);
    border: 1px solid #E1E1E1;
}

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

.rs-btn.has-bg-transparent:hover {
    border-color: var(--mainColor);
}

.rs-btn.has-bg-transparent.has-theme-medium-yellow.has-bg::before {
    background: var(--rs-theme-medium-yellow);
}

.rs-btn.has-theme-orange {
    background: var(--mainColor);
}

.rs-btn.has-theme-red {
    background: var(--mainColor);
}

.rs-btn.has-theme-red:hover {
    filter: brightness(120%);
}

.rs-btn.has-theme-red.has-bg::before {
    content: "";
    background-color: rgba(4, 4, 35, 0.25);
}

.rs-btn.has-theme-red.has-bg:hover {
    filter: unset;
}

.rs-btn.has-theme-red.has-skew {
    transform: skewX(-5deg);
}

.rs-btn.has-theme-blue.has-bg::before {
    background-color: rgba(4, 4, 35, 0.25);
}

.rs-btn.has-theme-yellow.has-bg::before {
    background: #EBB40E;
}

.rs-btn.has-theme-light-blue.has-bg::before {
    background-color: #0C7BC7;
}

.rs-btn.has-theme-light-green.has-bg::before {
    background-color: #375B5D;
}

.rs-btn.has-theme-light-green.has-bg-white.has-bg::before {
    background-color: var(--rs-theme-green);
}

.rs-btn.has-theme-deep-blue.has-bg::before {
    background: #1F1CB9;
}

.rs-btn.has-theme-cyan.has-bg::before {
    background: var(--rs-theme-medium-blue);
}

.rs-btn.has-theme-medium-yellow.has-bg::before {
    background: var(--rs-black);
}

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

.rs-btn.has-white.has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--rs-black);
    transition: all 0.5s ease;
    transform: translateX(-100%);
    border-radius: 2px;
    z-index: -1;
}

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

.rs-btn.has-white:hover::before {
    transform: translateX(0);
}

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

.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.has-icon:hover {
    color: var(--rs-white);
}

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

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

.rs-btn.has-circle {
    padding: 0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.rs-btn.has-black {
    background: var(--rs-black);
}

.rs-btn.has-black svg {
    width: 12px;
}

.rs-btn.has-black svg path {
    fill: #FFFFFF;
}

.rs-btn.has-text {
    color: var(--rs-black);
    text-decoration: underline;
    padding: 0;
    width: unset;
    height: unset;
}

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

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

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

.rs-btn:hover.has-bg::before {
    transform: translateX(0);
}

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

.rs-btn-group > *:nth-child(1) {
    transform: scale3d(0.5, 0.5, 1);
    margin-inline-end: -70px;
}

@media only screen and (max-width: 1199px) {
    .rs-btn-group > *:nth-child(1) {
        margin-inline-end: -50px;
    }
}

.rs-btn-group > *:nth-child(2) {
    transform: scale3d(1, 1, 1);
}

.rs-btn-group > *:nth-child(3) {
    transform: scale3d(1, 1, 1);
    margin-inline-start: 0;
}

.rs-btn-group:hover > *:nth-child(1) {
    transform: scale3d(1, 1, 1);
    margin-inline-end: 0;
}

.rs-btn-group:hover > *:nth-child(2) {
    transform: scale3d(1, 1, 1);
}

.rs-btn-group:hover > *:nth-child(3) {
    transform: scale3d(0.5, 0.5, 1);
    margin-inline-start: -70px;
}

@media only screen and (max-width: 1199px) {
    .rs-btn-group:hover > *:nth-child(3) {
        margin-inline-start: -50px;
    }
}

.rs-play-btn {
    width: 60px;
    height: 60px;
    font-size: 26px;
    background: var(--mainColor);
    display: inline-flex;
    border-radius: 50%;
    color: var(--rs-white);
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.rs-play-btn.has-theme-red {
    width: 65px;
    height: 65px;
    font-size: 20px;
    background: var(--rs-theme-red);
}

.rs-play-btn.has-theme-red::before {
    background: var(--rs-theme-red);
}

.rs-play-btn.has-theme-yellow::before {
    background: var(--rs-theme-yellow);
}

.rs-play-btn.has-theme-blue::before {
    background: var(--rs-theme-blue);
    width: 80px;
    height: 80px;
}

.rs-play-btn.has-theme-deep-blue::before {
    background: var(--rs-theme-deep-blue);
    width: 80px;
    height: 80px;
}

.rs-play-btn.has-theme-orange {
    width: 80px;
    height: 80px;
    font-size: 25px;
    background: var(--mainColor);
}

.rs-play-btn.has-theme-orange::before {
    background: var(--mainColor);
    width: 80px;
    height: 80px;
}

.rs-play-btn.has-transparent-btn::before, .rs-play-btn.has-transparent-btn::after {
    content: none;
}

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

.rs-play-btn::before {
    background: var(--mainColor);
    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-square-btn {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 9px;
    height: 30px;
    transition: all 0.3s linear;
    border-radius: 2px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.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-light-grey {
    background: #E4E4E4;
    height: 40px;
    padding: 15px 10px;
}

.rs-square-btn.has-light-grey .icon-box i {
    font-size: 20px;
}

.rs-square-btn.has-light-grey:hover {
    background: var(--rs-theme-red);
}

.rs-square-btn.has-light-grey:hover .icon-box i {
    color: var(--rs-white);
}

.rs-square-btn.has-theme-orange {
    padding: 15px 17px;
    height: 50px;
    background: var(--mainColor);
}

.rs-square-btn.has-theme-orange .icon-box svg {
    width: 16px;
}

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

.rs-square-btn.has-black {
    background: #dfb303;
}

.rs-square-btn.has-black:hover {
    background: var(--rs-black);
}

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

.rs-text-btn {
    font-weight: 500;
}

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

.rs-text-btn.rs-btn {
    padding: 0;
    height: unset;
    color: var(--rs-text-secondary);
    font-weight: 400;
}

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

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

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

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

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

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

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

.rs-text-btn.has-icon:hover {
    color: var(--mainColor);
}

.rs-text-btn.has-icon:hover svg {
    fill: var(--mainColor);
}

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

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

/*----------------------------------------*/
/*  2.8 Color Short Code
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.9 counter
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.15 Offcanvas
/*----------------------------------------*/
.offcanvas-area ::-webkit-scrollbar {
    display: none;
}

.offcanvas-search input::placeholder {
    color: var(--rs-placeholder);
}

/*----------------------------------------*/
/*  2.20 Section Title
/*----------------------------------------*/
.rs-section-title {
    color: var(--rs-title-primary);
    font-weight: var(--rs-fw-bold);
    font-family: var(--rs-ff-title);
}

.rs-section-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--rs-black);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}

.rs-section-subtitle img {
    width: 30px;
}

@media only screen and (max-width: 767px), only screen and (max-width: 575px) {
    .rs-section-subtitle img {
        width: 25px;
    }
}

@media only screen and (max-width: 767px), only screen and (max-width: 575px) {
    .rs-section-subtitle {
        font-size: 17px;
        line-height: 27px;
    }
}

.rs-section-subtitle.has-theme-orange {
    color: var(--mainColor);
}

.rs-section-subtitle.has-theme-red {
    color: var(--mainColor);
}

.rs-section-subtitle.has-theme-red svg path {
    fill: var(--mainColor);
}

.rs-section-subtitle.has-bg-field {
    color: var(--mainColor);
    padding: 8px 14px 8px 14px;
    border-radius: 2px 2px 2px 2px;
    display: inline-flex;
    text-transform: capitalize;
    font-size: 18px;
    margin-bottom: 20px;
}

.rs-section-subtitle.has-stroke {
    -webkit-text-stroke-color: rgb(74 101 113);
    stroke: rgb(74 101 113);
    letter-spacing: 4.6px;
    color: rgba(2, 1, 1, 0);
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
}

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

.rs-section-subtitle.has-white svg path {
    fill: var(--rs-white);
}

/*----------------------------------------*/
/*  2.6 Breadcrumb
/*----------------------------------------*/
.rs-breadcrumb-one {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

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

.rs-breadcrumb-one .rs-breadcrumb-bg {
    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-breadcrumb-one .rs-breadcrumb-bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.28);
    top: 0;
    inset-inline-start: 0;
    z-index: -1;
}

@media only screen and (max-width: 575px) {
    .rs-breadcrumb-one .rs-breadcrumb-bg {
        background-position: center left;
    }
}

.rs-breadcrumb-one .rs-breadcrumb-title {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--rs-white);
}

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

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

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

.rs-breadcrumb-one .rs-breadcrumb-menu ul {
    display: inline-flex;
    gap: 15px 10px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.rs-breadcrumb-one .rs-breadcrumb-menu ul i {
    font-family: remixicon !important;
    font-size: 20px;
    opacity: 1;
    color: var(--rs-white);
    /*transform: rotate(180deg);*/
    position: relative;
    top: -4px;
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li span {
    color: var(--rs-white);
}

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

/*----------------------------------------
   2.16 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 {
    width: 10px;
    height: 10px;
    background: #e1e6f9;
    position: relative;
    transform: unset;
    opacity: unset;
    margin: 0 13px;
}

.rs-pagination.swiper-pagination .swiper-pagination-bullet::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
}

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

.rs-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border-color: var(--rs-theme-light-blue);
    transform: translate(-50%, -50%) scale(1);
}

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

.rs-pagination.swiper-pagination.has-theme-orange .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border-color: var(--mainColor);
}

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

.rs-pagination.swiper-pagination.has-theme-red .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border-color: var(--mainColor);
}

.rs-pagination.swiper-pagination.has-theme-deep-blue .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border-color: var(--rs-theme-deep-blue);
}

.rs-pagination.swiper-pagination.has-theme-green .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border-color: var(--rs-theme-light-green);
}

.rs-pagination.swiper-pagination.has-theme-yellow .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border-color: var(--rs-theme-yellow);
}

.rs-pagination.swiper-pagination.has-theme-cyan .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border-color: var(--rs-theme-cyan);
}

.rs-pagination.swiper-pagination.has-theme-medium-yellow .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border-color: var(--rs-theme-medium-yellow);
}

.common-pagination {
    text-align: center;
    margin-top: 45px;
}

.common-pagination ul {
    display: inline-flex;
    border: 1px solid #f2f2f2;
    padding-top: 15px;
    padding-bottom: 15px;
}

.common-pagination ul li {
    list-style: none;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    line-height: 22px;
}

.common-pagination ul li:hover {
    color: var(--mainColor);
}

.common-pagination ul li .current {
    color: var(--mainColor);
}

.common-pagination ul li:not(:last-child) {
    border-right: 1px solid #E6E6E6;
}

/*----------------------------------------*/
/*  2.11 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::after {
    position: absolute;
    content: "";
    top: 2px;
    left: 0;
    width: 18px;
    height: 18px;
    line-height: 16px;
    text-align: center;
    border: 1px solid #C3C7C9;
    z-index: -1;
    transition: all 0.2s linear;
}

input[type=checkbox] ~ label::before {
    position: absolute;
    content: "\f00c";
    top: 3px;
    left: 0px;
    width: 18px;
    height: 18px;
    line-height: 16px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    color: var(--rs-white);
    transition: all 0.2s linear;
    font-family: var(--rs-ff-fontawesome);
    font-size: 14px;
}

/*----------------------------------------*/
/*  2.24 social
/*----------------------------------------*/
.rs-theme-social {
    display: inline-flex;
    gap: 12px;
}

.rs-theme-social a {
    color: rgba(255, 255, 255, 0.54);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.09);
    transition: 0.3s;
}

.rs-theme-social a:hover {
    background: var(--mainColor);
    color: var(--rs-white);
}

.rs-theme-social.has-bg a {
    background: #E6E6E9;
    color: #737373;
}

.rs-theme-social.has-bg a:hover {
    background: var(--mainColor);
    color: var(--rs-white);
}

.rs-theme-social.has-white a {
    background: var(--rs-white);
}

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

.rs-theme-social.has-theme-red a:hover {
    background: var(--rs-theme-red);
}

.rs-theme-social.has-transparent a {
    background: transparent;
    color: #616161;
    width: unset;
    height: unset;
}

.rs-theme-social.has-transparent.has-orange a:hover {
    color: var(--mainColor);
}

.rs-theme-social.has-bg-black {
    flex-direction: column;
}

.rs-theme-social.has-bg-black a {
    background-color: #000;
    color: #fff;
}

.rs-theme-social.has-bg-black a:hover {
    background: var(--mainColor);
    color: var(--rs-white);
}

/*----------------------------------------*/
/*  2.4 Back to top
/*----------------------------------------*/
.backtotop-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    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(--mainColor);
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.backtotop-wrap:hover {
    background: #7e969e;
}

.backtotop-wrap.has-theme-yellow::after {
    color: var(--rs-black);
}

.backtotop-wrap.has-theme-deep-blue::after {
    color: var(--rs-white);
}

.backtotop-wrap.has-theme-blue::after {
    color: var(--rs-white);
}

.backtotop-wrap.has-theme-light-blue::after {
    color: var(--rs-white);
}

.backtotop-wrap.has-theme-cyan::after {
    color: var(--rs-white);
}

.backtotop-wrap.has-theme-red {
    background: var(--rs-theme-red);
}

.backtotop-wrap.has-theme-red::after {
    color: var(--rs-white);
}

.backtotop-wrap.has-theme-red:hover {
    background: var(--rs-black);
}

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

.backtotop-wrap::after {
    position: absolute;
    font-family: var(--rs-ff-fontawesome);
    content: "\f062";
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    font-weight: 400;
    color: var(--rs-white);
    inset-inline-start: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.backtotop-wrap svg path {
    fill: none;
}

.backtotop-wrap svg.backtotop-circle path {
    stroke: #ccc;
    stroke-width: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

/*----------------------------------------*/
/*  2.2 Animations
/*----------------------------------------*/
@keyframes shine {
    100% {
        left: 125%;
    }
}

@-webkit-keyframes btnMarqueeTextX {
    100% {
        transform: translateX(-200%);
    }
}

@keyframes btnMarqueeTextX {
    100% {
        transform: translateX(-200%);
    }
}

@-webkit-keyframes btnMarqueeTextY {
    100% {
        transform: translateY(-200%);
    }
}

@keyframes btnMarqueeTextY {
    100% {
        transform: translateY(-200%);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(7, 161, 105, 0.5);
        box-shadow: 0 0 0 0 rgba(7, 161, 105, 0.5);
    }
    70% {
        -moz-box-shadow: 0 0 0 45px rgba(7, 161, 105, 0);
        box-shadow: 0 0 0 45px rgba(7, 161, 105, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(7, 161, 105, 0);
        box-shadow: 0 0 0 0 rgba(7, 161, 105, 0);
    }
}

@keyframes pulse-secondary {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(251, 140, 0, 0.5);
        box-shadow: 0 0 0 0 rgba(251, 140, 0, 0.5);
    }
    70% {
        -moz-box-shadow: 0 0 0 45px rgba(251, 140, 0, 0);
        box-shadow: 0 0 0 45px rgba(251, 140, 0, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(251, 140, 0, 0);
        box-shadow: 0 0 0 0 rgba(251, 140, 0, 0);
    }
}

@keyframes pulse-white {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.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 popupBtn {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes rs-scale {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }
}

@keyframes rs-scale-two {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    100% {
        transform: scale(1.07);
        -webkit-transform: scale(1.07);
    }
}

@keyframes slide-left {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes iconBounce {
    0% {
        animation-timing-function: ease-in;
        opacity: 1;
        transform: translateY(-25px);
    }
    24% {
        opacity: 1;
    }
    40% {
        animation-timing-function: ease-in;
        transform: translateY(-24px);
    }
    65% {
        animation-timing-function: ease-in;
        transform: translateY(-12px);
    }
    82% {
        animation-timing-function: ease-in;
        transform: translateY(-6px);
    }
    93% {
        animation-timing-function: ease-in;
        transform: translateY(-4px);
    }
    25%, 55%, 75%, 87% {
        animation-timing-function: ease-out;
        transform: translateY(0px);
    }
    100% {
        animation-timing-function: ease-out;
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes line-dash {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes planeRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100px);
    }
}

@keyframes cameraScale {
    0% {
        transform: scale(0.5);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes stoneSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100px);
    }
}

@-moz-keyframes badgeSpin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes badgeSpin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rsSpin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rs-spin-reverse {
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes plane3Scale {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Right To Left */
@keyframes right-2-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100px);
    }
}

@keyframes upDown {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -o-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes animation-upDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-40px);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

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

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(16px);
        -moz-transform: translateY(16px);
        -ms-transform: translateY(16px);
        -o-transform: translateY(16px);
        transform: translateY(16px);
    }
}

@-moz-keyframes scroll {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(16px);
        -moz-transform: translateY(16px);
        -ms-transform: translateY(16px);
        -o-transform: translateY(16px);
        transform: translateY(16px);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(16px);
        -moz-transform: translateY(16px);
        -ms-transform: translateY(16px);
        -o-transform: translateY(16px);
        transform: translateY(16px);
    }
}

@keyframes bubble {
    0% {
        -webkit-transform: rotate(0deg) translateX(-50px);
        -moz-transform: rotate(0deg) translateX(-50px);
        -ms-transform: rotate(0deg) translateX(-50px);
        transform: rotate(0deg) translateX(-50px);
    }
    100% {
        -webkit-transform: rotate(360deg) translateY(100px);
        -moz-transform: rotate(360deg) translateY(100px);
        -ms-transform: rotate(360deg) translateY(100px);
        transform: rotate(360deg) translateY(100px);
    }
}

@keyframes rs-leftright {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        -o-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes bounce {
    0%, 10%, 100%, 20%, 50%, 80% {
        transform: translateX(0);
    }
    40%, 60% {
        transform: translateX(-15px);
    }
}

@keyframes top-image-bounce {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    50% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
    }
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(16px);
        -moz-transform: translateY(16px);
        -ms-transform: translateY(16px);
        -o-transform: translateY(16px);
        transform: translateY(16px);
    }
}

@-moz-keyframes scroll {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(16px);
        -moz-transform: translateY(16px);
        -ms-transform: translateY(16px);
        -o-transform: translateY(16px);
        transform: translateY(16px);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(16px);
        -moz-transform: translateY(16px);
        -ms-transform: translateY(16px);
        -o-transform: translateY(16px);
        transform: translateY(16px);
    }
}

@keyframes pulse-blur {
    from, to {
        scale: 1;
        filter: blur(0px);
    }
    50% {
        scale: 1.05;
        filter: blur(2px);
    }
}

@keyframes line1 {
    0% {
        top: 0px;
        opacity: 1;
    }
    50% {
        top: 50%;
    }
    100% {
        top: 100%;
        opacity: 1;
    }
}

@keyframes line2 {
    0% {
        opacity: 1;
        bottom: 0px;
    }
    50% {
        bottom: 50%;
    }
    100% {
        bottom: 100%;
        opacity: 1;
    }
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(7px);
        -moz-transform: translateX(7px);
        -ms-transform: translateX(7px);
        -o-transform: translateX(7px);
        transform: translateX(7px);
    }
}

@-moz-keyframes scroll {
    0% {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(7px);
        -moz-transform: translateX(7px);
        -ms-transform: translateX(7px);
        -o-transform: translateX(7px);
        transform: translateX(7px);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(7px);
        -moz-transform: translateX(7px);
        -ms-transform: translateX(7px);
        -o-transform: translateX(7px);
        transform: translateX(7px);
    }
}

@-webkit-keyframes about-text {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@-moz-keyframes about-text {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes about-text {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes treeMove {
    0%, 100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
    25%, 75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }
    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}

@keyframes bounceSlide {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

@keyframes zoom {
    0% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.5);
    }
}

@keyframes rs-hand-move {
    0% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    25% {
        transform: translate3d(5px, 0, 0) rotate(4deg);
        -webkit-transform: translate3d(5px, 0, 0) rotate(4deg);
    }
    50% {
        transform: translate3d(0, 0, 0) rotate(-2deg);
        -webkit-transform: translate3d(0, 0, 0) rotate(-2deg);
    }
    75% {
        transform: translate3d(5px, 0, 0) rotate(4deg);
        -webkit-transform: translate3d(5px, 0, 0) rotate(4deg);
    }
    100% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@keyframes rs-vibrate {
    0% {
        transform: translateX(-2px) rotate(0);
    }
    25% {
        transform: translateX(2px) rotate(-2deg);
    }
    50% {
        transform: translateX(-2px) rotate(2deg);
    }
    75% {
        transform: translateX(2px) rotate(-2deg);
    }
    100% {
        transform: translateX(-2px) rotate(0);
    }
}

@keyframes rs-vertical {
    0% {
        -webkit-transform: translate3d(0, -10px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 10px, 0);
    }
}

@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 btnHoverEffectReverse {
    0% {
        transform: scale(1);
    }
    33.333% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes btnHoverEffect {
    0% {
        transform: scale(1);
    }
    33.333% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rs-head-move {
    0% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    25% {
        transform: translate3d(5px, 0, 0) rotate(4deg);
        -webkit-transform: translate3d(5px, 0, 0) rotate(4deg);
    }
    50% {
        transform: translate3d(0, 0, 0) rotate(-2deg);
        -webkit-transform: translate3d(0, 0, 0) rotate(-2deg);
    }
    75% {
        transform: translate3d(5px, 0, 0) rotate(4deg);
        -webkit-transform: translate3d(5px, 0, 0) rotate(4deg);
    }
    100% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rs-animation-push {
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rs-translate {
    0% {
        -webkit-transform: translateX(30px);
        -moz-transform: translateX(30px);
        -ms-transform: translateX(30px);
        -o-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(-130px);
        -moz-transform: translateX(-130px);
        -ms-transform: translateX(-130px);
        -o-transform: translateX(-130px);
        transform: translateX(-130px);
    }
}

@keyframes rs-tab-line {
    100% {
        width: 100%;
    }
}

/*----------------------------------------*/
/*  2.22 Short codes
/*----------------------------------------*/
.container.has-large {
    max-width: 1720px;
}

/* display flex */
.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%;
}

/* Border Radius Short Code */
/* Height Short code */
/* Bottom Short Code */
/* List Style None */
/* Font Weight */
/*--------------------------------------*/
/*  2.18 Progress Bar
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.5 brand
/*----------------------------------------*/
.rs-brand-one {
    position: relative;
    z-index: 1;
}

.rs-brand-one .rs-brand-item {
    background: var(--rs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 100%;
    box-shadow: 7px 7px 40px -3px rgba(16.98, 11.979, 45.91, 0.05);
}

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

.rs-brand-one .rs-brand-thumb img {
    width: 90px;
    transition: all 0.5s ease;
}

.rs-brand-five.has-pos-none .rs-brand-item::before {
    content: none;
}

.rs-brand-five.has-pos-none .rs-brand-item::after {
    content: none;
}

.rs-brand-five .rs-brand-item::before {
    position: absolute;
    content: "";
    top: -12px;
    right: 0;
    background-color: var(--rs-bg-primary);
    width: 125px;
    height: 12px;
    border-radius: 15px 20px 0 0;
}

.rs-brand-five .rs-brand-item::after {
    position: absolute;
    content: "";
    bottom: -12px;
    right: 0;
    background-color: var(--rs-bg-primary);
    width: 60px;
    height: 12px;
    border-radius: 0 0 20px 15px;
}

/*----------------------------------------*/
/*  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(34, 34, 34, 0.1);
    border-radius: 50%;
    pointer-events: none;
    box-sizing: border-box;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
}

#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), only screen and (max-width: 767px), only screen and (max-width: 575px) {
    #rs-mouse {
        display: none;
    }
}

/*----------------------------------------*/
/*  2.19 Swiper scrollbar
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.12 lenis
/*----------------------------------------*/
html.lenis,
html.lenis body {
    height: auto;
}

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

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

/*----------------------------------------*/
/*  2.21 cursor
/*----------------------------------------*/
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*----------------------------------------
   2.14 Basic navigation
-----------------------------------------*/
.rs-swiper-btn {
    background: var(--mainColor);
    color: var(--rs-white);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.rs-swiper-btn.has-bg-white {
    background: var(--rs-white);
    color: #616161;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.rs-swiper-btn.has-bg-white.has-small {
    width: 40px;
    height: 40px;
}

.rs-swiper-btn.has-bg-white.hover-red:hover {
    background: var(--mainColor);
    border-color: var(--mainColor);
    color: var(--rs-white);
}

.rs-swiper-btn.has-bg-white.has-bg-black {
    gap: 15px;
}

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

.rs-swiper-btn.has-small {
    width: 40px;
    height: 40px;
}

.rs-swiper-btn.has-theme-red {
    background: var(--mainColor);
    width: 60px;
    height: 60px;
    color: #fff;
}

.rs-swiper-btn.has-theme-red:hover {
    background: var(--mainColor);
    color: var(--rs-white);
    border-color: var(--mainColor);
}

.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.13 list
/*----------------------------------------*/
.rs-list-item ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rs-list-item ul li:not(:last-child) {
    margin-bottom: 15px;
}

.rs-list-item ul li i {
    color: var(--mainColor);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-list-item.has-theme-red ul li i {
    border: 2px solid var(--rs-theme-red);
    color: var(--rs-theme-red);
}

.rs-list-item.has-theme-orange ul li i {
    border: 2px solid var(--mainColor);
    color: var(--mainColor);
}

/* HEADER CSS */
/*----------------------------------------*/
/*  3.5.1 Header Style 1
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.5.2 Header Style 2
/*----------------------------------------*/
.rs-header-two .rs-header-left::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    inset-inline-end: 0;
    top: -7px;
}

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

.rs-header-two .rs-header-call::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2117647059);
    inset-inline-end: -15px;
    top: -12px;
}

/*----------------------------------------*/
/*  3.5.3 Header Style 3
/*----------------------------------------*/
.rs-header-three {
    background: #1E2023;
    padding-inline-end: 85px;
    padding-inline-start: 75px;
    overflow-x: clip;
}

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

.rs-header-three .rs-header-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
    height: 60px;
}

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

.rs-header-three .rs-header-left {
    margin-top: -50px;
    margin-inline-start: -90px;
}

@media only screen and (max-width: 1199px) {
    .rs-header-three .rs-header-left {
        margin-top: 0px;
        margin-inline-start: -60px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-header-three .rs-header-left {
        margin-inline-start: -47px;
    }
}

.rs-header-three .rs-header-logo-wrapper {
    width: 360px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-header-three .rs-header-logo-wrapper::before {
    background-color: #ffffff;;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    width: 360px;
    height: 100px;
    content: "";
    position: absolute;
}

@media only screen and (max-width: 1199px) {
    .rs-header-three .rs-header-logo-wrapper::before {
        width: 300px;
        height: 60px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-header-three .rs-header-logo-wrapper::before {
        width: 265px;
    }
}

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

@media only screen and (max-width: 1199px) {
    .rs-header-three .rs-header-logo-wrapper {
        width: 300px;
        height: 80px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-header-three .rs-header-logo-wrapper {
        width: 265px;
    }
}

.rs-header-three .rs-header-menu {
    margin-inline-end: auto;
}

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

.rs-header-three .main-menu li a {
    padding: 34px 20px;
    color: var(--rs-white);
}

.rs-header-three .rs-header-search-icon {
    color: var(--rs-white);
}

.rs-header-three .rs-header-search-inner {
    top: 60px;
}

.rs-header-three .rs-sticky-header .rs-header-left {
    margin-inline-start: 0px;
    margin-top: 0;
}

.rs-header-three .rs-sticky-header .rs-header-logo-wrapper {
    height: 100px;
}

@media only screen and (max-width: 1600px) {
    .rs-header-three .rs-sticky-header .rs-header-logo-wrapper {
        width: 300px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-header-three .rs-sticky-header .rs-header-logo-wrapper {
        height: 90px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-header-three .rs-sticky-header .rs-header-logo-wrapper {
        height: 80px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-header-three .rs-sticky-header .rs-header-logo-wrapper {
        width: 260px;
    }
}

.rs-header-three .rs-sticky-header .rs-header-logo-wrapper::before {
    height: 60px;
    content: "";
    position: absolute;
}

@media only screen and (max-width: 1600px) {
    .rs-header-three .rs-sticky-header .rs-header-logo-wrapper::before {
        width: 300px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-header-three .rs-sticky-header .rs-header-logo-wrapper::before {
        height: 60px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-header-three .rs-sticky-header .rs-header-logo-wrapper::before {
        height: 60px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-header-three .rs-sticky-header .rs-header-logo-wrapper::before {
        width: 260px;
    }
}

/*----------------------------------------*/
/*  3.5.4 Header Style 4
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.5.5 Header Style 5
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.5.6 Header Style 6
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.5.7 Header Style 7
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.5.9 Header Top Style
/*----------------------------------------*/
.rs-header-top {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-inline-start: 295px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
    gap: 10px;
}

@media only screen and (max-width: 1199px) {
    .rs-header-top {
        padding-inline-start: 0px;
        justify-content: center;
    }
}

.rs-header-top .rs-header-info-wrapper {
    display: flex;
    align-items: center;
    gap: 10px 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.rs-header-top .rs-header-info-item .rs-header-info-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #CBCCCD;
}

.rs-header-top .rs-header-info-item a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rs-header-top .rs-header-info-item a:hover {
    color: var(--mainColor);
}

.rs-header-top .rs-header-info-item svg {
    width: 19px;
    height: 19px;
}

.rs-header-top .rs-header-info-item svg path {
    fill: var(--mainColor);
}

.rs-header-top .rs-theme-social {
    font-size: 15px;
    color: #CBCCCD;
}

.rs-header-top .rs-theme-social a {
    color: var(--rs-white);
}

.rs-header-top .rs-theme-social a:hover {
    color: var(--mainColor);
    animation-name: rs-animation-push;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

/*----------------------------------------*/
/*  3.5.8 Header Common Style
/*----------------------------------------*/
.rs-header-logo img {
    max-width: 120px;
}

.rs-sticky-header .active .rs-header-logo img {
    max-width: 120px !important;
}

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

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

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

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

.rs-header-search-icon {
    cursor: pointer;
}

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

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

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

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

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

.rs-header-search-icon.icon-close .has-search {
    opacity: 0;
    visibility: hidden;
}

.rs-header-search-icon.icon-close .has-close {
    opacity: 1;
    visibility: visible;
}

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

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

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

[dir=rtl] .rs-header-search input {
    padding-inline-end: 40px;
}

.rs-header-search input:focus {
    border-color: rgba(31, 31, 31, 0.5);
}

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

[dir=rtl] .rs-header-search button {
    left: 20px;
}

.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 CSS */
/*----------------------------------------*/
/*  3.1.1 banner Style 1
/*----------------------------------------*/
.rs-banner-one .rs-banner-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.28);
    top: 0;
    inset-inline-start: 0;
    z-index: -1;
}

/*----------------------------------------*/
/*  3.1.2 banner Style 2
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1.3 banner Style 3
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1.4 Banner Style 4
/*----------------------------------------*/
.rs-banner-four {
    overflow-x: clip;
}

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

.rs-banner-four .rs-banner-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.28);
    top: 0;
    inset-inline-start: 0;
    z-index: -1;
}

.rs-banner-four .rs-banner-item-wrapper {
    padding-top: 330px;
    padding-bottom: 205px;
    padding-inline-start: 160px;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-four .rs-banner-item-wrapper {
        padding-top: 130px;
        padding-bottom: 185px;
        padding-inline-start: 160px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-four .rs-banner-item-wrapper {
        padding-top: 240px;
        padding-bottom: 150px;
        padding-inline-start: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-banner-four .rs-banner-item-wrapper {
        padding-top: 200px;
        padding-bottom: 120px;
        padding-inline-start: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-banner-four .rs-banner-item-wrapper {
        padding-top: 160px;
        padding-bottom: 120px;
    }
}

.rs-banner-four .rs-banner-content {
    position: relative;
    z-index: 5;
}

.rs-banner-four .rs-banner-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--rs-white);
    padding: 10px 19px;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.rs-banner-four .rs-banner-subtitle::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 10px;
    background-color: var(--mainColor);
    top: 0;
    inset-inline-start: 0;
}

.rs-banner-four .rs-banner-subtitle::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 10px;
    background-color: var(--mainColor);
    bottom: 0;
    inset-inline-end: 0;
}

.rs-banner-four .rs-banner-title {
    color: var(--rs-white);
    font-size: 30px;
    line-height: 1.15;
    text-transform: capitalize;
}

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

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

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

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

.rs-banner-four .rs-banner-descrip {
    max-width: 630px;
    margin: 25px 0 40px;
}

.rs-banner-four .rs-banner-descrip p {
    color: rgba(255, 255, 255, 0.85);
}

.rs-banner-four .rs-banner-navigation {
    display: flex;
    gap: 10px;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    inset-inline-end: 110px;
    top: 40%;
    transform: translateY(-50%);
}

@media only screen and (max-width: 1600px) {
    .rs-banner-four .rs-banner-navigation {
        inset-inline-end: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-four .rs-banner-navigation {
        inset-inline-end: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-banner-four .rs-banner-navigation {
        inset-inline-end: 30px;
    }
}

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

.rs-banner-four .rs-banner-navigation .rs-swiper-btn:hover {
    background: rgb(74 101 113 / 72%);
}

.rs-banner-four .rs-pagination.swiper-pagination {
    position: absolute;
    bottom: 40px;
}

.rs-banner-four.rs-swiper .swiper-slide-active .rs-banner-subtitle,
.rs-banner-four.rs-swiper .swiper-slide-active .rs-banner-title,
.rs-banner-four.rs-swiper .swiper-slide-active .rs-banner-descrip,
.rs-banner-four.rs-swiper .swiper-slide-active .rs-banner-btn {
    animation-fill-mode: both;
    animation-name: fadeInUp;
}

.rs-banner-four .swiper-slide-active .rs-banner-subtitle {
    animation-delay: 0.3s;
    animation-duration: 0.7s;
}

.rs-banner-four .swiper-slide-active .rs-banner-title {
    animation-delay: 0.5s;
    animation-duration: 0.9s;
}

.rs-banner-four .swiper-slide-active .rs-banner-descrip {
    animation-delay: 0.7s;
    animation-duration: 1.1s;
}

.rs-banner-four .swiper-slide-active .rs-banner-btn {
    animation-delay: 0.9s;
    animation-duration: 1.3s;
}

/*----------------------------------------*/
/*  3.1.5 Banner Style 5
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1.6 Banner Style 6
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1.7 Banner Style 7
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1.8 Banner Style 8
/*----------------------------------------*/
.rs-banner-eight .rs-banner-subtitle::before {
    position: absolute;
    color: var(--rs-white);
    counter-increment: count;
    content: "0" counter(count);
    z-index: 2;
    inset-inline-start: 105px;
    font-weight: 500;
    top: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*----------------------------------------*/
/*  3.1.9 Banner Style 9
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1.10 Banner Style 10
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1.11 Banner Style 11
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1.12 Banner Style 12
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1.13 Banner Style 13
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1.14 Banner Style 14
/*----------------------------------------*/
/* Menu index */
.main-menu ul li.active > a {
    color: var(--mainColor);
}

.main-menu ul li a.active {
    color: var(--mainColor);
}

.main-menu > ul {
    display: inline-flex;
}

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

.main-menu > ul > li:hover > a::before {
    opacity: 1;
}

.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 > ul > li:hover .mega-menu {
    opacity: 1;
    pointer-events: all;
    transform: scaleY(1);
    visibility: visible;
}

.main-menu li {
    position: relative;
    list-style: none;
}

.main-menu li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--rs-text-primary);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    position: relative;
    transition: all 0.3s linear;
}

.main-menu li.menu-item-has-children > a::after {
    content: "\f107";
    font-family: var(--rs-ff-fontawesome);
    margin-inline-start: 5px;
    font-weight: 500;
    font-size: 15px;
}

.main-menu .submenu {
    background-color: var(--rs-white);
    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-white);
    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(200, 192, 226, 0.18);
}

.main-menu .submenu li:hover > a {
    color: var(--mainColor);
    letter-spacing: 0.5px;
}

.main-menu .submenu li:hover > ul {
    opacity: 1;
    transform: none !important;
    pointer-events: all;
}

.main-menu .submenu li a {
    font-size: 16px;
    color: var(--rs-text-primary);
    display: block;
    transition: all 0.5s;
    text-align: start;
    cursor: pointer;
    padding: 15px 20px 15px 20px;
}

.main-menu .has-mega-menu {
    position: static;
    transition: all 15s ease-in-out;
}

.main-menu .has-mega-menu .title {
    font-weight: 600;
    text-transform: uppercase;
    pointer-events: none;
    font-size: 15px;
}

.main-menu li .has-arrow > a::after {
    content: "\f107";
    font-family: var(--rs-ff-fontawesome);
    font-weight: 600;
    position: absolute;
    inset-inline-end: 20px;
    transition: all 0.3s ease-in-out;
}

.main-menu li .has-arrow:hover a::after {
    transform: rotate(-90deg);
}

[dir=rtl] .main-menu li .has-arrow:hover a::after {
    transform: rotate(90deg);
}

.rs-header-area.has-theme-red.rs-sticky-header {
    background: rgba(31, 31, 31, 0.9);
}

.rs-header-area.has-theme-red .main-menu ul li.active > a {
    color: rgba(255, 255, 255, 0.76);
}

.rs-header-area.has-theme-red .main-menu ul li a.active {
    color: rgba(255, 255, 255, 0.76);
}

.rs-header-area.has-theme-red .main-menu .submenu {
    background: var(--rs-theme-red);
}

.rs-header-area.has-theme-red .main-menu .submenu li:hover > a {
    color: rgba(255, 255, 255, 0.76);
}

.rs-header-area.has-theme-red .main-menu .submenu li a:hover {
    color: rgba(255, 255, 255, 0.76);
}

.rs-header-area.has-theme-red .main-menu .submenu li a.active {
    color: rgba(255, 255, 255, 0.76);
}

.rs-header-area.has-theme-red .main-menu > ul > li:hover > a {
    color: var(--rs-theme-red);
}

.rs-header-area.has-theme-red .main-menu > ul > li a {
    color: var(--rs-white);
}

.rs-header-area.has-theme-orange.rs-sticky-header {
    background: rgba(31, 31, 31, 0.9);
}

.rs-header-area.has-theme-orange .main-menu ul li.active > a {
    color: var(--mainColor);
}

.rs-header-area.has-theme-orange .main-menu ul li a.active {
    color: var(--mainColor);
}

.rs-header-area.has-theme-orange .main-menu li a {
    color: var(--rs-white);
}

.rs-header-area.has-theme-orange .main-menu li a:hover {
    color: rgba(255, 255, 255, 0.76);
}

.rs-header-area.has-bg-black .rs-sticky-header {
    background: #1E2023;
    padding-inline-end: 100px;
}

@media only screen and (max-width: 1600px) {
    .rs-header-area.has-bg-black .rs-sticky-header {
        padding-inline-end: 60px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-header-area.has-bg-black .rs-sticky-header {
        padding-inline-end: 20px;
    }
}

.rs-header-area.has-bg-black .rs-sticky-header .rs-header-logo {
    margin-top: 0;
}

@media only screen and (max-width: 480px) {
    .rs-header-area.has-bg-black .rs-sticky-header .rs-header-left {
        margin-inline-start: -23px;
    }
}

.rs-header-area.has-bg-black .rs-sticky-header .rs-header-search-inner {
    top: 69px;
}

@media only screen and (max-width: 991px) {
    .rs-header-area.has-bg-black .rs-sticky-header .rs-header-search-inner {
        top: 59px;
    }
}

/*----------------------------------------*/
/*  3.6.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 .submenu {
    padding-inline-start: 20px;
}

.mean-container .mean-nav .submenu a {
    font-size: 15px;
}

.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;
    text-transform: capitalize;
    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(--mainColor);
}

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

.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;
    font-weight: 700;
    background: transparent;
    border: none !important;
    font-size: 14px !important;
    margin-top: 5px;
    padding: 0 !important;
    height: 30px;
    width: 30px;
    color: var(--rs-black);
    line-height: 30px;
    top: 0;
    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(--mainColor);
    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;
}

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

/*----------------------------------------*/
/*  3.2.2 Blog css
/*----------------------------------------*/
.rs-blog-one .rs-blog-bg-thumb.has-bg::before {
    position: absolute;
    opacity: 0.9;
    background: linear-gradient(transparent, #000000), linear-gradient(transparent, #000000);
    content: "";
    height: 100%;
    inset-inline-start: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}

.rs-blog-one .rs-blog-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-blog-one .rs-blog-meta-item.has-white::before {
    background: var(--rs-white);
}

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

.rs-blog-one.has-theme-blue .rs-blog-bg-thumb.has-bg::before {
    background: linear-gradient(transparent, #005EB8), linear-gradient(transparent, #000000);
}

.rs-blog-one.has-theme-cyan .rs-blog-bg-thumb.has-bg::before {
    background: linear-gradient(transparent, #1455AA), linear-gradient(transparent, #000000);
}

.rs-blog-two .rs-blog-item {
    position: relative;
    margin-bottom: 30px;
}

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

.rs-blog-two .rs-blog-item:hover .rs-square-btn {
    background: var(--rs-theme-red);
    color: var(--rs-white);
}

.rs-blog-two .rs-blog-content {
    position: relative;
    background: var(--rs-bg-primary);
    padding: 30px 30px 30px 30px;
}

@media only screen and (max-width: 1199px) {
    .rs-blog-two .rs-blog-content {
        padding: 20px 20px 20px 20px;
    }
}

.rs-blog-two .rs-blog-thumb {
    position: relative;
    overflow: hidden;
}

.rs-blog-two .rs-blog-thumb img {
    width: 100%;
    transition: all 0.5s ease;
    height: 350px;
}

.rs-blog-two .rs-blog-title {
    margin: 5px 0 15px;
}

@media only screen and (max-width: 1199px) {
    .rs-blog-two .rs-blog-title {
        margin: 15px 0 15px;
    }
}

.rs-blog-two .rs-blog-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-blog-two .rs-blog-meta-item:not(:last-child)::before {
    content: none;
}

.rs-blog-two.has-theme-orange {
    position: relative;
    z-index: 1;
}

.rs-blog-two.has-theme-orange.has-pos-none::before {
    content: none;
}

.rs-blog-two.has-theme-orange::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 550px;
    background: var(--rs-bg-primary);
    z-index: -1;
    top: 0;
    inset-inline-start: 0;
}

.rs-blog-two.has-theme-orange .rs-blog-item:hover .rs-square-btn {
    background: var(--mainColor);
}

.rs-blog-three .rs-blog-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%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rs-blog-three .rs-blog-meta-item::before {
        content: none;
    }
}

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

.rs-blog-four .rs-blog-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-blog-four .rs-blog-meta-item:not(:last-child)::before {
    content: none;
}

/*----------------------------------------*/
/*  3.2.1 Blog tag css
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.2.3 Postbox css
/*----------------------------------------*/
.rs-postbox-content {
    padding-top: 30px;
}

.rs-postbox-details-thumb img {
    width: 100%;
    border-radius: 4px;
}

.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-video {
    position: relative;
    z-index: 1;
    height: 380px;
    margin-bottom: 35px;
}

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

.rs-postbox-details-video .rs-video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.rs-postbox-details-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 8px;
}

.rs-postbox-quote blockquote cite::before {
    content: "";
    font-size: 28px;
    padding-bottom: 0px;
    display: inline-block;
    background: var(--rs-black);
    height: 1px;
    width: 20px;
    font-weight: 400;
    text-align: center;
    top: -5px;
    position: relative;
    left: 0;
    margin-inline-end: 10px;
}

.rs-postbox-details-feature ul li::before {
    content: "\eb7b";
    font-family: remixicon;
    position: absolute;
    font-size: 18px;
    color: var(--mainColor);
    width: 22px;
    height: 22px;
    border: 2px solid var(--mainColor);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    inset-inline-start: 0;
}

/*----------------------------------------*/
/*  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;
    padding: 40px 30px 40px 30px;
    background: var(--rs-bg-primary);
    border-radius: 4px;
}

@media only screen and (max-width: 1199px) {
    .sidebar-widget {
        padding: 30px 25px 30px 25px;
    }
}

.sidebar-widget::before {
    content: "";
    width: 4px;
    height: 15px;
    position: absolute;
    inset-inline-start: 30px;
    top: 0;
    background: var(--mainColor);
}

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

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

.sidebar-widget.widget-categories-two ul li i {
    font-size: 20px;
}

.sidebar-widget.widget-cta::before {
    content: none;
}

.sidebar-widget.widget-download::before {
    content: none;
}

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

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

/*----------------------------------------*/
/*  3.2.4 Sidebar css
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.4.2 Footer Style
/*----------------------------------------*/
.rs-footer-widget-links ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rs-footer-widget-links ul li {
    list-style: none;
    position: relative;
}

.rs-footer-widget-links ul li a {
    color: var(--rs-text-secondary);
    font-weight: 500;
    transition: 0.5s;
    position: relative;
}

.rs-footer-widget-links ul li a::before {
    content: "\f061";
    color: var(--mainColor);
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    display: inline-block;
    font-family: var(--rs-ff-fontawesome);
    position: absolute;
    inset-inline-start: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.rs-footer-widget-links ul li a:hover {
    color: var(--mainColor);
    padding-inline-start: 25px;
}

.rs-footer-widget-links ul li a:hover::before {
    opacity: 1;
    visibility: visible;
}

.rs-footer-widget-links.has-theme-red ul li a::before {
    color: var(--rs-theme-red);
}

.rs-footer-widget-links.has-theme-red ul li a:hover {
    color: var(--rs-theme-red);
}

.rs-footer-widget-links.has-theme-blue ul li a::before {
    color: var(--rs-white);
}

.rs-footer-widget-links.has-theme-light-blue ul li a::before {
    color: var(--rs-theme-light-blue);
}

.rs-footer-widget-links.has-theme-yellow ul li a::before {
    color: var(--rs-theme-yellow);
}

.rs-footer-widget-links.has-theme-deep-blue ul li a::before {
    color: var(--rs-theme-deep-blue);
}

.rs-footer-widget-links.has-theme-green ul li a::before {
    color: var(--rs-theme-light-green);
}

.rs-footer-widget-links.has-theme-cyan ul li a::before {
    color: var(--rs-theme-cyan);
}

.rs-footer-one .rs-footer-subscribe-input input::placeholder {
    color: var(--rs-text-secondary);
    font-size: 16px;
    font-weight: 500;
}

.rs-footer-two {
    position: relative;
    z-index: 2;
}

.rs-footer-two.has-space {
    padding-top: 230px;
}

@media only screen and (max-width: 767px) {
    .rs-footer-two.has-space {
        padding-top: 205px;
    }
}

.rs-footer-two.has-space > .rs-footer-top {
    padding: 0px 0 90px;
}

@media only screen and (max-width: 767px) {
    .rs-footer-two.has-space > .rs-footer-top {
        padding: 0 0 70px;
    }
}

.rs-footer-two .rs-footer-top {
    padding: 70px 0 80px;
}

@media only screen and (max-width: 767px) {
    .rs-footer-two .rs-footer-top {
        padding: 60px 0 70px;
    }
}

.rs-footer-two .rs-footer-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    inset-inline-end: 0;
    top: 0;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: -1;
    background-size: cover;
}

.rs-footer-two .rs-footer-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #111111;
    top: 0;
    inset-inline-start: 0;
    opacity: 0.6;
    z-index: 1;
}

.rs-footer-two .rs-footer-bg-thumb.has-bg-none::before {
    position: unset;
    content: none;
}

.rs-footer-two .rs-footer-copyright a {
    color: var(--mainColor);
}

.rs-footer-two .rs-footer-widget-description {
    color: var(--rs-text-secondary);
    margin-bottom: 40px;
}

.rs-footer-two .descrip {
    color: var(--rs-text-secondary);
    margin: 0px 0 40px;
}

.rs-footer-two .rs-footer-widget-title {
    color: var(--rs-white);
    margin-bottom: 25px;
}

.rs-footer-two .rs-footer-widget-meta p {
    color: var(--rs-text-secondary);
    margin: 0;
}

.rs-footer-two .rs-footer-widget-address {
    margin-bottom: 30px;
}

.rs-footer-two .rs-footer-widget-address a {
    color: var(--rs-text-secondary);
}

.rs-footer-two .rs-footer-widget-address a:hover {
    color: var(--rs-theme-red);
}

.rs-footer-two .rs-footer-widget-email a {
    color: var(--rs-text-secondary);
}

.rs-footer-two .rs-footer-widget-email a:hover {
    color: var(--rs-theme-red);
}

.rs-footer-two .rs-footer-widget-number {
    margin-bottom: 30px;
}

.rs-footer-two .rs-footer-widget-number span {
    display: block;
}

.rs-footer-two .rs-footer-widget-number span a {
    color: var(--rs-text-secondary);
}

.rs-footer-two .rs-footer-widget-number span a:hover {
    color: var(--rs-theme-red);
}

.rs-footer-two .rs-footer-widget-number span:not(:last-child) {
    margin-bottom: 5px;
}

.rs-footer-two .footer-2-col-1 {
    margin-inline-end: 30px;
}

@media only screen and (max-width: 1199px) {
    .rs-footer-two .footer-2-col-1 {
        margin-inline-end: 0px;
    }
}

.rs-footer-two .footer-2-col-3 {
    padding-inline-start: 40px;
}

@media only screen and (max-width: 1199px) {
    .rs-footer-two .footer-2-col-3 {
        padding-inline-start: 0px;
    }
}

.rs-footer-two .footer-2-col-4 {
    padding-inline-start: 80px;
}

@media only screen and (max-width: 1366px) {
    .rs-footer-two .footer-2-col-4 {
        padding-inline-start: 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-footer-two .footer-2-col-4 {
        padding-inline-start: 0px;
    }
}

.rs-footer-two.has-theme-blue .rs-footer-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--rs-theme-blue);
    top: 0;
    inset-inline-start: 0;
    opacity: 0.6;
    z-index: 1;
}

.rs-footer-two.has-theme-orange .rs-footer-widget-email a:hover,
.rs-footer-two.has-theme-orange .rs-footer-widget-number a:hover,
.rs-footer-two.has-theme-orange .rs-footer-widget-address a:hover {
    color: var(--mainColor);
}

.rs-footer-two.has-theme-light-blue .rs-footer-bg-thumb::before {
    content: none;
}

.rs-footer-two.has-theme-yellow .rs-footer-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--rs-black);
    top: 0;
    inset-inline-start: 0;
    opacity: 0.6;
    z-index: 1;
}

.rs-footer-two.has-theme-yellow.has-bg-thumb .rs-footer-bg-thumb::before {
    content: none;
}

.rs-footer-two.has-theme-orange.has-bg-thumb .rs-footer-bg-thumb::before {
    content: none;
}

.rs-footer-two.has-theme-green .rs-footer-bg-thumb::before {
    content: none;
}

.rs-footer-two.has-theme-cyan .rs-footer-bg-thumb::before {
    background: var(--rs-theme-medium-blue);
    opacity: 0.4;
}

.rs-footer-bg-thumb-wrapper {
    position: relative;
}

.rs-footer-bg-thumb-wrapper .rs-footer-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    inset-inline-end: 0;
    top: 0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.rs-footer-bg-thumb-wrapper .rs-footer-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--rs-theme-blue);
    top: 0;
    inset-inline-start: 0;
    opacity: 0.6;
    z-index: 1;
}

.rs-footer-bg-thumb-wrapper.has-theme-orange .rs-footer-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--rs-black);
    top: 0;
    inset-inline-start: 0;
    opacity: 0.6;
    z-index: 1;
}

.rs-footer-bg-thumb-wrapper.has-theme-yellow .rs-footer-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--rs-black);
    top: 0;
    inset-inline-start: 0;
    opacity: 0.6;
    z-index: 1;
}

/*----------------------------------------*/
/* 3.4.1 Copyright Style
/*----------------------------------------*/
.rs-copyright-one {
    padding: 20px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

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

.rs-copyright-one .rs-footer-copyright.has-theme-red p {
    color: var(--rs-white);
}

.rs-copyright-one .rs-footer-copyright.has-theme-orange a {
    color: var(--mainColor);
    background-image: linear-gradient(var(--mainColor), var(--mainColor)), linear-gradient(var(--mainColor), var(--mainColor));
}

.rs-copyright-one .rs-footer-copyright.has-theme-orange p {
    color: var(--rs-text-secondary);
}

/*----------------------------------------*/
/*  4.1 About css
/*----------------------------------------*/
.rs-about-two .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--rs-theme-red);
    border-radius: 2px 2px 0 0;
}

.rs-about-two .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-two .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-about-two .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 480px) {
    .rs-about-two .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
        content: none;
    }
}

.rs-about-three .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--rs-theme-blue);
    border-radius: 2px 2px 0 0;
}

.rs-about-three .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-three .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-about-three .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

.rs-about-four .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--rs-theme-red);
    border-radius: 2px 2px 0 0;
}

.rs-about-four .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-four .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-about-four .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

.rs-about-five .rs-about-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px;
}

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

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

.rs-about-five .rs-about-wrapper-left {
    margin: 0 0px 35px 0;
}

@media only screen and (max-width: 991px) {
    .rs-about-five .rs-about-wrapper-left {
        margin: 0px;
    }
}

.rs-about-five .rs-about-content-wrapper {
    margin-top: 70px;
}

@media only screen and (max-width: 991px) {
    .rs-about-five .rs-about-content-wrapper {
        margin-top: 30px;
    }
}

.rs-about-five .rs-about-thumb {
    position: relative;
}

.rs-about-five .rs-about-thumb img {
    width: 100%;
    border-radius: 5px;
}

.rs-about-five .rs-about-thumb.has-large img {
    width: 520px;
    height: 500px;

}

@media only screen and (max-width: 991px) {
    .rs-about-five .rs-about-thumb.has-large img {
        width: 100%;
    }
}

.rs-about-five .rs-about-thumb.has-small img {
    width: 610px;
    height: 283px;
}

@media only screen and (max-width: 991px) {
    .rs-about-five .rs-about-thumb.has-small img {
        width: 100%;
    }
}

.rs-about-five .rs-list-item ul li i {
    border-color: var(--mainColor);
    color: var(--mainColor);
}

.rs-about-five .rs-about-tab .nav-link {
    background: var(--rs-bg-primary);
    color: var(--rs-text-primary);
    font-weight: 500;
    padding: 10px 40px 10px 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .rs-about-five .rs-about-tab .nav-link {
        padding: 10px 20px 10px 20px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-about-five .rs-about-tab .nav-link {
        width: 100%;
    }
}

.rs-about-five .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--mainColor);
    border-radius: 2px 2px 0 0;
}

.rs-about-five .rs-about-tab .nav-link.active {
    color: var(--mainColor);
}

.rs-about-five .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-five .rs-about-tab .nav-link:hover {
    color: var(--mainColor);
}

.rs-about-five .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

@media only screen and (max-width: 480px) {
    .rs-about-five .rs-about-tab .nav-item {
        width: 100%;
    }
}

.rs-about-five .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

.rs-about-five .rs-about-tab-content {
    margin-top: 30px;
    margin-bottom: 50px;
    max-width: 600px;
}

.rs-about-five .rs-about-tab-content p {
    margin-bottom: 20px;
}

.rs-about-five .rs-about-tab-anim .tab-pane.active .rs-about-tab-content {
    -webkit-animation: slide-down 5s ease-out;
    animation: slide-down 5s ease-out;
}

.rs-about-six .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--rs-theme-blue);
    border-radius: 2px 2px 0 0;
}

.rs-about-six .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-six .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-about-six .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 480px) {
    .rs-about-six .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
        content: none;
    }
}

.rs-about-seven .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--rs-theme-light-green);
    border-radius: 2px 2px 0 0;
}

.rs-about-seven .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-seven .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-about-seven .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 480px) {
    .rs-about-seven .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
        content: none;
    }
}

.rs-about-nine .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--mainColor);
    border-radius: 2px 2px 0 0;
}

.rs-about-nine .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-nine .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-about-nine .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

.rs-about-ten .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--mainColor);
    border-radius: 2px 2px 0 0;
}

.rs-about-ten .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-ten .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-about-ten .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 480px) {
    .rs-about-ten .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
        content: none;
    }
}

.rs-about-eleven .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--rs-theme-deep-blue);
    border-radius: 2px 2px 0 0;
}

.rs-about-eleven .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-eleven .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-about-eleven .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

.rs-about-thirteen .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--mainColor);
    border-radius: 2px 2px 0 0;
}

.rs-about-thirteen .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-thirteen .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-about-thirteen .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 480px) {
    .rs-about-thirteen .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
        content: none;
    }
}

.rs-about-fourteen .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--rs-theme-cyan);
    border-radius: 2px 2px 0 0;
}

.rs-about-fourteen .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-fourteen .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-about-fourteen .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 480px) {
    .rs-about-fourteen .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
        content: none;
    }
}

.rs-about-fifteen .rs-about-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--rs-theme-medium-yellow);
    border-radius: 2px 2px 0 0;
}

.rs-about-fifteen .rs-about-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-about-fifteen .rs-about-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-about-fifteen .rs-about-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

/*----------------------------------------*/
/*  4.6 call to action css
/*----------------------------------------*/
.rs-cta-three .rs-cta-input input::placeholder {
    color: var(--rs-text-primary);
}

@media only screen and (max-width: 480px) {
    .rs-cta-three.has-theme-cyan .rs-btn.has-bg::before {
        content: none;
    }
}

.rs-cta-four .rs-cta-icon::before {
    position: absolute;
    content: "";
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    border-radius: 50px;
    z-index: 1;
    background: transparent;
    border: 1px solid var(--rs-white);
}

.rs-cta-four .rs-cta-contact-item a::before {
    content: "";
    position: absolute;
    background: var(--rs-theme-green);
    height: 2px;
    bottom: 1px;
    width: 0;
    inset-inline-start: auto;
    inset-inline-end: 0;
    transition: all 0.5s ease 0s;
}

.rs-cta-four .rs-cta-contact-item a:hover::before {
    inset-inline-start: 0;
    inset-inline-end: auto;
    width: 100%;
}

.rs-cta-five .rs-cta-call a::before {
    content: "";
    position: absolute;
    background: var(--mainColor);
    height: 2px;
    bottom: 1px;
    width: 0;
    inset-inline-start: auto;
    inset-inline-end: 0;
    transition: all 0.5s ease 0s;
}

.rs-cta-five .rs-cta-call a:hover::before {
    inset-inline-start: 0;
    inset-inline-end: auto;
    width: 100%;
}

.rs-subscribe-one .rs-subscribe-input input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

/*----------------------------------------*/
/*  4.9 Feature css
/*----------------------------------------*/
.rs-feature-one .rs-feature-item::before {
    position: absolute;
    color: rgba(31, 31, 31, 0.05);
    counter-increment: count;
    content: "0" counter(count);
    z-index: -1;
    inset-inline-end: -10px;
    font-size: 238px;
    font-weight: 700;
    bottom: -45px;
    line-height: 0.75;
}

@media only screen and (max-width: 1199px) {
    .rs-feature-one .rs-feature-item::before {
        font-size: 150px;
        bottom: -25px;
    }
}

/*----------------------------------------*/
/*  4.8 FAq css
/*----------------------------------------*/
/*----------------------------------------*/
/*  4.22 Team css
/*----------------------------------------*/
.rs-team-one .rs-team-item:hover .rs-team-content-box::before {
    width: 100%;
}

.rs-team-one .rs-team-content-box::before {
    position: absolute;
    content: "";
    inset-inline-start: 0;
    bottom: 0;
    background-color: var(--mainColor);
    height: 2px;
    width: 0;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
    border-radius: 0px 0px 2px 2px;
}

.rs-team-one.has-theme-blue .rs-team-content-box::before {
    background-color: var(--rs-theme-blue);
}

.rs-team-one.has-theme-light-blue .rs-team-content-box::before {
    background-color: var(--rs-theme-light-blue);
}

.rs-team-one.has-theme-green .rs-team-content-box::before {
    background-color: var(--rs-theme-light-green);
}

.rs-team-one.has-theme-cyan .rs-team-content-box::before {
    background: var(--rs-theme-cyan);
}

/*----------------------------------------*/
/*  4.23 Testimonial css
/*----------------------------------------*/
.rs-testimonial-five.has-theme-green .rs-testimonial-text-btn a::before {
    content: "";
    position: absolute;
    background: var(--rs-text-primary);
    width: 100%;
    height: 1px;
    bottom: 1px;
    inset-inline-start: 0;
    transition: all 0.5s ease;
}

[dir=rtl] .rs-testimonial-five.has-theme-green .rs-testimonial-text-btn a::before {
    width: 160px;
}

.rs-testimonial-five.has-theme-green .rs-testimonial-text-btn a:hover::before {
    background: var(--rs-theme-light-green);
    width: 0;
}

/*----------------------------------------*/
/*  4.25 Why Choose css
/*----------------------------------------*/
.rs-why-choose-three {
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

.rs-why-choose-three .rs-why-choose-shape {
    position: absolute;
    width: 155px;
    height: 100%;
    background: white;
    border-radius: 30px 30px 0px 0px;
    top: 30px;
    inset-inline-start: 0;
}

@media only screen and (max-width: 1700px) {
    .rs-why-choose-three .rs-why-choose-shape {
        width: 100px;
    }
}

@media only screen and (max-width: 1600px) {
    .rs-why-choose-three .rs-why-choose-shape {
        display: none;
    }
}

.rs-why-choose-three .rs-why-choose-bg-thumb {
    position: absolute;
    background-color: #4a6571;
    width: 64%;
    height: 100%;
    top: 0;
}

@media only screen and (max-width: 991px) {
    .rs-why-choose-three .rs-why-choose-bg-thumb {
        width: 100%;
    }
}

.rs-why-choose-three .rs-why-choose-content-wrapper {
    position: relative;
    z-index: 1;
}

.rs-why-choose-three .rs-section-subtitle {
    color: rgba(2, 1, 1, 0);
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.74);
    stroke: rgba(255, 255, 255, 0.74);
}

.rs-why-choose-three .rs-section-title {
    color: var(--rs-white);
    font-size: 18px;
}

.rs-why-choose-three .rs-why-choose-content-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media only screen and (max-width: 575px) {
    .rs-why-choose-three .rs-why-choose-content-item {
        flex-wrap: wrap;
    }
}

.rs-why-choose-three .rs-why-choose-title {
    color: var(--rs-white);
    margin-bottom: 5px;
}

.rs-why-choose-three .descrip {
    color: var(--rs-white);
}

.rs-why-choose-three .rs-why-choose-icon svg {
    width: 60px;
    height: 60px;
}

.rs-why-choose-three .rs-why-choose-content-item:not(:last-child) {
    margin-bottom: 35px;
}

.rs-why-choose-three .rs-why-choose-content-item:hover .rs-why-choose-icon img,
.rs-why-choose-three .rs-why-choose-content-item:hover .rs-why-choose-icon svg {
    animation: rs-fold linear 0.3s;
}

.rs-why-choose-three .rs-why-choose-btn-wrapper {
    position: relative;
    z-index: 1;
}

.rs-why-choose-three .rs-why-choose-btn-wrapper {
    position: absolute;
    width: 44%;
    height: 100%;
    inset-inline-end: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .rs-why-choose-three .rs-why-choose-btn-wrapper {
        width: 100%;
        position: relative;
        height: 300px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-why-choose-three .rs-why-choose-btn-wrapper {
        height: 250px;
    }
}

.rs-why-choose-three .rs-why-choose-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.rs-why-choose-three .rs-play-btn {
    width: 65px;
    height: 65px;
    font-size: 20px;
}

.rs-why-choose-four .rs-why-choose-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--rs-theme-deep-blue);
    border-radius: 0;
}

.rs-why-choose-four .rs-why-choose-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-why-choose-four .rs-why-choose-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-why-choose-four .rs-why-choose-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

/*----------------------------------------*/
/*  4.19 services css
/*----------------------------------------*/
.rs-services-one .rs-services-shape {
    position: absolute;
    top: 0;
    inset-inline-end: 220px;
    z-index: 1;
}

.rs-services-one .rs-services-btn {
    display: flex;
    justify-content: end;
}

@media only screen and (max-width: 991px) {
    .rs-services-one .rs-services-btn {
        justify-content: start;
    }
}

.rs-services-one .rs-services-tab .nav-pills {
    display: block;
}

.rs-services-one .rs-services-tab .nav-item:not(:last-child) {
    margin-bottom: 15px;
}

.rs-services-one .rs-services-tab .nav-link {
    width: calc(100% - 15px);
    /*height: 55px;*/
    background: var(--rs-white);
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    gap: 10px;
    border-radius: 2px;
    font-weight: 700;
    padding: 10px 30px 10px 30px;
    color: var(--rs-text-primary);
    border: 1px solid #EFEBEB;
    transition: all 0.5s ease;
}

@media only screen and (max-width: 1199px) {
    .rs-services-one .rs-services-tab .nav-link {
        width: 100%;
    }
}

.rs-services-one .rs-services-tab .nav-link svg {
    position: absolute;
    top: 52%;
    transform: translate(-24px, -50%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

[dir=rtl] .rs-services-one .rs-services-tab .nav-link svg {
    transform: translate(-10px, -50%);
}

.rs-services-one .rs-services-tab .nav-link.active {
    background: var(--mainColor);
    color: var(--rs-white);
}

.rs-services-one .rs-services-tab .nav-link.active svg {
    transform: translate(0px, -50%);
    visibility: visible;
    opacity: 1;
}

[dir=rtl] .rs-services-one .rs-services-tab .nav-link.active svg {
    transform: translate(20px, -50%);
}

.rs-services-one .rs-services-tab .nav-link:hover {
    background: var(--mainColor);
    color: var(--rs-white);
}

.rs-services-one .rs-services-tab .nav-link:hover svg {
    transform: translate(0px, -50%);
    visibility: visible;
    opacity: 1;
}

[dir=rtl] .rs-services-one .rs-services-tab .nav-link:hover svg {
    transform: translate(20px, -50%);
}

.rs-services-one .rs-services-tab-content p {
    margin: 15px 0 40px;
}

.rs-services-one .rs-services-tab-title {
    font-size: 36px;
}

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

@media only screen and (max-width: 1199px) {
    .rs-services-one .rs-services-tab-title {
        font-size: 25px;
    }
}

.rs-services-one .rs-services-tab-list {
    margin-bottom: 20px;
}

.rs-services-one .rs-services-tab-list ul li {
    list-style: none;
    position: relative;
    padding-inline-start: 30px;
    display: flex;
    align-items: center;
    color: var(--rs-title-primary);
    font-weight: 500;
    font-size: 16px;
}

.rs-services-one .rs-services-tab-list ul li:not(:last-child) {
    margin-bottom: 20px;
}

.rs-services-one .rs-services-tab-list ul li::before {
    content: "\eb7b";
    color: var(--mainColor);
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    font-family: "remixicon";
    position: absolute;
    inset-inline-start: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--mainColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-services-one .rs-services-tab-content-thumb {
    margin: 0 0 0 10px;
    height: 100%;
}

@media only screen and (max-width: 1600px) {
    .rs-services-one .rs-services-tab-content-thumb {
        margin: 0 0 0 0px;
    }
}

.rs-services-one .rs-services-tab-content-thumb img {
    width: 100%;
    height: 405px;
    object-fit: cover;
}

@media only screen and (max-width: 575px) {
    .rs-services-one .rs-services-tab-content-thumb img {
        height: 100%;
    }
}

.rs-services-one .rs-services-tab-content-thumb.has-clip img {
    clip-path: polygon(0% 0%, 86% 0, 100% 20%, 100% 100%, 0% 100%);
}

.rs-services-one .rs-services-tab-content {
    margin-inline-start: 30px;
}

@media only screen and (max-width: 1600px) {
    .rs-services-one .rs-services-tab-content {
        margin-inline-start: 10px;
    }
}

.rs-services-one .rs-services-tab-anim .tab-pane.active .rs-services-tab-content-wrapper {
    -webkit-animation: slide-down 5s ease-out;
    animation: slide-down 5s ease-out;
}

[dir=rtl] .rs-services-one .rs-services-icon {
    transform: rotate(-180deg);
}

.rs-services-one.has-theme-green .rs-services-tab-list ul li::before {
    color: var(--rs-theme-light-green);
    border: 2px solid var(--rs-theme-light-green);
}

.rs-services-two .rs-services-text-link a::before {
    content: "";
    position: absolute;
    background: var(--rs-text-primary);
    width: 50px;
    height: 1px;
    bottom: 1px;
    inset-inline-start: 0;
    transition: all 0.5s ease;
}

.rs-services-two .rs-services-text-link a:hover::before {
    width: 100%;
    background: var(--rs-theme-red);
}

.rs-services-two.has-theme-orange .rs-services-text-link a:hover::before {
    background: var(--mainColor);
}

.rs-services-three .rs-services-number::before {
    position: absolute;
    width: calc(100% - 70px);
    height: 1px;
    z-index: 2;
    inset-inline-end: 0px;
    background: #f5f5f6;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.rs-services-three .rs-services-number::after {
    position: absolute;
    color: #f5f5f6;
    counter-increment: count;
    content: "0" counter(count);
    z-index: 2;
    inset-inline-start: 0;
    font-size: 52px;
    font-weight: 700;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

@media only screen and (max-width: 1366px) {
    .rs-services-three .rs-services-number::after {
        font-size: 40px;
    }
}

.rs-services-three .rs-services-item:hover .rs-services-number::before {
    background: var(--rs-theme-blue);
}

.rs-services-three .rs-services-item:hover .rs-services-number::after {
    color: var(--rs-theme-blue);
}

.rs-services-three.has-theme-orange .rs-services-item:hover .rs-services-number::before {
    background: var(--mainColor);
}

.rs-services-three.has-theme-orange .rs-services-item:hover .rs-services-number::after {
    color: var(--mainColor);
}

.rs-services-three.has-theme-orange .rs-services-number::before {
    background: #EDEDEF;
}

.rs-services-three.has-theme-orange .rs-services-number::after {
    color: #EDEDEF;
}

.rs-services-five .rs-services-item {
    background: var(--rs-white);
    padding: 30px 25px 30px 25px;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 25px;
}

@media only screen and (max-width: 1600px) {
    .rs-services-five .rs-services-item {
        padding: 25px 20px 25px 20px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-services-five .rs-services-item {
        flex-wrap: wrap;
    }
}

.rs-services-five .rs-services-item:hover .rs-services-icon {
    background: var(--mainColor);
}

.rs-services-five .rs-services-item:hover .rs-services-icon img,
.rs-services-five .rs-services-item:hover .rs-services-icon svg {
    animation: rs-fold linear 0.3s;
    filter: brightness(0) invert(1);
}

.rs-services-five .rs-services-item:hover .rs-services-icon::before {
    background: var(--mainColor);
}

.rs-services-five .rs-services-item:hover .rs-services-title {
    color: var(--mainColor);
}

.rs-services-five .rs-services-item:hover .rs-btn {
    color: var(--mainColor);
}

.rs-services-five .rs-services-item:hover .rs-btn svg {
    fill: var(--mainColor);
}

.rs-services-five .rs-services-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    border-radius: 5px;
}

.service-overlay {
    /*content: '';*/
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    border-radius: 5px;
}

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

@media only screen and (max-width: 991px) {
    .rs-services-five .rs-services-btn {
        justify-content: start;
    }
}

.rs-services-five .rs-services-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.rs-services-five .rs-services-icon::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 84px;
    background: rgba(255, 255, 255, 0.1);
    bottom: -100px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
}

@media only screen and (max-width: 1199px) {
    .rs-services-five .rs-services-icon::before {
        content: none;
    }
}

.rs-services-five .rs-services-icon svg {
    width: 40px;
    fill: var(--mainColor);
}

.rs-services-five .rs-services-title {
    color: var(--rs-white);
    margin-bottom: 20px;
}

.rs-services-five .rs-services-title a:hover {
    color: var(--mainColor);
}

.rs-services-five .descrip {
    color: var(--rs-text-secondary);
    margin-bottom: 20px;
}

.rs-services-six .rs-services-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--rs-theme-light-blue);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 0 0 5px 5px;
}

.rs-services-six .rs-services-item:hover::before {
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.rs-services-six .rs-services-number::before {
    position: absolute;
    color: var(--rs-theme-light-blue);
    counter-increment: count;
    content: "0" counter(count);
    z-index: 2;
    inset-inline-start: 0;
    font-weight: 500;
    top: -10px;
    transition: 0.3s;
    width: 30px;
    height: 30px;
    background: var(--rs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-services-seven .rs-services-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: 0;
    inset-inline-start: 0;
    background: var(--rs-theme-yellow);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    border-radius: 0 0 2px 2px;
    z-index: 1;
}

.rs-services-seven .rs-services-item:hover::before {
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.rs-services-eight .rs-services-number::before {
    position: absolute;
    width: calc(100% - 70px);
    height: 1px;
    z-index: 2;
    inset-inline-end: 0px;
    background: #E1E1E5;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.rs-services-eight .rs-services-number::after {
    position: absolute;
    color: #E4E4E4;
    counter-increment: count;
    content: "0" counter(count);
    z-index: 2;
    inset-inline-start: 0;
    font-size: 52px;
    font-weight: 700;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-fill-color: transparent;
}

.rs-services-eight .rs-services-item:hover .rs-services-number::before {
    background: var(--rs-theme-yellow);
}

.rs-services-eight .rs-services-item:hover .rs-services-number::after {
    color: var(--rs-theme-yellow);
    -webkit-text-fill-color: unset;
}

.rs-services-nine .rs-services-content::before {
    position: absolute;
    color: #E4E4E4;
    counter-increment: count;
    content: "0" counter(count);
    z-index: 2;
    right: 20px;
    font-size: 36px;
    font-weight: 700;
    top: 0px;
    transform: translateY(-50%);
    transition: 0.3s;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-fill-color: transparent;
}

.rs-services-ten .rs-services-tab .nav-link.active::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 2px;
    background: var(--rs-theme-deep-blue);
    left: 0;
    transition: all 0.5s;
    height: 2px;
    bottom: 0px;
    animation-duration: 5000ms;
}

.rs-services-ten .rs-services-tab .nav-link.active::before {
    animation-name: rs-tab-line;
    animation-timing-function: linear;
}

.rs-services-eleven .rs-services-tab-list ul li::before {
    content: "\eb7b";
    color: var(--rs-theme-cyan);
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    font-family: "remixicon";
    position: absolute;
    inset-inline-start: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--rs-theme-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3px;
}

.rs-services-details-wrapper .rs-services-details-thumb {
    margin-bottom: 35px;
}

.rs-services-details-wrapper .rs-services-details-thumb img {
    width: 100%;
    border-radius: 4px;
}

.rs-services-details-wrapper .rs-services-details-title {
    font-size: 36px;
}

@media only screen and (max-width: 1199px) {
    .rs-services-details-wrapper .rs-services-details-title {
        font-size: 30px;
    }
}

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

.rs-services-details-wrapper .rs-list-item ul {
    display: grid;
    grid-template-columns: 300px auto;
    align-items: center;
    gap: 8px 0px;
}

@media only screen and (max-width: 575px) {
    .rs-services-details-wrapper .rs-list-item ul {
        grid-template-columns: auto;
    }
}

.rs-services-details-wrapper .rs-list-item ul li {
    font-size: 16px;
}

.rs-services-details-wrapper .rs-list-item ul li svg {
    width: 20px;
    height: 20px;
    fill: var(--mainColor);
}

.rs-services-details-wrapper .rs-list-item ul li:not(:last-child) {
    margin-bottom: 0;
}

.rs-services-details-wrapper .rs-services-details-video .rs-video-bg-thumb::before {
    content: none;
}

.rs-services-details-wrapper .rs-services-details-video .rs-play-btn::before {
    width: 80px;
    height: 80px;
}

/*----------------------------------------*/
/*  4.7 experience css
/*----------------------------------------*/
/*----------------------------------------*/
/*  4.21 slide text css
/*----------------------------------------*/
/*----------------------------------------*/
/*  4.13 portfolio css
/*----------------------------------------*/
.rs-portfolio-one {
    overflow-x: clip;
}

.rs-portfolio-one .rs-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.rs-portfolio-one .rs-portfolio-item:hover .rs-portfolio-content {
    bottom: 0px;
}

.rs-portfolio-one .rs-portfolio-thumb {
    position: relative;
}

.rs-portfolio-one .rs-portfolio-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: linear-gradient(360deg, rgba(4, 4, 35, 0.8392156863) 0%, rgba(4, 4, 35, 0) 63%);
    top: 0;
    left: 0;
    z-index: 1;
}

.rs-portfolio-one .rs-portfolio-thumb img {
    width: 100%;
    border-radius: 2px;
}

.rs-portfolio-one .rs-portfolio-content {
    position: absolute;
    transition: all 0.5s ease;
    z-index: 2;
    padding: 40px 40px 40px 40px;
    bottom: -90px;
    width: 100%;
}

@media only screen and (max-width: 480px) {
    .rs-portfolio-one .rs-portfolio-content {
        padding: 30px 30px 40px 30px;
    }
}

.rs-portfolio-one .rs-portfolio-title {
    font-size: 18px;
    color: var(--rs-white);
    margin: 15px 0 25px;
}

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

.rs-portfolio-one .rs-portfolio-tag a {
    color: var(--rs-white);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 55px;
    background: var(--mainColor);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

.rs-portfolio-one .rs-portfolio-tag a:hover {
    background: var(--rs-white);
    color: var(--rs-black);
}

.rs-portfolio-one .rs-portfolio-slider-wrapper .has-space {
    margin-inline-start: -462px;
}

@media only screen and (max-width: 1366px) {
    .rs-portfolio-one .rs-portfolio-slider-wrapper .has-space {
        margin-inline-start: -380px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-portfolio-one .rs-portfolio-slider-wrapper .has-space {
        margin-inline-start: -300px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-portfolio-one .rs-portfolio-slider-wrapper .has-space {
        margin-inline-start: 0px;
    }
}

.rs-portfolio-one .rs-portfolio-navigation {
    display: flex;
    justify-content: end;
    gap: 20px;
}

@media only screen and (max-width: 991px) {
    .rs-portfolio-one .rs-portfolio-navigation {
        justify-content: start;
    }
}

.rs-portfolio-one.has-theme-red .rs-portfolio-tag a {
    background: var(--rs-theme-red);
}

.rs-portfolio-one.has-theme-red .rs-portfolio-tag a:hover {
    background: var(--rs-white);
    color: var(--rs-black);
}

.rs-portfolio-three .rs-portfolio-title {
    font-size: 32px;
    color: var(--rs-white);
}

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

    .rs-portfolio-three .rs-portfolio-title br {
        display: none;
    }
}

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

.rs-portfolio-three .rs-portfolio-btn .has-circle {
    width: 55px;
    height: 55px;
}

.rs-portfolio-three .rs-portfolio-tag {
    margin-bottom: 15px;
}

.rs-portfolio-three .rs-portfolio-tag a {
    color: rgba(255, 255, 255, 0.8);
    background: #3E4B63;
    padding: 8px 20px 8px 20px;
    border-radius: 4px;
    display: inline-flex;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.rs-portfolio-three .rs-portfolio-tag a:hover {
    background: var(--mainColor);
    color: var(--rs-white);
}

.rs-portfolio-three .rs-portfolio-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 450px;
}

@media only screen and (max-width: 1600px) {
    .rs-portfolio-three .rs-portfolio-item {
        height: 400px;
    }
}

@media only screen and (max-width: 1600px) {
    .rs-portfolio-three .rs-portfolio-item {
        height: 400px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-portfolio-three .rs-portfolio-item {
        height: 350px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-portfolio-three .rs-portfolio-item {
        height: 300px;
    }
}

.rs-portfolio-three .rs-portfolio-item:hover .rs-portfolio-bg-thumb::before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.rs-portfolio-three .rs-portfolio-item:hover .rs-portfolio-content {
    visibility: visible;
    opacity: 1;
}

.rs-portfolio-three .rs-portfolio-item:hover .rs-portfolio-btn {
    inset-inline-end: 20px;
    opacity: 1;
    visibility: visible;
}

.rs-portfolio-three .rs-portfolio-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.rs-portfolio-three .rs-portfolio-bg-thumb::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: transparent;
    background-image: linear-gradient(110deg, #4a6571 11.12%, rgb(74 101 113 / 33%) 75.6%);
    transition: all 0.5s ease;
    z-index: -1;
}

.rs-portfolio-three .rs-portfolio-content {
    position: absolute;
    padding-inline-start: 40px;
    padding-inline-end: 40px;
    padding-top: 40px;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    width: 100%;
}

@media only screen and (max-width: 1600px) {
    .rs-portfolio-three .rs-portfolio-content {
        padding-inline-start: 30px;
        padding-inline-end: 30px;
        padding-top: 30px;
    }
}

.rs-portfolio-three .rs-portfolio-btn {
    position: absolute;
    bottom: 20px;
    visibility: hidden;
    opacity: 0;
    inset-inline-end: -60px;
    transition: all 0.5s ease;
    z-index: 1;
}

.rs-portfolio-five .rs-portfolio-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    background-image: linear-gradient(133deg, #142340 0%, rgba(20, 35, 64, 0) 62%);
    z-index: 1;
}

.rs-portfolio-five .rs-services-text-btn .rs-btn.has-theme-cyan.has-bg::before {
    background: var(--rs-theme-cyan);
}

.rs-portfolio-six .rs-portfolio-number::before {
    position: absolute;
    color: rgba(31, 31, 31, 0.47);
    counter-increment: count;
    content: "0" counter(count);
    z-index: 2;
    inset-inline-start: 0;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    top: 0;
}

.rs-portfolio-six .rs-portfolio-text-link a::before {
    content: "";
    position: absolute;
    background: var(--rs-text-primary);
    width: 50px;
    height: 1px;
    bottom: 1px;
    inset-inline-start: 0;
    transition: all 0.5s ease;
}

.rs-portfolio-six .rs-portfolio-text-link a:hover::before {
    width: 100%;
    background: var(--rs-theme-yellow);
}

.rs-portfolio-six.has-theme-orange .rs-portfolio-number::before {
    color: #B3B3B3;
}

.rs-portfolio-eight .rs-portfolio-item:hover .rs-portfolio-thumb::before {
    opacity: 1;
    visibility: visible;
    bottom: 0;
    height: 100%;
}

.rs-portfolio-eight .rs-portfolio-thumb::before {
    position: absolute;
    content: "";
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 0;
    bottom: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    background-color: transparent;
    background-image: linear-gradient(164deg, var(--rs-theme-green) 0%, rgba(2, 59, 74, 0) 100%);
    z-index: 2;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.rs-portfolio-details-wrapper .rs-portfolio-details-thumb img {
    width: 100%;
    border-radius: 4px;
}

.rs-portfolio-details-wrapper .rs-portfolio-details-title {
    font-size: 36px;
}

@media only screen and (max-width: 1199px) {
    .rs-portfolio-details-wrapper .rs-portfolio-details-title {
        font-size: 30px;
    }
}

.rs-portfolio-details-content .description {
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
}

.rs-portfolio-details-content .rs-list-item ul {
    display: grid;
    grid-template-columns: 300px auto;
    align-items: center;
    gap: 10px 0px;
}

@media only screen and (max-width: 767px) {
    .rs-portfolio-details-content .rs-list-item ul {
        grid-template-columns: auto;
    }
}

.rs-portfolio-details-content .rs-list-item ul li {
    font-size: 18px;
}

.rs-portfolio-details-content .rs-list-item ul li svg {
    width: 20px;
    height: 20px;
    fill: var(--mainColor);
}

.rs-portfolio-details-content .rs-list-item ul li:not(:last-child) {
    margin-bottom: 0;
}

.rs-portfolio-details-content .rs-portfolio-details-working-step-wrapper .rs-work-step-number::before {
    position: absolute;
    color: var(--rs-white);
    counter-increment: count;
    content: "0" counter(count);
    z-index: 2;
    font-weight: 400;
    transition: 0.3s;
    width: 42px;
    height: 48px;
    background: var(--mainColor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 20px;
    top: 2px;
    inset-inline-start: 0;
}

@media only screen and (max-width: 1199px) {
    .rs-portfolio-details-content .rs-portfolio-details-working-step-wrapper .rs-work-step-number::before {
        top: -2px;
    }
}

/*----------------------------------------*/
/*  4.5 Contact css
/*----------------------------------------*/
.rs-contact-one .rs-contact-input input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.rs-contact-one .rs-contact-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.rs-contact-one.has-theme-red .rs-contact-input input::placeholder,
.rs-contact-one.has-theme-red .rs-contact-input textarea::placeholder {
    color: #616161;
}

.rs-contact-one.has-theme-orange .rs-contact-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.85;
    z-index: 1;
}

.rs-contact-one.has-theme-green .rs-contact-input input::placeholder,
.rs-contact-one.has-theme-green .rs-contact-input textarea::placeholder {
    color: var(--rs-white);
}

.rs-contact-one.has-theme-green-two .rs-contact-input input::placeholder,
.rs-contact-one.has-theme-green-two .rs-contact-input textarea::placeholder {
    color: #616161;
}

.rs-contact-one.has-white .rs-contact-input input::placeholder,
.rs-contact-one.has-white .rs-contact-input textarea::placeholder {
    color: rgba(68, 68, 68, 0.478);
}

.rs-contact-one.has-theme-orange-two .rs-contact-input input::placeholder,
.rs-contact-one.has-theme-orange-two .rs-contact-input textarea::placeholder {
    color: #616161;
}

.rs-contact-one.has-theme-yellow .rs-contact-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #121315;
    opacity: 0.85;
    z-index: 1;
}

.rs-contact-four .rs-contact-input input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.rs-contact-four .rs-contact-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.rs-contact-eight .rs-ripple-item.ripple .pre-circle-ripple::before {
    -webkit-animation: rs-pulse-border 1500ms ease-out infinite;
    animation: rs-pulse-border 1500ms ease-out infinite;
    opacity: 1;
}

.rs-contact-eight .rs-ripple-item:hover .pre-circle-ripple::before {
    -webkit-animation: rs-pulse-border 1500ms ease-out infinite;
    animation: rs-pulse-border 1500ms ease-out infinite;
    opacity: 1;
}

.rs-contact-eight .rs-ripple-figure::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #1F1F1F;
    top: 100%;
    right: 0;
    margin: 0 auto;
}

.rs-contact-eight .pre-circle-ripple::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: var(--mainColor);
    transform-origin: center center;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.rs-contact-eight .pre-circle-ripple::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    z-index: 9;
    border: 3px solid #EA5501;
}

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

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

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

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

.rs-contact-nine .rs-contact-item {
    padding: 30px 30px 30px 30px;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #E9E9E9;
}

.rs-contact-nine .rs-contact-item:hover .rs-contact-icon {
    background: var(--mainColor);
}

.rs-contact-nine .rs-contact-item:hover .rs-contact-icon svg path {
    fill: var(--rs-white);
}

.rs-contact-nine .rs-contact-content a {
    display: block;
}

.rs-contact-nine .rs-contact-content a:not(:last-child) {
    margin-bottom: 3px;
}

.rs-contact-nine .rs-contact-content a:hover {
    color: var(--mainColor);
}

.rs-contact-nine .rs-contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: var(--rs-bg-primary);
    transition: all 0.5s;
}

.rs-contact-nine .rs-contact-icon svg {
    width: 24px;
    height: 24px;
}

.rs-contact-nine .rs-contact-icon svg path {
    fill: #616161;
}

.rs-contact-nine .rs-contact-title {
    margin-top: 30px;
    margin-bottom: 20px;
}

.rs-contact-ten .rs-contact-form {
    padding-top: 76px;
    padding-bottom: 80px;
    padding-inline-start: 240px;
    padding-inline-end: 240px;
    background: #F7F7F7;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0px 0px 0px 5px #FFF;
    border-top: 4px solid var(--mainColor);
}

@media only screen and (max-width: 1600px) {
    .rs-contact-ten .rs-contact-form {
        padding-inline-start: 150px;
        padding-inline-end: 150px;
    }
}

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

@media only screen and (max-width: 767px) {
    .rs-contact-ten .rs-contact-form {
        margin-bottom: 0px;
    }
}

.rs-contact-ten .rs-contact-form .descrip {
    margin: 15px auto 30px;
    max-width: 630px;
}

.rs-contact-ten .rs-contact-title {
    font-size: 40px;
}

.rs-contact-ten .rs-contact-input input {
    background: var(--rs-white);
    border: 1px solid #D2D2D2;
    border-radius: 4px;
}

.rs-contact-ten .rs-contact-input input:focus {
    border-color: var(--mainColor);
}

.rs-contact-ten .rs-contact-input textarea {
    height: 150px;
    background: var(--rs-white);
    border: 1px solid #D2D2D2;
    border-radius: 4px;
}

.rs-contact-ten .rs-contact-input textarea:focus {
    border-color: var(--mainColor);
}

.rs-contact-ten .rs-contact-btn .rs-btn:hover {
    background: rgb(74 101 113 / 75%);;
}

/*----------------------------------------*/
/*   4.15 pricing css
/*----------------------------------------*/
.rs-pricing-one .rs-pricing-feature ul li::before {
    content: "\eb81";
    color: var(--rs-theme-light-green);
    font-size: 20px;
    margin: 0;
    font-weight: 400;
    display: inline-block;
    font-family: "remixicon";
    position: absolute;
    inset-inline-start: 0;
}

.rs-pricing-one .rs-pricing-feature ul li.close::before {
    content: "\eb97";
}

.rs-pricing-one .rs-pricing-item.item-active .rs-pricing-feature ul li::before {
    color: var(--rs-theme-yellow);
}

.rs-pricing-two .rs-pricing-top::before {
    position: absolute;
    width: calc(100% + 80px);
    height: 1px;
    background: var(--rs-border-primary);
    content: "";
    bottom: 0;
    left: -40px;
}

@media only screen and (max-width: 1199px) {
    .rs-pricing-two .rs-pricing-top::before {
        width: calc(100% + 60px);
        left: -30px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-pricing-two .rs-pricing-top::before {
        width: calc(100% + 50px);
        left: -25px;
    }
}

.rs-pricing-two .rs-pricing-feature::before {
    position: absolute;
    width: calc(100% + 80px);
    height: 1px;
    background: var(--rs-border-primary);
    content: "";
    top: 0;
    left: -40px;
}

@media only screen and (max-width: 1199px) {
    .rs-pricing-two .rs-pricing-feature::before {
        width: calc(100% + 50px);
        left: -25px;
    }
}

.rs-pricing-two .rs-pricing-feature ul li::before {
    content: "\eb7b";
    color: var(--mainColor);
    font-size: 20px;
    margin: 0;
    font-weight: 400;
    display: inline-block;
    font-family: "remixicon";
    position: absolute;
    inset-inline-end: 0;
}

.rs-pricing-two .rs-pricing-feature ul li.close::before {
    content: "\eb99";
    color: #666;
}

/*----------------------------------------*/
/*  4.18 Resume css
/*----------------------------------------*/
.rs-resume-one .rs-resume-tab a.active::before {
    right: auto;
    width: 100%;
}

.rs-resume-one .rs-resume-tab a::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background: var(--rs-theme-quaternary);
    transition: 0.5s;
    right: 0px;
    z-index: -1;
    border-radius: 4px;
}

/*----------------------------------------*/
/*  4.2 Award css
/*----------------------------------------*/
.rs-award-one .rs-award-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    border-radius: 0 0 4px 4px;
    width: 0;
    background-color: var(--rs-theme-green);
    transition: all 0.5s ease;
}

.rs-award-one .rs-award-item:hover::before {
    width: 100%;
}

/*----------------------------------------*/
/*  4.10 gallery css
/*----------------------------------------*/
.rs-gallery-one .rs-gallery-item:hover .rs-gallery-thumb::before {
    visibility: visible;
    opacity: 1;
}

.rs-gallery-one .rs-gallery-thumb::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 175, 64, 0.8);
    transition: all 0.4s ease-out;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
}

/*----------------------------------------*/
/*  4.26 work step css
/*----------------------------------------*/
.rs-work-step-one .rs-work-step-item:hover .rs-work-step-icon::before {
    opacity: 1;
    color: var(--mainColor);
}

.rs-work-step-one .rs-work-step-icon::before {
    position: absolute;
    color: var(--rs-text-primary);
    counter-increment: count;
    content: "0" counter(count);
    z-index: 1;
    inset-inline-end: 0;
    font-size: 90px;
    font-weight: 700;
    top: 50%;
    opacity: 0.08;
    transform: translateY(-50%);
    line-height: 0.8;
    transition: all 0.5s ease;
}

@media only screen and (max-width: 1199px) {
    .rs-work-step-one .rs-work-step-icon::before {
        font-size: 70px;
    }
}

.rs-work-step-two .rs-work-step-wrapper :not(:last-child) .rs-work-step-number::before {
    content: "";
    position: absolute;
    height: 60%;
    border-left: 1px dashed #616161;
    top: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rs-work-step-two .rs-work-step-wrapper :not(:last-child) .rs-work-step-number::before {
        top: 75px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-work-step-two .rs-work-step-wrapper :not(:last-child) .rs-work-step-number::before {
        top: 75px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-work-step-two .rs-work-step-wrapper :not(:last-child) .rs-work-step-number::before {
        top: 75px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-work-step-two .rs-work-step-wrapper:last-child .rs-work-step-number::before {
        content: "";
        position: absolute;
        height: 60%;
        border-left: 1px dashed #616161;
        top: 70px;
    }
}

.rs-work-step-three .row [class*=col-]:not(:last-child) .rs-work-step-item {
    border-inline-end: 1px solid #E7E9EC;
}

@media only screen and (max-width: 575px) {
    .rs-work-step-three .row [class*=col-]:not(:last-child) .rs-work-step-item {
        border-inline-end: none;
    }
}

.rs-work-step-three .row [class*=col-]:nth-child(2) .rs-work-step-item {
    margin-inline-end: 30px;
}

@media only screen and (max-width: 1600px) {
    .rs-work-step-three .row [class*=col-]:nth-child(2) .rs-work-step-item {
        margin-inline-end: 20px;
    }
}

@media only screen and (max-width: 1366px) {
    .rs-work-step-three .row [class*=col-]:nth-child(2) .rs-work-step-item {
        margin-inline-end: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-work-step-three .row [class*=col-]:nth-child(2) .rs-work-step-item {
        border-inline-end: none;
    }
}

.rs-work-step-three .row [class*=col-]:nth-child(3) .rs-work-step-item {
    margin-inline-end: 30px;
}

@media only screen and (max-width: 1600px) {
    .rs-work-step-three .row [class*=col-]:nth-child(3) .rs-work-step-item {
        margin-inline-end: 20px;
    }
}

@media only screen and (max-width: 1366px) {
    .rs-work-step-three .row [class*=col-]:nth-child(3) .rs-work-step-item {
        margin-inline-end: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-work-step-three .row [class*=col-]:nth-child(3) .rs-work-step-item {
        margin-inline-end: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-work-step-three .row [class*=col-]:nth-child(3) .rs-work-step-item {
        margin-inline-end: 10px;
    }
}

.rs-work-step-three .rs-work-step-item:hover .rs-work-step-number::before {
    font-weight: 600;
}

.rs-work-step-three .rs-work-step-number::before {
    position: absolute;
    color: var(--rs-white);
    counter-increment: count;
    content: "0" counter(count);
    z-index: 2;
    font-weight: 400;
    transition: 0.3s;
    width: 42px;
    height: 48px;
    background: var(--rs-theme-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 20px;
    top: 2px;
    inset-inline-start: 0;
}

@media only screen and (max-width: 1199px) {
    .rs-work-step-three .rs-work-step-number::before {
        top: -2px;
    }
}

.rs-work-step-three.has-theme-cyan .rs-work-step-number::before {
    background: var(--rs-theme-cyan);
}

.rs-work-step-four .rs-work-step-item:hover::before {
    color: var(--rs-white);
    background: var(--rs-theme-light-green);
    border-color: var(--rs-theme-light-green);
}

.rs-work-step-four .rs-work-step-item::before {
    position: absolute;
    color: var(--rs-theme-light-green);
    counter-increment: count;
    content: "0" counter(count);
    font-size: 24px;
    font-weight: 700;
    transition: all 0.5s ease;
    width: 50px;
    height: 50px;
    border: 1px solid #F0F0F0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 20px;
    inset-inline-end: 20px;
}

.rs-work-step-four .rs-work-step-item.active::before {
    color: var(--rs-white);
    border: 1px solid var(--rs-theme-light-green);
    background: var(--rs-theme-light-green);
}

.rs-work-step-five .rs-work-step-number::before {
    position: absolute;
    color: var(--rs-white);
    counter-increment: count;
    content: "0" counter(count);
    z-index: 2;
    font-weight: 400;
    transition: 0.3s;
    width: 42px;
    height: 48px;
    background: var(--mainColor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 20px;
    top: 2px;
    inset-inline-start: 0;
}

@media only screen and (max-width: 1199px) {
    .rs-work-step-five .rs-work-step-number::before {
        top: -2px;
    }
}

.rs-work-step-six .rs-work-step-item::before {
    position: absolute;
    color: rgba(31, 31, 31, 0.05);
    counter-increment: count;
    content: "0" counter(count);
    z-index: 0;
    inset-inline-end: -5px;
    font-size: 120px;
    font-weight: 700;
    line-height: 0.75;
    top: 0;
}

@media only screen and (max-width: 1600px) {
    .rs-work-step-six .rs-work-step-item::before {
        font-size: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-work-step-six .rs-work-step-item::before {
        font-size: 80px;
    }
}

.rs-work-step-six .rs-work-step-item:hover::before {
    color: rgba(255, 202, 59, 0.1294117647);
}

/*----------------------------------------*/
/*  4.24 video css
/*----------------------------------------*/
.rs-video-one .rs-video-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    background: linear-gradient(120deg, #000 0%, #310B0D 100%);
    z-index: -1;
    opacity: 0.5;
}

.rs-video-two .rs-play-btn::before {
    background: var(--rs-theme-blue);
}

.rs-video-three .rs-video-btn .rs-pulse-btn::before {
    background: var(--rs-white);
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: -1;
    left: 40px;
    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-video-three .rs-video-btn .rs-pulse-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;
}

/*----------------------------------------*/
/*  4.4 Category css
/*----------------------------------------*/
.rs-category-one .rs-category-item::before {
    position: absolute;
    color: #E7E9EC;
    counter-increment: count;
    content: "0" counter(count);
    z-index: 1;
    font-size: 30px;
    font-weight: 700;
    bottom: 35px;
    inset-inline-start: 35px;
    line-height: 1;
    transform: rotate(-90deg);
}

@media only screen and (max-width: 480px) {
    .rs-category-one .rs-category-item::before {
        bottom: unset;
        top: 35px;
        inset-inline-end: 35px;
        transform: rotate(0deg);
        inset-inline-start: auto;
    }
}

/*----------------------------------------*/
/*   4.16 progress css
/*----------------------------------------*/
.rs-progress-one::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 250px;
    background: var(--rs-bg-primary);
    z-index: -1;
    top: 0;
    inset-inline-start: 0;
}

.rs-progress-one .rs-progress-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0) 23%, #000 100%);
}

.rs-progress-one.has-space::before {
    content: none;
}

/*----------------------------------------*/
/*  4.28 line css
/*----------------------------------------*/
.line__wrap::before {
    width: 1px;
    height: 100%;
    position: absolute;
    content: "";
    background: rgba(20, 35, 64, 0.1);
    z-index: -1;
    top: 0;
    left: 39%;
}

.line__wrap::after {
    width: 1px;
    height: 100%;
    position: absolute;
    content: "";
    background: rgba(20, 35, 64, 0.1);
    z-index: -1;
    top: 0;
    left: 360px;
}

@media only screen and (max-width: 1600px) {
    .line__wrap::after {
        left: 100px;
    }
}

.line__item::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 40px;
    z-index: -1;
    background: var(--rs-theme-deep-blue);
    left: 359px;
    border-radius: 50%;
    animation: line1 15s linear infinite;
}

.line__item::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 40px;
    z-index: -1;
    background: var(--rs-theme-deep-blue);
    left: 39%;
    border-radius: 50%;
    animation: line2 15s linear infinite;
}

.line__wrap-two::before {
    width: 1px;
    height: 100%;
    position: absolute;
    content: "";
    background: rgba(20, 35, 64, 0.1);
    z-index: -1;
    top: 0;
    right: 41%;
}

.line__wrap-two::after {
    width: 1px;
    height: 100%;
    position: absolute;
    content: "";
    background: rgba(20, 35, 64, 0.1);
    z-index: -1;
    top: 0;
    right: 400px;
}

@media only screen and (max-width: 1600px) {
    .line__wrap-two::after {
        right: 100px;
    }
}

.line__item-two::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 40px;
    z-index: -1;
    background: var(--rs-theme-deep-blue);
    right: 400px;
    border-radius: 50%;
    animation: line1 15s linear infinite;
}

.line__item-two::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 40px;
    z-index: -1;
    background: var(--rs-theme-deep-blue);
    right: 41%;
    border-radius: 50%;
    animation: line2 15s linear infinite;
}

@keyframes line1 {
    0% {
        top: 0px;
        opacity: 1;
    }
    50% {
        top: 50%;
    }
    100% {
        top: 100%;
        opacity: 1;
    }
}

@keyframes line2 {
    0% {
        opacity: 1;
        bottom: 0px;
    }
    50% {
        bottom: 50%;
    }
    100% {
        bottom: 100%;
        opacity: 1;
    }
}

/*----------------------------------------*/
/*  4.12 history css
/*----------------------------------------*/
.rs-history-one .rs-history-tab .nav-link::after {
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    position: absolute;
    content: "";
    inset-inline-start: -1px;
    top: 0;
    background-color: var(--mainColor);
    border-radius: 2px 2px 0 0;
}

.rs-history-one .rs-history-tab .nav-link.active::after {
    transform: scaleX(1);
}

.rs-history-one .rs-history-tab .nav-link:hover::after {
    transform: scaleX(1);
}

.rs-history-one .rs-history-tab .nav-item:not(:last-child) .nav-link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    inset-inline-end: 0;
    top: 50%;
    background: #DDDDE0;
    display: block;
    transform: translate(-50%, -50%);
}

.rs-history-one .rs-list-item li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 25px;
    height: 2px;
    background: var(--mainColor);
    opacity: 0.68;
    inset-inline-start: 0;
}

/*----------------------------------------*/
/*  4.14 price range CSS
/*----------------------------------------*/
.sidebar-widget-range .noUi-handle::after, .sidebar-widget-range .noUi-handle::before {
    display: none;
}

/*----------------------------------------*/
/*   4.17 quantity css
/*----------------------------------------*/
/*----------------------------------------*/
/*  4.3 cart css
/*----------------------------------------*/
.shop-table-content table > tbody {
    vertical-align: middle;
}

.rs-cart-checkout-shipping-option input[type=radio] ~ label::before {
    border: 1px solid var(--rs-black);
}

.rs-cart-checkout-shipping-option input[type=radio]:checked ~ label::before {
    border-color: var(--rs-primary);
}

.rs-cart-checkout-shipping-option input[type=radio]:checked ~ label::after {
    background-color: var(--rs-primary);
}

/*----------------------------------------*/
/*  4.11 gasap css
/*----------------------------------------*/
/*----------------------------------------*/
/*  4.20 skill css
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.3.2 Shop Style
/*----------------------------------------*/
.rs-shorting-select .nice-select::after {
    color: var(--rs-black);
    font-size: 18px;
}

.product-rating::before {
    position: absolute;
    content: "";
    inset-inline-end: 0;
    top: 0px;
    width: 1px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.1);
}

/*----------------------------------------*/
/* 3.3.1 Checkout Style
/*----------------------------------------*/
.checkout-verify-reveal::before {
    content: "\f07b";
    left: 15px;
    top: 13px;
    position: absolute;
    color: var(--mainColor);
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
}

/*----------------------------------------*/
/*  2.11 Range Slider
/*----------------------------------------*/
button.ui-button::-moz-focus-inner,
input.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

body .ui-tooltip {
    border-width: 2px;
}

html .ui-button.ui-state-disabled:active,
html .ui-button.ui-state-disabled:hover {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: 400;
    color: #454545;
}

a:visited.ui-button {
    color: #454545;
    text-decoration: none;
}

/*******************************************************/
.mt--60 {
    margin-top: 60px !important;
}

.cp-none {
    clip-path: none !important;
    border-radius: 4px;
    overflow: hidden;
}

.working-process-wrapper5 {
    clip-path: polygon(0% 3.03%, 0% 3.03%, 0.025% 2.539%, 0.099% 2.072%, 0.217% 1.638%, 0.376% 1.241%, 0.571% 0.888%, 0.798% 0.585%, 1.053% 0.338%, 1.332% 0.154%, 1.632% 0.04%, 1.948% 0%, 85.62% 0%, 85.62% 0%, 85.763% 0.008%, 85.905% 0.032%, 86.044% 0.073%, 86.181% 0.128%, 86.315% 0.199%, 86.445% 0.285%, 86.571% 0.385%, 86.692% 0.499%, 86.808% 0.628%, 86.918% 0.77%, 99.349% 18.036%, 99.349% 18.036%, 99.468% 18.215%, 99.576% 18.409%, 99.672% 18.614%, 99.757% 18.831%, 99.83% 19.058%, 99.89% 19.293%, 99.938% 19.536%, 99.972% 19.785%, 99.993% 20.039%, 100% 20.296%, 100% 96.97%, 100% 96.97%, 99.975% 97.461%, 99.901% 97.928%, 99.783% 98.362%, 99.624% 98.759%, 99.429% 99.113%, 99.202% 99.415%, 98.947% 99.662%, 98.668% 99.846%, 98.368% 99.96%, 98.052% 100%, 1.948% 100%, 1.948% 100%, 1.632% 99.96%, 1.332% 99.846%, 1.053% 99.662%, 0.798% 99.415%, 0.571% 99.113%, 0.376% 98.759%, 0.217% 98.362%, 0.099% 97.928%, 0.025% 97.461%, 0% 96.97%, 0% 3.03%);
    position: relative;
    z-index: 1;
}

.working-process-wrapper5:hover::before {
    opacity: 0;
}

.working-process-wrapper5:hover::after {
    opacity: 1;
    bottom: 0;
}

.working-process-wrapper5:hover .content {
    bottom: 25px !important;
}

@media only screen and (max-width: 1199px) {
    .working-process-wrapper5:hover .content {
        bottom: 15px !important;
    }
}

.working-process-wrapper5:hover .content .title {
    margin-bottom: 10px;
}

.working-process-wrapper5:hover .content .number {
    display: none;
}

.working-process-wrapper5:hover .content .desc {
    opacity: 1;
}

.working-process-wrapper5:hover .image-area a {
    display: block;
}

.working-process-wrapper5:hover .image-area a img {
    transform: scale(1.15);
}

.working-process-wrapper5 .image-area a {
    display: block;
}

.working-process-wrapper5 .image-area a img {
    transition: 0.4s;
}

.working-process-wrapper5::before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 47.81%, rgba(0, 0, 0, 0.37) 58.9%, #4a6571 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    transition: all 0.4s ease;
    opacity: 1;
}

.working-process-wrapper5::after {
    content: "";
    background: linear-gradient(180deg, rgb(74 101 113 / 45%) 0%, rgba(255, 94, 20, 0.15) 47.81%, rgb(74 101 113 / 70%) 58.9%, #4a6571 100%);
    width: 100%;
    height: 100%;
    bottom: -100%;
    opacity: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    transition: all 0.4s ease;
}

.working-process-wrapper5 .content {
    position: absolute;
    z-index: 2;
    width: 100%;
    max-width: 233px;
    right: 20px;
    bottom: -20%;
    text-align: start;
    transition: all 0.4s ease;
}

@media only screen and (max-width: 1199px) {
    .working-process-wrapper5 .content {
        width: 93%;
        bottom: -43% !important;
    }
}

@media only screen and (max-width: 991px) {
    .working-process-wrapper5 .content {
        bottom: -26% !important;
        width: 92%;
        left: 20px !important;
    }
}

@media only screen and (max-width: 767px) {
    .working-process-wrapper5 .content {
        width: 92%;
        bottom: -18% !important;
    }
}

@media only screen and (max-width: 576px) {
    .working-process-wrapper5 .content {
        max-width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .working-process-wrapper5 .content {
        bottom: -27% !important;
    }
}

.image-sector {
    height: 215px;
    width: 100%;
}

.image-sector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.working-process-wrapper5 .content .title {
    margin-bottom: 15px;
    transition: all 0.4s ease;
    font-size: 16px;
    color: #fff;
}

.working-process-wrapper5 .content .title a {
    color: #fff;
    transition: all 0.4s ease;;
}

.working-process-wrapper5 .content .desc {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    opacity: 0;
}

@media only screen and (max-width: 1199px) {
    .working-process-wrapper5 .content .desc {
        opacity: 1;
    }
}

@media only screen and (max-width: 576px) {
    .working-process-wrapper5::before {
        opacity: 0;
    }

    .working-process-wrapper5::after {
        opacity: 1;
        bottom: 0;
    }

    .working-process-wrapper5 .content {
        bottom: 25px !important;
    }
}

@media only screen and (max-width: 576px) and (max-width: 1199px) {
    .working-process-wrapper5 .content {
        bottom: 15px !important;
    }
}

@media only screen and (max-width: 576px) {
    .working-process-wrapper5 .content .title {
        margin-bottom: 10px;
    }

    .working-process-wrapper5 .image-area a {
        display: block;
    }

    .working-process-wrapper5 .image-area a img {
        transform: scale(1.15);
    }
}

.rs-footer-widget-stroke-text img {
    margin-bottom: 30px;
    width: 70%;
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li span.active {
    color: var(--mainColor);
}

.rs-services-details-wrapper .rs-list-item ul {
    display: grid;
    grid-template-columns: 300px auto;
    align-items: center;
    gap: 8px 0px;
}

.rs-services-details-wrapper .rs-list-item ul li svg {
    width: 20px;
    height: 20px;
    fill: var(--mainColor);
}

.rs-product-details {
    margin-top: 30px;
}

.rs-product-details h3 {
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.rs-product-details-tab-list {
    margin-bottom: 50px;
}

.rs-product-details-tab-list ul li {
    list-style: none;
    position: relative;
    padding-inline-start: 30px;
    display: flex;
    align-items: center;
    color: var(--rs-title-primary);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;

}

.rs-product-details-tab-list ul li::before {
    content: "\eb7b";
    color: var(--mainColor);
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    font-family: "remixicon";
    position: absolute;
    inset-inline-start: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--mainColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-postbox-details-video .rs-video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.rs-play-btn.has-theme-orange {
    width: 80px;
    height: 80px;
    font-size: 25px;
    background: var(--mainColor);
}

.rs-play-btn {
    width: 60px;
    height: 60px;
    font-size: 26px;
    background: var(--mainColor);
    display: inline-flex;
    border-radius: 50%;
    color: var(--rs-white);
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.productSwiper img {
    width: 100%;
    border-radius: 10px;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    color: #4a6571;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 35px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.rs-header-three .rs-header-hamburger .bar-icon svg path {
    fill: var(--rs-white);
}

/* ========================================
   Offcanvas Sidebar
======================================== */
.offcanvas-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.offcanvas-area.opened {
    visibility: visible;
    opacity: 1;
}

.offcanvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.offcanvas-content {
    position: absolute;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90%;
    height: 100%;
    background: #1a1a1a;
    padding: 30px;
    overflow-y: auto;
    transition: right 0.4s ease;
    z-index: 2;
}

.offcanvas-area.opened .offcanvas-content {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-header .offcanvas-logo img {
    max-width: 160px;
}

.offcanvas-close-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.offcanvas-close-btn:hover {
    background: var(--mainColor);
    border-color: var(--mainColor);
}

.offcanvas-description {
    margin-bottom: 30px;
}

.offcanvas-description p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.8;
}

.offcanvas-contact {
    margin-bottom: 30px;
}

.offcanvas-contact h5,
.offcanvas-social h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.offcanvas-contact h5::after,
.offcanvas-social h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--mainColor);
}

.offcanvas-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #b0b0b0;
    font-size: 14px;
}

.offcanvas-contact ul li i {
    color: var(--mainColor);
    font-size: 18px;
    margin-top: 3px;
}

.offcanvas-contact ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.offcanvas-social .rs-theme-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin-left: 8px;
    transition: all 0.3s;
}

.offcanvas-social .rs-theme-social a:hover {
    background: var(--mainColor);
    border-color: var(--mainColor);
}

body.offcanvas-opened {
    overflow: hidden;
}

/* Hide meanmenu bar - using sidebar-toggle instead */
.mean-container .mean-bar {
    display: none !important;
}

/* Sidebar toggle - hidden on desktop, visible on responsive */
.rs-header-hamburger {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .rs-header-hamburger {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 9999999;
    }

    .rs-header-hamburger .sidebar-toggle .bar-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 5px;
    }

    .rs-header-hamburger .sidebar-toggle .bar-icon svg path {
        fill: #fff;
    }
}

/* Offcanvas Menu Navigation */
.offcanvas-menu {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-menu > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offcanvas-menu > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: #d0d0d0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.offcanvas-menu > ul > li > a:hover {
    color: var(--mainColor);
    padding-right: 8px;
}

.offcanvas-menu > ul > li > a i {
    font-size: 18px;
    transition: transform 0.3s;
}

.offcanvas-menu > ul > li.submenu-open > a i {
    transform: rotate(180deg);
}

/* Submenu */
.offcanvas-submenu {
    display: none;
    padding: 0 15px 10px;
}

.offcanvas-menu > ul > li.submenu-open .offcanvas-submenu {
    display: block;
}

.offcanvas-submenu li a {
    display: block;
    padding: 8px 0;
    color: #a0a0a0;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.offcanvas-submenu li a:hover {
    color: var(--mainColor);
    padding-right: 5px;
}
/* ── Products Grid Section ────────────────────────── */
.rs-products-grid-area {
    background: var(--rs-bg-primary);
}

.hp-product-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hp-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(74, 101, 113, 0.18);
    color: inherit;
    text-decoration: none;
}

/* Image container */
.hp-product-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e9ecef;
}

.hp-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-product-card:hover .hp-product-card__image img {
    transform: scale(1.08);
}

/* Hover overlay */
.hp-product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 101, 113, 0.85) 0%, rgba(44, 62, 72, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hp-product-card:hover .hp-product-card__overlay {
    opacity: 1;
}

.hp-product-card__view-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: scale(0.7);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hp-product-card:hover .hp-product-card__view-btn {
    transform: scale(1);
    border-color: #fff;
}

[dir="rtl"] .hp-product-card__view-btn svg {
    transform: scaleX(-1);
}

/* Content */
.hp-product-card__content {
    padding: 20px;
}

.hp-product-card__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.hp-product-card:hover .hp-product-card__title {
    color: #4a6571;
}

.hp-product-card__excerpt {
    font-size: 13.5px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 575px) {
    .hp-product-card__content {
        padding: 16px;
    }
    .hp-product-card__title {
        font-size: 15px;
    }
}
/* Fixed image aspect ratio */
.rs-portfolio-area .rs-portfolio-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.rs-portfolio-area .rs-portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover: image zoom + overlay darken */
.rs-portfolio-area .rs-portfolio-item:hover .rs-portfolio-thumb img {
    transform: scale(1.08);
}
.rs-portfolio-area .rs-portfolio-thumb::before {
    transition: background 0.4s ease;
}
.rs-portfolio-area .rs-portfolio-item:hover .rs-portfolio-thumb::before {
    background-image: linear-gradient(360deg, rgba(4, 4, 35, 0.92) 0%, rgba(4, 4, 35, 0.3) 70%);
}

/* Sector tag: bright readable badge */
.rs-portfolio-area .rs-portfolio-tag span,
.rs-portfolio-area .rs-portfolio-tag a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 55px;
    background: rgba(73, 100, 111, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(73, 100, 111, 0.5);
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease;
}
.rs-portfolio-area .rs-portfolio-item:hover .rs-portfolio-tag span,
.rs-portfolio-area .rs-portfolio-item:hover .rs-portfolio-tag a {
    background: rgba(255, 255, 255, 0.35);
}

/* Arrow button: scale on hover */
.rs-portfolio-area .rs-portfolio-btn .rs-btn {
    transition: transform 0.3s ease;
}
.rs-portfolio-area .rs-portfolio-item:hover .rs-portfolio-btn .rs-btn {
    transform: scale(1.1);
}
.ct-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 30px;
}
.ct-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ct-card-link:hover .ct-card {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(74, 101, 113, 0.18);
}
.ct-card .rs-blog-thumb {
    overflow: hidden;
}
.ct-card .rs-blog-thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ct-card-link:hover .rs-blog-thumb img {
    transform: scale(1.05);
}
.ct-card-link:hover .rs-square-btn {
    color: var(--mainColor);
}
.page-details-slider {
    border-radius: 8px;
    overflow: hidden;
}
.page-details-slider img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.page-details-slider .swiper-button-prev,
.page-details-slider .swiper-button-next {
    color: #fff;
    background: rgba(0,0,0,0.35);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.page-details-slider .swiper-button-prev::after,
.page-details-slider .swiper-button-next::after {
    font-size: 16px;
}
.page-details-slider .swiper-pagination-bullet-active {
    background: var(--mainColor);
}
.rs-contact-ten .rs-contact-form .invalid-feedback {
    text-align: left;
}
