@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Prata&display=swap");

.offcanvas-overlay,
a,
.btn,
button,
span,
sub,
sup,
p,
input,
select,
textarea,
img,
svg,
.transition-3,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

:root {
  /**  @font family declaration */
  --rs-ff-body: "Inter", sans-serif;
  --rs-ff-title: "Bitter", sans-serif;
  --rs-ff-p: "Inter", sans-serif;
  --rs-ff-remixicon: "remixicon";
  /** @color declaration */
  --rs-white: #FFFFFF;
  --rs-black: #000;
  --rs-light: #eee;
  --rs-green: #54BD05;
  --rs-yellow: #F69C00;
  --rs-pink: #E033E0;
  --rs-red: #E80000;
  --rs-theme-blue: #003A65;
  --rs-theme-blue-two: #07294D;
  --rs-theme-yellow: #FDC72F;
  --rs-theme-cyan: #0C5776;
  --rs-theme-light-cyan: #00ADE2;
  --rs-theme-red: #960B27;
  --rs-theme-red-two: #A50034;
  --rs-theme-green: #2F584F;
  --rs-theme-green-two: #15A656;
  --rs-text-primary: #4C4C4C;
  --rs-text-secondary: #656565;
  --rs-title-primary: #030303;
  --rs-title-secondary: #1D1D1B;
  --rs-title-tertiary: #051435;
  --rs-bg-primary: #F6F4EE;
  --rs-bg-secondary: #F4F3F3;
  --rs-bg-black: #231F20;
  --rs-bg-dark-blue: #2F3E4B;
  --rs-bg-blue: #003A65;
  --rs-border-primary: #E4E4E4;
  --rs-border-secondary: rgba(255, 255, 255, 0.15);
  --rs-border-tertiary: rgba(255, 255, 255, 0.1);
  --rs-rgba-1: rgba(255, 255, 255, 0.7);
  --rs-rgba-2: rgba(255, 255, 255, 0.8);
  --rs-placeholder: rgba(30, 30, 30, 0.4);
  --rs-gradient-primary: #00033D;
  --rs-gradient-secondary: #0349EF;
  --rs-rating: #F3B656;
  /** @font weight declaration */
  --rs-fw-normal: normal;
  --rs-fw-thin: 100;
  --rs-fw-elight: 200;
  --rs-fw-light: 300;
  --rs-fw-regular: 400;
  --rs-fw-medium: 500;
  --rs-fw-sbold: 600;
  --rs-fw-bold: 700;
  --rs-fw-ebold: 800;
  --rs-fw-black: 900;
  /** @font size declaration */
  --rs-fs-body: 16px;
  --rs-fs-p: 16px;
  --rs-fs-h1: 64px;
  --rs-fs-h2: 48px;
  --rs-fs-h3: 36px;
  --rs-fs-h4: 30px;
  --rs-fs-h5: 24px;
  --rs-fs-h6: 20px;
  --rs-fs-b1: 14px;
  --rs-fs-b2: 16px;
  --rs-fs-b3: 18px;
  --rs-fs-b4: 22px;
}

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

@media (min-width: 1441px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1310px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

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

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

.opacity-05 {
  opacity: 0.5;
}

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

.p-relative {
  position: relative;
}

.position-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.position-absolute {
  position: absolute;
}

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

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

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

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

.overflow-visible {
  overflow: visible;
}

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

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

.underline a:hover {
  color: var(--rs-title-primary);
  background-size: 100% 1px;
}

.underline.is-white a {
  background-image: linear-gradient(var(--rs-white), var(--rs-white)), linear-gradient(var(--rs-white), var(--rs-white));
}

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

/*----------------------------------------
   Mfp customize
-----------------------------------------*/
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1280px;
}

@media only screen and (max-width: 1366px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 850px;
  }
}

@media only screen and (max-width: 1199px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 820px;
  }
}

@media only screen and (max-width: 991px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 750px;
  }
}

.mfp-close {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

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

.mfp-close::after {
  position: absolute;
  content: "\eb98";
  height: 100%;
  width: 100%;
  font-family: var(--rs-ff-remixicon);
  font-size: 31px;
  font-weight: 200;
  right: -20px;
  margin-top: -25px;
}

@media only screen and (max-width: 991px) {
  .mfp-close::after {
    right: 15px;
    margin-top: -30px;
  }
}

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

html {
  font-size: 10px;
}

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

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

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

@media only screen and (max-width: 1600px) {

  h1,
  .h1 {
    font-size: 60px;
  }
}

@media only screen and (max-width: 1199px) {

  h1,
  .h1 {
    font-size: 55px;
  }
}

@media only screen and (max-width: 991px) {

  h1,
  .h1 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 767px) {

  h1,
  .h1 {
    font-size: 45px;
  }
}

@media only screen and (max-width: 575px) {

  h1,
  .h1 {
    font-size: 40px;
  }
}

h2,
.h2 {
  /* font-size: var(--rs-fs-h2); */
  line-height: 1.2;
  font-size: 30px;
}

@media only screen and (max-width: 1199px) {

  h2,
  .h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 991px) {

  h2,
  .h2 {
    font-size: 37px;
  }
}

@media only screen and (max-width: 767px) {

  h2,
  .h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 575px) {

  h2,
  .h2 {
    font-size: 27px;
  }
}

h3,
.h3 {
  font-size: var(--rs-fs-h3);
  line-height: 1.25;
}

@media only screen and (max-width: 1600px) {

  h3,
  .h3 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {

  h3,
  .h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {

  h3,
  .h3 {
    font-size: 22px;
  }
}

h4,
.h4 {
  font-size: var(--rs-fs-h4);
  line-height: 1.33;
}

@media only screen and (max-width: 1600px) {

  h4,
  .h4 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 991px) {

  h4,
  .h4 {
    font-size: 22px;
  }
}

h5,
.h5 {
  font-size: var(--rs-fs-h5);
  line-height: 1.4;
}

@media only screen and (max-width: 1600px) {

  h5,
  .h5 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1199px) {

  h5,
  .h5 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {

  h5,
  .h5 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 575px) {

  h5,
  .h5 {
    font-size: 20px;
  }
}

h6,
.h6 {
  font-size: var(--rs-fs-h6);
  line-height: 1.44;
}

h6.small,
.h6.small {
  font-size: 18px;
}

@media only screen and (max-width: 575px) {

  h6,
  .h6 {
    font-size: 18px;
  }
}

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

p {
  font-size: var(--rs-fs-p);
  font-family: var(--rs-ff-p);
  font-weight: var(--rs-fw-normal);
  color: var(--rs-text-primary);
  margin-bottom: 30px;
  line-height: 28px;
}

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

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

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

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

p:last-child {
  margin-bottom: 0;
}

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

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

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

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

a {
  text-decoration: none;
}

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

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

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

img {
  max-width: 100%;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

hr:not([size]) {
  margin: 0;
  opacity: 1;
  border: none;
  height: 1px;
  background-color: #ececec;
}

[rs-theme=rs-theme-dark] hr:not([size]) {
  background-color: #2d2d27;
}

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

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: var(--rs-theme-yellow);
}

textarea {
  padding: 14px 24px;
}

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

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

::selection {
  background: var(--rs-theme-blue);
  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-body);
  color: var(--rs-placeholder);
}

/*---------------------------------
	1.1 Default Spacing SCSS
---------------------------------*/
.section-space {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

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

.section-space-top {
  padding-top: 120px;
}

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

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

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

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

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

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

@media only screen and (max-width: 767px) {
  .section-title-space {
    margin-bottom: 30px;
  }
}

/*----------------------------------------*/
/*  2.1 accordion
/*----------------------------------------*/
.rs-accordion-one .rs-accordion-item {
  background: var(--rs-white);
  padding-top: 25px;
  padding-bottom: 25px;
  padding-inline-start: 25px;
  padding-inline-end: 25px;
  border-radius: 6px;
}

@media only screen and (max-width: 575px) {
  .rs-accordion-one .rs-accordion-item {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

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

.rs-accordion-one .accordion-button {
  background-color: transparent;
  padding: 0;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline-end: 50px;
  padding-inline-start: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--rs-title-primary);
  text-align: start;
}

@media only screen and (max-width: 767px) {
  .rs-accordion-one .accordion-button {
    font-size: 20px;
    padding-inline-end: 30px;
  }
}

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

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

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

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

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

.rs-accordion-one .accordion-icon {
  position: absolute;
  inset-inline-end: 0px;
  transition: all 0.4s ease-out 0s;
}

.rs-accordion-one .accordion-icon svg {
  width: 13px;
  transform: rotate(-90deg);
}

[dir=rtl] .rs-accordion-one .accordion-icon svg {
  transform: rotate(90deg);
}

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

.rs-accordion-one .accordion-item {
  padding-top: 22px;
  padding-bottom: 0;
  padding-inline-end: 22px;
  padding-inline-start: 0;
  border: 0;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}

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

.rs-accordion-one .accordion-body {
  color: var(--rs-text-primary);
  padding: 14px 30px 0 0px;
  line-height: 28px;
}

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

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

.rs-accordion-two .accordion-button {
  padding: 0;
  box-shadow: none;
  font-size: 20px;
  font-weight: 500;
  color: var(--rs-title-primary);
  text-align: start;
  padding-top: 23px;
  padding-bottom: 20px;
  padding-inline-start: 25px;
  padding-inline-end: 25px;
  border-radius: 6px;
  background: var(--rs-white);
  transition: 0.3s;
}

.rs-accordion-two .accordion-button:hover {
  background: var(--rs-theme-blue);
  color: var(--rs-white);
}

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

@media only screen and (max-width: 767px) {
  .rs-accordion-two .accordion-button {
    font-size: 20px;
    padding-inline-end: 30px;
  }
}

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

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

.rs-accordion-two .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--rs-white);
  background: var(--rs-theme-blue);
  border-radius: 6px 6px 0px 0;
}

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

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

.rs-accordion-two .accordion-icon {
  position: absolute;
  inset-inline-end: 30px;
  transition: all 0.4s ease-out 0s;
}

.rs-accordion-two .accordion-icon svg {
  width: 13px;
  transform: rotate(-90deg);
}

[dir=rtl] .rs-accordion-two .accordion-icon svg {
  transform: rotate(90deg);
}

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

.rs-accordion-two .accordion-item {
  padding-top: 22px;
  padding-bottom: 0;
  padding-inline-end: 22px;
  padding-inline-start: 0;
  border: 0;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}

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

.rs-accordion-two .accordion-body {
  color: var(--rs-text-primary);
  padding-top: 20px;
  padding-inline-start: 25px;
  padding-inline-end: 30px;
  padding-bottom: 30px;
  line-height: 28px;
  background: var(--rs-white);
  border-radius: 0 0 6px 6px;
}

@media only screen and (max-width: 1199px) {
  .rs-accordion-two .accordion-body {
    padding-top: 20px;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    padding-bottom: 20px;
  }
}

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

.rs-accordion-three .accordion-button {
  padding: 0;
  box-shadow: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--rs-title-primary);
  text-align: start;
  padding-top: 23px;
  padding-bottom: 20px;
  padding-inline-start: 25px;
  padding-inline-end: 25px;
  border-radius: 6px;
  background: var(--rs-white);
  transition: 0.3s;
}

.rs-accordion-three .accordion-button:hover {
  color: var(--rs-theme-blue);
}

.rs-accordion-three .accordion-button:hover .accordion-icon svg path {
  fill: var(--rs-theme-blue);
}

@media only screen and (max-width: 767px) {
  .rs-accordion-three .accordion-button {
    font-size: 20px;
    padding-inline-end: 30px;
  }
}

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

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

.rs-accordion-three .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--rs-theme-blue);
  border-radius: 6px 6px 0px 0;
  padding-bottom: 0px;
}

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

.rs-accordion-three .accordion-button:not(.collapsed) .accordion-icon svg path {
  fill: var(--rs-theme-blue);
}

.rs-accordion-three .accordion-icon {
  position: absolute;
  inset-inline-end: 30px;
  transition: all 0.4s ease-out 0s;
}

.rs-accordion-three .accordion-icon svg {
  width: 13px;
  transform: rotate(-90deg);
}

[dir=rtl] .rs-accordion-three .accordion-icon svg {
  transform: rotate(90deg);
}

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

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

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

.rs-accordion-three .accordion-body {
  color: var(--rs-text-primary);
  padding-top: 10px;
  padding-inline-start: 25px;
  padding-inline-end: 30px;
  padding-bottom: 20px;
  line-height: 28px;
  background: var(--rs-white);
  border-radius: 0 0 6px 6px;
  font-style: italic;
}

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

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

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

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

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

/*----------------------------------------*/
/*  2.6 Buttons
/*----------------------------------------*/
.rs-btn {
  font-size: 15px;
  color: var(--rs-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  transition: all 0.4s ease-out 0s;
  border-radius: 100px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--rs-theme-blue);
}

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

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

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

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

.rs-btn:hover.has-icon .has-rotate svg {
  transform: rotate(90deg);
}

.rs-btn:hover .btn-text-wrap .text-default {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}

.rs-btn:hover .btn-text-wrap .text-hover {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.rs-btn.has-text {
  padding: 0;
  width: unset;
  height: unset;
  background: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

.rs-btn.has-text.is-text-blue {
  color: var(--rs-title-tertiary);
}

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

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

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

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

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

.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-box.is-black svg path {
  fill: var(--rs-black);
}

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

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

.rs-btn.hover-white:hover {
  background: #0050a4;
  color: #fff;
}

.rs-btn.hover-white:hover .icon-box svg path {
  fill: #fff;
}

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

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

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

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

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

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

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

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

.rs-btn.hover-yellow.has-icon:hover {
  background: var(--rs-theme-yellow);
  color: var(--rs-black);
  border-color: var(--rs-theme-yellow);
}

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

.rs-btn.hover-green-two.has-icon:hover {
  background: var(--rs-theme-green-two);
  color: var(--rs-white);
  border-color: var(--rs-theme-green-two);
}

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

.rs-btn.hover-cyan.has-icon:hover {
  background: var(--rs-theme-light-cyan);
  color: var(--rs-white);
  border-color: var(--rs-theme-light-cyan);
}

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

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

.rs-btn.hover-dark-cyan:hover {
  background: var(--rs-theme-cyan);
  border-color: var(--rs-theme-cyan);
}

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

.rs-btn.is-transparent {
  background: transparent;
  border: 1px solid #0050a4;
}

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

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

.rs-btn.has-text-underline {
  text-decoration: underline;
  color: var(--rs-title-primary);
  overflow: visible;
}

.rs-btn.has-border {
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: var(--rs-theme-primary);
  border-radius: 0;
}

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

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

.rs-btn.has-rotate {
  transform: rotate(-45deg);
}

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

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

.rs-btn.has-theme-red {
  /* background: var(--rs-theme-red); */
  background: #03a9f4;
  color: var(--rs-white);
}

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

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

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

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

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

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

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

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

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

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

.rs-btn .btn-text-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
}

.rs-btn .btn-text-wrap .text-default {
  position: relative;
  display: block;
  transition: 0.3s;
  transform: translateY(-1px);
}

.rs-btn .btn-text-wrap .text-hover {
  position: absolute;
  top: 100%;
  display: block;
  transition: 0.3s;
  transform: translateY(0px);
}

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

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

.rs-rotate-btn {
  width: 180px;
  height: 180px;
  position: relative;
}

.rs-rotate-btn:hover .rs-text-circle {
  animation-play-state: paused;
}

.rs-rotate-btn .rs-circle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transform: translate(-50%, -50%);
  background: var(--rs-theme-primary);
  border-radius: 50%;
  text-align: center;
  padding: 20px;
  z-index: 1;
  transition: 0.3s;
}

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

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

.rs-rotate-btn .rs-circle-btn svg path {
  fill: var(--rs-theme-secondary);
}

.rs-rotate-btn .rs-text-circle-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.rs-rotate-btn .rs-text-circle {
  animation: rotate-infinite 30s infinite linear;
  width: 100%;
  height: 100%;
  position: relative;
}

.rs-rotate-btn .rs-text-circle span {
  position: absolute;
  height: 100%;
  width: 100%;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
  color: var(--rs-title-primary);
}

.rs-rotate-btn .rs-text-circle.is-text-white span {
  color: var(--rs-white);
}

.rs-play-btn {
  width: 70px;
  height: 70px;
  font-size: 20px;
  background: var(--rs-theme-primary);
  display: inline-flex;
  border-radius: 50%;
  color: var(--rs-white);
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out 0s;
}

.rs-play-btn.is-large {
  width: 90px;
  height: 90px;
  font-size: 30px;
}

.rs-play-btn.is-large::before {
  width: 90px;
  height: 90px;
}

.rs-play-btn.is-medium {
  width: 80px;
  height: 80px;
  font-size: 24px;
}

.rs-play-btn.is-medium::before {
  width: 80px;
  height: 80px;
}

.rs-play-btn.is-small {
  width: 40px;
  height: 40px;
  font-size: 13px;
}

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

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

.rs-play-btn.is-white::before {
  background: var(--rs-white);
}

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

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

.rs-play-btn.has-blur {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
}

.rs-play-btn.hover-yellow:hover {
  background: var(--rs-theme-yellow);
  border-color: var(--rs-theme-yellow);
  color: var(--rs-black);
}

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

.rs-play-btn.hover-cyan:hover {
  background: var(--rs-theme-light-cyan);
  border-color: var(--rs-theme-light-cyan);
  color: var(--rs-white);
}

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

.rs-play-btn::before {
  background: var(--rs-theme-primary);
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  border-radius: 50%;
  -webkit-animation: rs-pulse-border 1500ms ease-out infinite;
  animation: rs-pulse-border 1500ms ease-out infinite;
}

.rs-play-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  border-radius: 50%;
  transition: all 200ms;
}

.rs-play-btn.has-bg-white {
  background-color: rgba(255, 255, 255, 0.18);
}

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

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

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

.rs-btn-circle:hover i {
  color: var(--rs-black);
}

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

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

.rs-btn-circle i {
  font-size: 25px;
  color: var(--rs-white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.rs-square-btn.has-transparent {
  background: transparent;
  padding: unset;
}

.rs-square-btn.has-transparent:hover {
  background: transparent;
}

/*----------------------------------------*/
/*  2.7 Color Short Code
/*----------------------------------------*/
.rs-text-primary {
  color: var(--rs-primary);
}

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

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

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

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

.rating-color {
  color: #FFB21D;
}

.text-blue {
  color: var(--rs-title-tertiary);
}

.text-yellow {
  color: var(--rs-theme-yellow);
}

/*----------------------------------------*/
/*  2. 9 counter
/*----------------------------------------*/
.rs-counter-one .rs-counter-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

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

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

.rs-counter-one .rs-counter-item {
  display: flex;
  border: 1px solid var(--rs-border-primary);
  padding: 20px;
  gap: 20px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

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

@media only screen and (max-width: 991px) {
  .rs-counter-one .rs-counter-item {
    flex-wrap: wrap;
  }
}

.rs-counter-one .rs-counter-shape {
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  transform: translateY(-50%) rotateY(180deg);
}

.rs-counter-one .rs-counter-icon svg {
  width: 33px;
  height: 33px;
}

.rs-counter-one .rs-counter-icon svg path {
  fill: var(--rs-theme-green);
}

.rs-counter-one .rs-counter-number,
.rs-counter-one .prefix {
  font-size: 40px;
  color: var(--rs-title-primary);
  font-weight: 600;
  line-height: 0.9;
  font-family: var(--rs-ff-title);
}

@media only screen and (max-width: 1600px) {

  .rs-counter-one .rs-counter-number,
  .rs-counter-one .prefix {
    font-size: 30px;
  }
}

.rs-counter-one .rs-counter-number-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

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

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

.rs-counter-two .rs-counter-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(66.21deg, #003A65 11.06%, rgba(0, 58, 101, 0.6) 100%);
  border-radius: 16px;
}

.rs-counter-two.rs-counter-wrapper {
  padding-top: 42px;
  padding-bottom: 42px;
  padding-inline-start: 40px;
  padding-inline-end: 40px;
  border-radius: 16px;
  margin-bottom: 35px;
}

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

.rs-counter-two .rs-counter-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.rs-counter-two .rs-counter-item {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.rs-counter-two .rs-counter-item:not(:last-child)::before {
  position: absolute;
  content: "";
  top: 50%;
  inset-inline-end: -75px;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

@media only screen and (max-width: 1600px) {
  .rs-counter-two .rs-counter-item:not(:last-child)::before {
    inset-inline-end: -55px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-counter-two .rs-counter-item:not(:last-child)::before {
    content: none;
  }
}

.rs-counter-two .rs-counter-item:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  clip-path: polygon(0% 0%, 0 1%, 100% 50%, 0 100%, 0% 100%);
  inset-inline-end: -80px;
  top: 50%;
  transform: translateY(-50%);
}

[dir=rtl] .rs-counter-two .rs-counter-item:not(:last-child)::after {
  transform: translateY(-50%) rotateY(-180deg);
}

@media only screen and (max-width: 1600px) {
  .rs-counter-two .rs-counter-item:not(:last-child)::after {
    inset-inline-end: -60px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-counter-two .rs-counter-item:not(:last-child)::after {
    content: none;
  }
}

.rs-counter-two .rs-counter-item:nth-child(2)::before {
  inset-inline-end: -80px;
}

@media only screen and (max-width: 1600px) {
  .rs-counter-two .rs-counter-item:nth-child(2)::before {
    inset-inline-end: -60px;
  }
}

.rs-counter-two .rs-counter-item:nth-child(2)::after {
  inset-inline-end: -77px;
  top: 50%;
  transform: rotateY(180deg) translateY(-50%);
}

[dir=rtl] .rs-counter-two .rs-counter-item:nth-child(2)::after {
  transform: rotateY(360deg) translateY(-50%);
}

@media only screen and (max-width: 1600px) {
  .rs-counter-two .rs-counter-item:nth-child(2)::after {
    inset-inline-end: -57px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-counter-two .rs-counter-item {
    flex-wrap: wrap;
  }
}

.rs-counter-two .rs-counter-icon svg {
  width: 50px;
  height: 50px;
}

@media only screen and (max-width: 1199px) {
  .rs-counter-two .rs-counter-icon svg {
    width: 40px;
    height: 40px;
  }
}

.rs-counter-two .rs-counter-icon svg path {
  fill: var(--rs-theme-yellow);
}

.rs-counter-two .rs-counter-number,
.rs-counter-two .prefix {
  font-size: 40px;
  color: var(--rs-white);
  font-weight: 600;
  line-height: 0.9;
  font-family: var(--rs-ff-title);
}

@media only screen and (max-width: 1600px) {

  .rs-counter-two .rs-counter-number,
  .rs-counter-two .prefix {
    font-size: 30px;
  }
}

@media only screen and (max-width: 480px) {

  .rs-counter-two .rs-counter-number,
  .rs-counter-two .prefix {
    font-size: 25px;
  }
}

.rs-counter-two .rs-counter-number-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

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

.rs-counter-three .rs-counter-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: var(--rs-white);
  padding-inline: 50px;
  padding-top: 45px;
  padding-bottom: 45px;
  border-radius: 12px;
}

@media only screen and (max-width: 1199px) {
  .rs-counter-three .rs-counter-wrapper {
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

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

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

.rs-counter-three .rs-counter-item {
  position: relative;
  z-index: 1;
}

.rs-counter-three .rs-counter-number,
.rs-counter-three .prefix {
  font-size: 40px;
  color: var(--rs-title-tertiary);
  font-weight: 600;
  line-height: 0.9;
  font-family: var(--rs-ff-title);
}

@media only screen and (max-width: 1600px) {

  .rs-counter-three .rs-counter-number,
  .rs-counter-three .prefix {
    font-size: 30px;
  }
}

.rs-counter-three .rs-counter-number-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 20px;
}

.rs-counter-three .rs-counter-title {
  color: var(--rs-title-tertiary);
  margin-bottom: 5pX;
}

/*----------------------------------------*/
/*  2.15 Offcanvas
/*----------------------------------------*/
.offcanvas-area {
  background: var(--rs-white) none repeat scroll 0 0;
  position: fixed;
  inset-inline-end: -100%;
  top: 0;
  width: 400px;
  height: 100%;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  transition: all 0.5s ease-in-out;
}

.offcanvas-area ::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-width: 575px) {
  .offcanvas-area {
    width: 100%;
  }
}

.offcanvas-area.info-open {
  inset-inline-end: 0%;
}

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

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

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

.offcanvas-area.has-theme-red .mean-container .mean-nav ul li a:hover,
.offcanvas-area.has-theme-red .mean-container .mean-nav ul li span:hover {
  color: var(--rs-theme-red);
}

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

.offcanvas-area.has-theme-red .mean-container .mean-nav ul li.dropdown-opened>a.mean-expand.mean-clicked,
.offcanvas-area.has-theme-red .mean-container .mean-nav ul li.dropdown-opened>span.mean-expand.mean-clicked {
  background: var(--rs-theme-red);
}

.offcanvas-area.has-theme-red .mean-container .mean-nav ul li a.mean-expand:hover,
.offcanvas-area.has-theme-red .mean-container .mean-nav ul li span.mean-expand:hover {
  background: var(--rs-theme-red);
  color: var(--rs-white);
}

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

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

.offcanvas-area.has-theme-cyan .mean-container .mean-nav ul li a:hover,
.offcanvas-area.has-theme-cyan .mean-container .mean-nav ul li span:hover {
  color: var(--rs-theme-cyan);
}

.offcanvas-area.has-theme-cyan .mean-container .mean-nav ul li.dropdown-opened>a,
.offcanvas-area.has-theme-cyan .mean-container .mean-nav ul li.dropdown-opened>span {
  color: var(--rs-theme-cyan);
}

.offcanvas-area.has-theme-cyan .mean-container .mean-nav ul li.dropdown-opened>a.mean-expand.mean-clicked,
.offcanvas-area.has-theme-cyan .mean-container .mean-nav ul li.dropdown-opened>span.mean-expand.mean-clicked {
  background: var(--rs-theme-cyan);
}

.offcanvas-area.has-theme-cyan .mean-container .mean-nav ul li a.mean-expand:hover,
.offcanvas-area.has-theme-cyan .mean-container .mean-nav ul li span.mean-expand:hover {
  background: var(--rs-theme-cyan);
  color: var(--rs-white);
}

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

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

.offcanvas-area.has-theme-green .mean-container .mean-nav ul li a:hover,
.offcanvas-area.has-theme-green .mean-container .mean-nav ul li span:hover {
  color: var(--rs-theme-green);
}

.offcanvas-area.has-theme-green .mean-container .mean-nav ul li.dropdown-opened>a,
.offcanvas-area.has-theme-green .mean-container .mean-nav ul li.dropdown-opened>span {
  color: var(--rs-theme-green);
}

.offcanvas-area.has-theme-green .mean-container .mean-nav ul li.dropdown-opened>a.mean-expand.mean-clicked,
.offcanvas-area.has-theme-green .mean-container .mean-nav ul li.dropdown-opened>span.mean-expand.mean-clicked {
  background: var(--rs-theme-green);
}

.offcanvas-area.has-theme-green .mean-container .mean-nav ul li a.mean-expand:hover,
.offcanvas-area.has-theme-green .mean-container .mean-nav ul li span.mean-expand:hover {
  background: var(--rs-theme-green);
  color: var(--rs-white);
}

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

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

.offcanvas-area.has-theme-green-two .mean-container .mean-nav ul li a:hover,
.offcanvas-area.has-theme-green-two .mean-container .mean-nav ul li span:hover {
  color: var(--rs-theme-green-two);
}

.offcanvas-area.has-theme-green-two .mean-container .mean-nav ul li.dropdown-opened>a,
.offcanvas-area.has-theme-green-two .mean-container .mean-nav ul li.dropdown-opened>span {
  color: var(--rs-theme-green-two);
}

.offcanvas-area.has-theme-green-two .mean-container .mean-nav ul li.dropdown-opened>a.mean-expand.mean-clicked,
.offcanvas-area.has-theme-green-two .mean-container .mean-nav ul li.dropdown-opened>span.mean-expand.mean-clicked {
  background: var(--rs-theme-green-two);
}

.offcanvas-area.has-theme-green-two .mean-container .mean-nav ul li a.mean-expand:hover,
.offcanvas-area.has-theme-green-two .mean-container .mean-nav ul li span.mean-expand:hover {
  background: var(--rs-theme-green-two);
  color: var(--rs-white);
}

.offcanvas-area.has-theme-yellow .mean-container .mean-nav ul li.dropdown-opened>a.mean-expand.mean-clicked i,
.offcanvas-area.has-theme-yellow .mean-container .mean-nav ul li.dropdown-opened>span.mean-expand.mean-clicked i {
  color: var(--rs-black);
}

.offcanvas-logo a img {
  width: 150px;
}

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

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

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

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

.offcanvas-title-meta {
  color: var(--rs-title-primary);
  margin-bottom: 20px;
  font-size: 20px;
}

.offcanvas-text p {
  margin-bottom: 25px;
}

.offcanvas-social {
  margin-bottom: 40px;
}

.offcanvas-social ul li {
  display: inline-block;
}

.offcanvas-social ul li:not(:last-child) {
  margin-right: 5px;
}

.offcanvas-social ul li a {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--rs-border-primary);
  color: #585B6F;
  font-size: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.offcanvas-social ul li a:hover {
  background: var(--rs-theme-blue);
  color: var(--rs-white);
  border-color: var(--rs-theme-blue);
}

.offcanvas-social.has-theme-cyan ul li a:hover {
  background: var(--rs-theme-light-cyan);
  border-color: var(--rs-theme-light-cyan);
}

.offcanvas-social.has-theme-red ul li a:hover {
  background: var(--rs-theme-red);
  border-color: var(--rs-theme-red);
}

.offcanvas-social.has-theme-green ul li a:hover {
  background: var(--rs-theme-green);
  border-color: var(--rs-theme-green);
}

.offcanvas-social.has-theme-green-two ul li a:hover {
  background: var(--rs-theme-green-two);
  border-color: var(--rs-theme-green-two);
}

.offcanvas-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay:hover {
  cursor: url(../images/shape/cross-out.webp), pointer;
}

.offcanvas-overlay.overlay-open {
  opacity: 1;
  visibility: visible;
}

.offcanvas-contact ul li:not(:last-child) {
  margin-bottom: 20px;
}

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

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

.offcanvas-contact ul li:hover svg path {
  fill: var(--rs-theme-blue);
}

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

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

.offcanvas-contact-icon svg path {
  fill: #4C4C4C;
  transition: 0.5s;
}

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

.offcanvas-contact.has-theme-cyan ul li:hover svg path {
  fill: var(--rs-theme-light-cyan);
}

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

.offcanvas-contact.has-theme-red ul li:hover svg path {
  fill: var(--rs-theme-red);
}

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

.offcanvas-contact.has-theme-green ul li:hover svg path {
  fill: var(--rs-theme-green);
}

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

.offcanvas-contact.has-theme-green-two ul li:hover svg path {
  fill: var(--rs-theme-green-two);
}

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

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

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

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

.offcanvas-close.has-theme-cyan {
  background: var(--rs-theme-light-cyan);
}

.offcanvas-close.has-theme-red {
  background: var(--rs-theme-red);
}

.offcanvas-close.has-theme-green {
  background: var(--rs-theme-green);
}

.offcanvas-close.has-theme-green-two {
  background: var(--rs-theme-green-two);
}

.offcanvas-close-icon {
  line-height: 1;
  color: var(--rs-black);
}

.offcanvas-close-icon .offcanvas-m-lines {
  position: relative;
  display: block;
  height: 14px;
  width: 14px;
}

.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--1 {
  top: 6px;
  transform: rotate(45deg);
}

.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--3 {
  opacity: 0;
  opacity: 0;
}

.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--2 {
  top: 6px;
  transform: rotate(-45deg);
}

.offcanvas-close-icon .offcanvas-m-line {
  position: absolute;
  inset-inline-start: 0;
  height: 2px;
  width: 100%;
  background-color: var(--rs-white);
  transition: top 0.15s ease, transform 0.3s ease;
}

.offcanvas-close-icon .offcanvas-m-line.line--1 {
  top: 0;
}

.offcanvas-close-icon .offcanvas-m-line.line--2 {
  top: 5px;
}

.offcanvas-close-icon .offcanvas-m-line.line--3 {
  bottom: 0;
  bottom: 0;
}

.offcanvas-close-icon:hover .offcanvas-m-line {
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}

.offcanvas-close-icon:hover .offcanvas-m-line:nth-of-type(2) {
  animation-delay: 0.1s;
}

/*----------------------------------------*/
/*  2.22 Section Title  
/*----------------------------------------*/
.section-title {
  color: var(--rs-title-primary);
}

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

.section-title.has-theme-blue {
  color: var(--rs-title-tertiary);
}

.section-title-two {
  font-size: 46px;
  font-family: "Prata", serif;
  font-weight: 600;
  color: #021E40;
  line-height: 1.39;
}

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

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

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

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

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

.section-subtitle {
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  color: var(--rs-title-primary);
  margin-bottom: 10px;
  display: inline-block;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-subtitle svg {
  width: 24px;
  height: 24px;
}

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

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

.section-subtitle.has-theme-blue {
  color: var(--rs-title-tertiary);
}

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

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

@media only screen and (max-width: 575px) {
  .section-subtitle.has-theme-red {
    font-size: 13px;
  }
}

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

@media only screen and (max-width: 575px) {
  .section-subtitle.has-theme-green {
    font-size: 13px;
  }
}

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

@media only screen and (max-width: 575px) {
  .section-subtitle.has-theme-green-two {
    font-size: 13px;
  }
}

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

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

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

@media only screen and (max-width: 575px) {
  .section-subtitle.has-theme-cyan {
    font-size: 13px;
  }
}

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

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

.section-subtitle.has-dark-grey {
  color: var(--rs-text-primary);
}

.section-desc.is-white {
  color: rgba(255, 255, 255, 0.8);
}

/*----------------------------------------*/
/*  2.5 Breadcrumb
/*----------------------------------------*/
.rs-breadcrumb-one {
  padding-top: 190px;
  padding-bottom: 115px;
  position: relative;
  z-index: 1;
  padding-inline: 150px;
}

@media only screen and (max-width: 1600px) {
  .rs-breadcrumb-one {
    padding-inline: 15px;
  }
}

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

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

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

.rs-breadcrumb-one .rs-breadcrumb-shape {
  position: absolute;
  inset-inline-end: 140px;
  bottom: 60px;
}

[dir=rtl] .rs-breadcrumb-one .rs-breadcrumb-shape {
  transform: rotateY(180deg);
}

@media only screen and (max-width: 991px) {
  .rs-breadcrumb-one .rs-breadcrumb-shape {
    inset-inline-end: 30px;
  }
}

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

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

.rs-breadcrumb-one .rs-breadcrumb-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 25, 44, 0) -3%, #00192C 133.75%);
}

.rs-breadcrumb-one .rs-breadcrumb-title {
  font-size: 56px;
  line-height: 1.12;
  color: var(--rs-white);
  font-weight: 500;
  margin-top: 20px;
}

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

@media only screen and (max-width: 767px) {
  .rs-breadcrumb-one .rs-breadcrumb-title {
    font-size: 45px;
    line-height: 1.2;
  }
}

@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-line {
  width: 482px;
  position: relative;
  display: inline-block;
  margin-top: 25px;
  margin-bottom: 20px;
  border-color: rgba(255, 255, 255, 0.15);
  border-style: solid;
  border-width: 0px 0px 1px 0px;
}

@media only screen and (max-width: 767px) {
  .rs-breadcrumb-one .rs-breadcrumb-line {
    width: 100%;
  }
}

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

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

.rs-breadcrumb-one .rs-breadcrumb-menu ul li {
  list-style: none;
  display: flex;
  gap: 8px;
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li:last-child {
  color: white;
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

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

.rs-breadcrumb-one .rs-breadcrumb-menu ul li .rs-breadcrumb-icon svg {
  width: 16px;
  height: 16px;
}

[dir=rtl] .rs-breadcrumb-one .rs-breadcrumb-menu ul li .rs-breadcrumb-icon svg {
  transform: rotateY(180deg);
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li .rs-breadcrumb-icon svg path {
  fill: var(--rs-white);
}

.rs-breadcrumb-one .rs-breadcrumb-desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

@media only screen and (max-width: 767px) {
  .rs-breadcrumb-one .rs-breadcrumb-desc {
    max-width: 100%;
  }
}

/*----------------------------------------
   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: 8px;
  height: 8px;
  background: #DBDEE1;
  position: relative;
  transform: unset;
  opacity: unset;
  margin: 3px 13px;
}

.rs-pagination.swiper-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% + 17px);
  height: calc(100% + 17px);
  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-blue);
}

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

.rs-pagination.swiper-pagination.has-before-none .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 3px 6px;
}

.rs-pagination.swiper-pagination.has-before-none .swiper-pagination-bullet::before {
  content: none;
}

.rs-pagination.swiper-pagination.has-theme-yellow .swiper-pagination-bullet {
  border: 1px solid var(--rs-theme-yellow);
}

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

.rs-pagination.swiper-pagination.has-theme-yellow .swiper-pagination-bullet:hover {
  background: var(--rs-theme-green);
  border-color: var(--rs-theme-green);
}

.rs-pagination.swiper-pagination.has-theme-blue .swiper-pagination-bullet {
  border: 1px solid var(--rs-theme-yellow);
}

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

.rs-pagination.swiper-pagination.has-theme-blue .swiper-pagination-bullet:hover {
  background: var(--rs-theme-blue);
  border-color: var(--rs-theme-blue);
}

.rs-pagination.swiper-pagination.has-theme-red .swiper-pagination-bullet {
  border: 1px solid var(--rs-theme-red);
}

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

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

.rs-pagination.swiper-pagination.has-theme-green-two .swiper-pagination-bullet {
  border: 1px solid var(--rs-theme-green-two);
}

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

.rs-pagination.swiper-pagination.has-theme-green-two .swiper-pagination-bullet:hover {
  background: var(--rs-theme-green-two);
  border-color: var(--rs-theme-green-two);
}

.rs-pagination.swiper-pagination.has-theme-cyan .swiper-pagination-bullet {
  border: 1px solid var(--rs-theme-light-cyan);
}

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

.rs-pagination.swiper-pagination.has-theme-cyan .swiper-pagination-bullet:hover {
  background: var(--rs-theme-light-cyan);
  border-color: var(--rs-theme-light-cyan);
}

.rs-pagination.swiper-pagination.has-transparent .swiper-pagination-bullet {
  background: transparent;
}

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

.common-pagination ul {
  display: inline-flex;
  gap: 10px;
}

.common-pagination ul li {
  list-style: none;
}

.common-pagination ul li.current {
  background: var(--rs-theme-blue);
}

.common-pagination ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rs-border-primary);
  color: var(--rs-black);
  border-radius: 5px;
  position: relative;
  background: var(--rs-bg-secondary);
}

.common-pagination ul li a:hover {
  background: var(--rs-theme-yellow);
  border-color: var(--rs-theme-yellow);
  color: var(--rs-black);
}

.common-pagination ul li a.current {
  background: var(--rs-theme-blue);
  color: var(--rs-white);
  border: none;
}

.common-pagination ul li a.is-next::before {
  position: absolute;
  font-family: remixicon !important;
  font-size: 16px;
  line-height: 1;
  opacity: 1;
  content: "\ea6b";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

[dir=rtl] .common-pagination ul li a.is-next::before {
  transform: translate(-50%, -50%) rotateY(180deg);
}

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

input[type=checkbox]:checked~label::before {
  visibility: visible;
  opacity: 1;
}

input[type=checkbox]~label {
  position: relative;
  padding-inline-start: 25px;
  color: var(--rs-white);
  font-size: 16px;
}

input[type=checkbox]~label::after {
  position: absolute;
  content: "";
  top: 4px;
  inset-inline-start: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: -1;
  transition: all 0.2s linear;
  border-radius: 2px;
}

input[type=checkbox]~label::before {
  position: absolute;
  content: "\eb7a";
  top: 2px;
  inset-inline-start: -2px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--rs-black);
  transition: all 0.2s linear;
  font-family: remixicon !important;
  font-size: 10px;
}

input[type=checkbox]~label:hover {
  cursor: pointer;
}

/*----------------------------------------*/
/*  2.25 social
/*----------------------------------------*/
.theme-social {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.theme-social a {
  color: var(--rs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 18px;
  background-color: var(--rs-theme-blue);
  transition: 0.5s;
  border-radius: 50%;
}

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

.theme-social svg {
  width: 16px;
  height: 16px;
}

.theme-social.has-medium a {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.theme-social.has-transparent a {
  background: transparent;
  color: #fff;
  width: unset;
  height: unset;
  border-radius: 0;
}

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

.theme-social.has-border a {
  border: 1px solid var(--rs-border-primary);
}

.theme-social.rs-social-links a {
  width: 32px;
  height: 32px;
  border-radius: 3px;
}

.theme-social.rs-social-links a:hover {
  background: 0.5;
}

.theme-social.rs-social-links a.is-facebook {
  background: #1559C2;
}

.theme-social.rs-social-links a.is-instagram {
  background: #E1306C;
}

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

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

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

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

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

.theme-social.has-theme-green a {
  background: #ffffff;
}

.theme-social.has-theme-green a svg path {
  transition: 0.3s;
}

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

.theme-social.has-theme-green a:hover svg path {
  fill: var(--rs-black);
}

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

.theme-social.has-theme-green-two a svg path {
  transition: 0.3s;
}

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

.theme-social.has-theme-green-two a:hover svg path {
  fill: var(--rs-black);
}

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

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

.theme-social.has-radius-none a {
  border-radius: 50%;
}

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

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

.theme-social.hover-yellow a:hover svg path {
  fill: var(--rs-black);
}

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

.theme-social.hover-light-cyan a:hover svg path {
  fill: var(--rs-white);
}

/*----------------------------------------*/
/*  2.4 Back to top
/*----------------------------------------*/
#backtotop-wrap {
  text-align: center;
  bottom: 20px;
  cursor: pointer;
  display: none;
  position: fixed;
  inset-inline-end: 20px;
  z-index: 10;
  border-radius: 50%;
  background: var(--rs-theme-blue);
  padding: 1px;
  transition: all linear 0.5s;
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
}

#backtotop-wrap .scrollprogress .progress-circle {
  transition: stroke-dashoffset 0.5s ease;
  transition: stroke 0.5s ease;
}

#backtotop-wrap .arrowicon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#backtotop-wrap svg path {
  fill: var(--rs-white);
  transition: all linear 0.5s;
}

.rs-backtotop.has-theme-cyan {
  background: var(--rs-theme-light-cyan) !important;
}

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

.rs-backtotop.has-theme-green {
  background: var(--rs-theme-green) !important;
}

/*----------------------------------------*/
/*  2.2 Animations
/*----------------------------------------*/
.animate-play {
  position: relative;
  z-index: 5;
}

.animate-play::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  border: 1px solid rgb(134, 134, 134);
  top: 0;
  left: 0;
  right: 0px;
  bottom: 0px;
  z-index: 0;
  animation-name: popupBtn;
  animation-duration: 1.6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: -1;
}

.animate-play::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  border: 1px solid rgb(134, 134, 134);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 0;
  animation-name: popupBtn;
  animation-duration: 1.8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: -1;
}

@keyframes qode-draw {

  0%,
  100% {
    -webkit-clip-path: inset(-2px 0);
    clip-path: inset(-2px 0);
  }

  42% {
    -webkit-clip-path: inset(-2px 0 -2px 100%);
    clip-path: inset(-2px 0 -2px 100%);
  }

  43% {
    -webkit-clip-path: inset(-2px 100% -2px 0);
    clip-path: inset(-2px 100% -2px 0);
  }
}

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

  100% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rs-left-right {
  0% {
    transform: translateX(-200px);
    -webkit-transform: translateX(-200px);
  }

  0% {
    transform: translateX(20px);
    -webkit-transform: translateX(20px);
  }
}

@keyframes rs-pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes rs-fold {
  0% {
    transform: rotateY(0);
  }

  50% {
    transform: rotateY(90deg);
  }

  100% {
    transform: rotateY(0);
  }
}

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

  10% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  10% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes updown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }

  100% {
    transform: scale(1.07);
    -webkit-transform: scale(1.07);
  }
}

@keyframes btnHoverEffectReverse {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

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

  30% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

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

  0% {
    transform: translateX(-50%);
  }
}

/* marquee left */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

  100% {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
  }
}

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

  100% {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
  }
}

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

  100% {
    transform: scale(1.1);
  }
}

.popup-circle:before {
  content: "";
  position: relative;
  display: block;
  top: -14px;
  inset-inline-start: -14px;
  width: 35px;
  height: 35px;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: #E40101;
  animation: rs-pulse 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.popup-circle:after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #E40101;
  border-radius: 50%;
  animation: circle 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@keyframes rs-pulse {
  0% {
    transform: scale(0.33);
  }

  80%,
  100% {
    opacity: 0;
  }
}

@keyframes popup-circle {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

@keyframes textRotatingOut {
  from {
    transform: translateY(0) rotateX(0);
    opacity: 1;
  }

  to {
    transform: translateY(-70%) rotateX(100deg);
    opacity: 0;
  }
}

@keyframes textRotatingIn {
  from {
    transform: translateY(70%) rotateX(-100deg);
    opacity: 0;
  }

  to {
    transform: translateY(0) rotateX(0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rs-slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rs-skew {

  from,
  to {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(0.7, 1.1);
  }

  50% {
    transform: scale(1.1, 0.7);
  }

  75% {
    transform: scale(0.95, 1.05);
  }
}

@keyframes rs-rotate-anim {
  0% {
    -webkit-transform: scale(0.7) rotate(0deg);
    transform: scale(0.7) rotate(0deg);
  }

  40% {
    -webkit-transform: scale(0.7) rotate(160deg);
    transform: scale(0.7) rotate(160deg);
  }

  80% {
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }
}

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

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

.has-ff {
  font-family: "Prata", serif;
}

.h-55 {
  height: 55px;
}

.height-50 {
  height: 50px;
}

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

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

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

.has-separator {
  position: relative;
}

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

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

/* gap */
.rs-gutter-24 {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.gap-05 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.rs-section-border-wrapper {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .rs-section-border-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

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

.rs-section-border-wrapper .section-border {
  padding-inline-end: 20px;
}

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

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

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

.radius-6 {
  border-radius: 6px;
}

.radius-15 {
  border-radius: 15px;
}

.margin-15 {
  margin-inline-start: 15px;
}

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

.margin-10 {
  margin-inline-start: 10px;
}

@media only screen and (max-width: 1366px) {
  .margin-10 {
    margin-inline-start: 0px;
  }
}

.timeline-divider {
  position: absolute;
  width: 10px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-divider::before {
  content: "";
  border: 1px solid var(--rs-theme-primary);
  border-radius: 10px;
  position: absolute;
  inset: 0;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--rs-border-tertiary);
}

.timeline-divider .divider-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: var(--rs-theme-primary);
  z-index: 1;
  border-radius: 10px;
}

.timeline-divider .divider-circle {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  z-index: 2;
  background-color: var(--rs-white);
  border: 3px solid var(--rs-theme-primary);
}

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

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

.loader .loader-container.has-theme-cyan::before {
  border-color: var(--rs-theme-light-cyan);
}

.loader .loader-container.has-theme-red::before {
  border-color: var(--rs-theme-red);
}

.loader .loader-container.has-theme-green::before {
  border-color: var(--rs-theme-green);
}

.loader .loader-container.has-theme-green-two::before {
  border-color: var(--rs-theme-green-two);
}

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

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

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

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

/*----------------------------------------*/
/*  2.20 Progress Bar
/*----------------------------------------*/
.single-progress {
  position: relative;
  overflow: hidden;
}

.progress {
  overflow: visible;
  border-radius: 0px;
  height: 14px;
  line-height: 14px;
  padding: 3px 3px 3px 3px;
  border: 1px solid var(--rs-border-primary);
  background-color: var(--rs-bg-secondary);
}

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

.progress-number {
  position: absolute;
  font-size: 16px;
  top: 0;
  inset-inline-end: 0;
  z-index: 1;
  font-weight: 500;
  color: var(--rs-title-primary);
}

.progress-title {
  font-size: 18px;
  font-weight: 500;
}

.progress-top {
  margin-bottom: 17px;
}

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

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

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

@media only screen and (max-width: 991px) {
  #rs-mouse {
    display: none;
  }
}

/*----------------------------------------*/
/*  2.21 Swiper scrollbar 
/*----------------------------------------*/
.rs-swiper-scrollbar.swiper-scrollbar {
  height: 5px;
  background: var(--rs-bg-secondary);
}

.rs-swiper-scrollbar .swiper-scrollbar-drag {
  width: 220px !important;
  background: var(--rs-theme-primary);
}

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

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

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

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

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

/*----------------------------------------*/
/*  2.23 settings
/*----------------------------------------*/
.rs-theme-settings-area {
  position: fixed;
  top: 50%;
  right: 0px;
  width: 240px;
  background-color: var(--rs-white);
  transform: translateY(-50%) translateX(100%);
  z-index: 991;
  border-bottom-right-radius: 4px;
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s 0s ease-out;
}

.rs-theme-settings-area.settings-opened {
  transform: translateY(-50%) translateX(0%);
}

.rs-theme-settings-area.settings-opened .rs-theme-settings-gear {
  opacity: 0;
}

.rs-theme-settings-area.settings-opened .rs-theme-settings-close {
  opacity: 1;
}

.rs-theme-settings-open {
  position: absolute;
  top: -1px;
  right: 100%;
}

.rs-theme-settings-open button {
  background-color: var(--rs-white);
  border-inline-end: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 20px;
  color: var(--rs-black);
  position: relative;
  border-start-start-radius: 2px;
  border-bottom-left-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.15);
}

.rs-theme-settings-gear {
  display: inline-block;
  color: var(--rs-black);
  animation: spin 8s linear infinite;
}

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

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

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

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

.rs-theme-settings-close {
  display: inline-block;
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

[dir=rtl] .rs-theme-settings-close {
  inset-inline-end: 50%;
  inset-inline-start: auto;
}

.rs-theme-header-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--rs-black);
}

.rs-theme-wrapper {
  padding: 15px 20px 20px 20px;
}

.rs-theme-toggle {
  text-align: center;
}

.rs-theme-toggle-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: var(--rs-black);
  padding: 4px;
  border-radius: 2px;
}

.rs-theme-toggle-main span.active {
  color: var(--rs-black);
}

.rs-theme-toggle-light,
.rs-theme-toggle-dark {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
}

.rs-theme-toggle input {
  display: none;
}

.rs-theme-toggle:hover {
  cursor: pointer;
}

.rs-theme-toggle label {
  font-size: 14px;
  font-weight: 500;
}

.rs-theme-toggle label:hover {
  cursor: pointer;
}

.rs-theme-toggle #rs-theme-toggler {
  display: none;
}

.rs-theme-toggle #rs-theme-toggler:checked+i {
  inset-inline-end: calc(50% - 4px);
}

.rs-theme-toggle-slide {
  position: absolute;
  top: 50%;
  inset-inline-end: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  background-color: var(--rs-white);
  border-radius: 3px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  transition: all, 0.2s, cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.rs-theme-dir {
  text-align: center;
}

.rs-theme-dir-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: var(--rs-black);
  padding: 4px 0px 3px 0px;
  border-radius: 2px;
}

.rs-theme-dir-main span.active {
  color: var(--rs-black);
}

.rs-theme-dir-ltr,
.rs-theme-dir-rtl {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
  color: var(--rs-white);
}

.rs-theme-dir input {
  display: none;
}

.rs-theme-dir:hover {
  cursor: pointer;
}

.rs-theme-dir label {
  font-size: 14px;
  font-weight: 500;
}

.rs-theme-dir label:hover {
  cursor: pointer;
}

.rs-theme-dir #rs-dir-toggler {
  display: none;
}

.rs-theme-dir #rs-dir-toggler:checked+i {
  inset-inline-end: calc(50% - 4px);
}

.rs-theme-dir-slide {
  position: absolute;
  top: 50%;
  inset-inline-end: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 25px;
  background-color: var(--rs-white);
  border-radius: 2px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  transition: all, 0.2s, cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

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

.rs-swiper-btn {
  width: 40px;
  height: 40px;
  background: var(--rs-theme-blue);
  color: var(--rs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s 0s ease-out;
  cursor: pointer;
}

[dir=rtl] .rs-swiper-btn {
  transform: rotateY(-180deg);
}

.rs-swiper-btn.is-large {
  width: 60px;
  height: 60px;
  background: var(--rs-theme-secondary);
  border-radius: 0%;
  font-size: 30px;
  color: var(--rs-white);
}

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

.rs-swiper-btn.has-radius-small {
  border-radius: 3px;
}

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

.rs-swiper-btn.has-transparent {
  background: transparent;
  width: unset;
  height: unset;
}

.rs-swiper-btn.has-theme-red {
  background: var(--rs-theme-red);
  width: 50px;
  height: 50px;
  border-radius: 0;
  font-size: 25px;
}

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

.rs-swiper-btn.has-theme-green {
  background: var(--rs-theme-green);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 25px;
}

.rs-swiper-btn.has-theme-green:hover {
  background: var(--rs-theme-yellow);
  color: var(--rs-black);
}

.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 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

@media only screen and (max-width: 480px) {
  .rs-list-item ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-list-item ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--rs-title-primary);
}

.rs-list-item ul li svg {
  width: 20px;
  height: 20px;
}

.rs-list-item ul li svg path {
  fill: var(--rs-theme-primary);
}

.rs-list-item ul li i {
  border: 2px solid var(--rs-theme-blue);
  color: var(--rs-theme-blue);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-list-item.is-list-block ul {
  display: block;
}

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

.rs-list-item.is-large ul li svg {
  width: 22px;
  height: 22px;
}

.rs-list-item.is-large ul li svg path {
  fill: var(--rs-primary);
}

/*----------------------------------------*/
/*  2.18 post tag
/*----------------------------------------*/
.rs-post-tag .post-tag {
  background: var(--rs-theme-primary);
  color: var(--rs-white);
  display: inline-flex;
  align-items: center;
  padding: 5px 10px 5px 10px;
  height: 21px;
  border-radius: 0 100px 100px 70px;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 22px;
}

.rs-post-tag .post-tag.is-yellow {
  background-color: var(--rs-yellow);
}

.rs-post-tag .post-tag.is-green {
  background-color: var(--rs-green);
}

.rs-post-tag .post-tag.is-pink {
  background-color: var(--rs-pink);
}

.rs-post-tag .post-tag.is-red {
  background: #FF3A3A;
}

.rs-post-tag-two .post-tag {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--rs-text-primary);
  padding-inline-start: 16px;
}

.rs-post-tag-two .post-tag:hover {
  color: var(--rs-theme-primary);
}

.rs-post-tag-two .post-tag::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(246, 156, 0, 0.5);
  border-radius: 50%;
}

.rs-post-tag-two .post-tag.is-white {
  color: var(--rs-white);
}

.rs-post-tag-two .post-tag.is-white:hover {
  color: var(--rs-theme-primary);
}

/*----------------------------------------
   2.17 Post Meta
-----------------------------------------*/
.rs-post-meta ul {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media only screen and (max-width: 1600px) {
  .rs-post-meta ul {
    flex-wrap: wrap;
  }
}

.rs-post-meta ul li {
  list-style: none;
}

.rs-post-meta .rs-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

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

.rs-post-meta .rs-meta svg path {
  fill: var(--rs-theme-primary);
}

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

.rs-post-meta .rs-meta .rs-meta-thumb img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

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

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

/*----------------------------------------*/
/*  3.5.1 Header Style 1
/*----------------------------------------*/
.rs-header-one {
  overflow-x: clip;
}

.rs-header-one .header-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 99;
  justify-content: space-between;
  padding-inline-start: 150px;
  padding-inline-end: 150px;
}

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

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

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

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

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

.rs-header-one .rs-sticky-header.active {
  background: var(--rs-theme-blue);
  padding-top: 0;
}

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

.rs-header-one .rs-sticky-header.active .main-menu>ul>li>a {
  padding: 30px 0px;
}

.rs-header-one .rs-sticky-header.active.has-bg {
  background: var(--rs-theme-blue-two);
}

.rs-header-one.has-bg-white .header-wrapper {
  background: var(--rs-white);
}

.rs-header-one.has-bg-white .header-search-icon {
  border-color: var(--rs-border-primary);
}

.rs-header-one.has-bg-white .header-search-icon i {
  color: var(--rs-theme-secondary);
}

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

.rs-header-one.has-bg-white .sidebar-toggle {
  background: transparent;
  border-color: var(--rs-border-primary);
}

.rs-header-one.has-bg-white .sidebar-toggle .header-bar-icon span {
  background: var(--rs-theme-secondary);
}

.rs-header-one.has-space .main-menu>ul>li>a {
  padding: 50px 0px;
}

.rs-header-one.has-space-two .header-wrapper {
  margin-top: 30px;
  margin-inline-start: 150px;
  margin-inline-end: 150px;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
  border-radius: 12px;
  background: #001936;
}

@media only screen and (max-width: 1600px) {
  .rs-header-one.has-space-two .header-wrapper {
    margin-top: 20px;
    margin-inline-start: 15px;
    margin-inline-end: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-header-one.has-space-two .header-wrapper {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
  }
}

.rs-header-one.has-space-two .main-menu>ul>li>a {
  padding: 28px 0px;
}

/*----------------------------------------*/
/*  3.5.2 Header Style 2
/*----------------------------------------*/
.rs-header-two {
  overflow-x: clip;
}

.rs-header-two .header-wrapper {
  align-items: center;
  position: relative;
  z-index: 99;
  justify-content: space-between;
  display: flex;
  padding-inline-start: 150px;
  padding-inline-end: 150px;
}

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

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

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

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

.rs-header-two .header-logo .logo-red {
  display: none;
}

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

.rs-header-two .header-logo-wrapper {
  margin-top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 237px;
}

@media only screen and (max-width: 991px) {
  .rs-header-two .header-logo-wrapper {
    margin-top: -100px;
    width: 200px;
  }
}

.rs-header-two .header-logo-wrapper::before {
  position: absolute;
  content: "";
  width: 237px;
  height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #730017; */

  background: #FFC107;
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
  top: 0;
  left: 0;
}

@media only screen and (max-width: 1199px) {
  .rs-header-two .header-logo-wrapper::before {
    height: 165px;
    top: -15px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-header-two .header-logo-wrapper::before {
    height: 205px;
    width: 200px;
  }
}

.rs-header-two .header-logo-wrapper::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  clip-path: polygon(0px 0px, 100% 0%, 100% -5px, 50% 17%, 0 -5%);
  /* background: var(--rs-theme-red); */
  background: #03A9F4;
}

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

@media only screen and (max-width: 767px) {
  .rs-header-two .header-logo-wrapper {
    margin-top: 0;
    width: unset;
  }

  .rs-header-two .header-logo-wrapper::before,
  .rs-header-two .header-logo-wrapper::after {
    content: none;
  }
}

.rs-header-two.has-theme-green-two .header-logo-wrapper {
  margin-top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 17px 70px 17px 70px;
  background: #00843C;
  margin-inline: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-header-two.has-theme-green-two .header-logo-wrapper {
    padding: 15px 15px 15px 15px;
    width: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-header-two.has-theme-green-two .header-logo-wrapper {
    margin: 0px;
    padding: 0;
    background: transparent;
  }
}

.rs-header-two.has-theme-green-two .header-logo-wrapper::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007937;
  top: 0;
  inset-inline-end: -30px;
  inset-inline-start: auto;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.rs-header-two.has-theme-green-two .header-logo-wrapper::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 44px;
  top: 0px;
  inset-inline-start: -30px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: #007937;
}

@media only screen and (max-width: 991px) {

  .rs-header-two.has-theme-green-two .header-logo-wrapper::before,
  .rs-header-two.has-theme-green-two .header-logo-wrapper::after {
    content: none;
  }
}

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

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

.rs-header-two.has-theme-green-two .header-logo {
  width: 100px;
}

@media only screen and (max-width: 1199px) {
  .rs-header-two.has-theme-green-two .header-logo {
    width: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-header-two.has-theme-green-two .header-logo {
    width: 170px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-header-two.has-theme-green-two .header-logo {
    width: 140px;
  }
}

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

@media only screen and (max-width: 991px) {
  .rs-header-two.has-theme-green-two .header-logo .logo-white {
    display: none;
  }
}

.rs-header-two.has-theme-green-two .header-logo .logo-green {
  display: none;
}

@media only screen and (max-width: 991px) {
  .rs-header-two.has-theme-green-two .header-logo .logo-green {
    display: block;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-header-two.has-theme-green-two .header-left {
    display: none;
  }
}

.rs-header-two.has-theme-green-two .has-extra-menu {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .rs-header-two.has-theme-green-two .has-extra-menu {
    display: block;
  }
}

.rs-header-two.has-theme-green-two .rs-sticky-header.active .header-logo-wrapper {
  margin-top: 0;
  width: unset;
  background: transparent;
  padding: 0;
  margin-inline: 0;
}

.rs-header-two.has-theme-green-two .rs-sticky-header.active .header-logo-wrapper::before,
.rs-header-two.has-theme-green-two .rs-sticky-header.active .header-logo-wrapper::after {
  content: none;
}

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

.rs-header-two .header-left {
  display: flex;
  gap: 30px;
}

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

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

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

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

.rs-header-two .main-menu ul li a {
  color: var(--rs-title-primary);
}

.rs-header-two .header-logo {
  width: 330px;
  margin-top: auto;
  /* margin-left: auto; */
  /* margin-right: auto; */
  display: flex;
  justify-content: center;
}

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

@media only screen and (max-width: 767px) {
  .rs-header-two .header-logo {
    width: 140px;
  }
}

.rs-header-two .header-icon-wrapper::before {
  background: rgba(0, 0, 0, 0.14);
}

.rs-header-two .header-search-icon i {
  color: var(--rs-black);
}

.rs-header-two .header-bar-icon span {
  background: var(--rs-black);
}

.rs-header-two .rs-sticky-header.active .header-logo-wrapper {
  margin-top: 0;
  width: unset;
}

.rs-header-two .rs-sticky-header.active .header-logo-wrapper::before,
.rs-header-two .rs-sticky-header.active .header-logo-wrapper::after {
  content: none;
}

.rs-header-two .rs-sticky-header.active .header-logo {
  width: unset;
  margin-top: unset;
}

@media only screen and (max-width: 575px) {
  .rs-header-two .rs-sticky-header.active .header-logo {
    width: 140px;
  }
}

.rs-header-two .rs-sticky-header.active .header-left {
  gap: 30px 60px;
}

/*----------------------------------------*/
/*  3.5.3 Header Style 3
/*----------------------------------------*/
.rs-header-three {
  overflow-x: clip;
}

.rs-header-three .header-wrapper {
  align-items: center;
  position: relative;
  z-index: 99;
  justify-content: space-between;
  display: flex;
  padding-inline-start: 150px;
  padding-inline-end: 150px;
}

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

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

.rs-header-three .header-wrapper.has-space {
  padding-inline-start: 120px;
  padding-inline-end: 120px;
}

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

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

.rs-header-three .header-left {
  display: flex;
  gap: 30px;
}

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

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

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

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

.rs-header-three .main-menu>ul>li>a {
  color: var(--rs-title-primary);
}

.rs-header-three .header-icon-wrapper::before {
  background: rgba(0, 0, 0, 0.14);
}

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

.rs-header-three .header-bar-icon span {
  background: var(--rs-black);
}

.rs-header-three.has-space .main-menu>ul>li>a {
  padding: 33px 0px;
}

.rs-header-three.has-space .rs-sticky-header.active .main-menu>ul>li>a {
  padding: 30px 0px;
}

/*----------------------------------------*/
/*  3.5.5 Header Top Style
/*----------------------------------------*/
.rs-header-top.rs-header-top-one {
  padding-inline-start: 415px;
  padding-inline-end: 150px;
  padding-bottom: 10px;
  padding-top: 10px;
  background: #03A9F4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

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

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

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

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

.rs-header-top.rs-header-top-one .header-top-menu-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.rs-header-top.rs-header-top-one .header-nav-menu-item {
  position: relative;
}

.rs-header-top.rs-header-top-one .header-nav-menu-item:not(:last-child) {
  padding-inline-end: 12px;
  margin-inline-end: 12px;
}

.rs-header-top.rs-header-top-one .header-nav-menu-item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
}

.rs-header-top.rs-header-top-one .header-nav-menu-item a {
  font-size: 14px;
  font-weight: 500;
  color: var(--rs-white);
}

.rs-header-top.rs-header-top-one .header-nav-menu-item a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.rs-header-top.rs-header-top-one .header-top-icon {
  width: 17px;
  min-width: 17px;
  flex-wrap: wrap;
  background: var(--rs-white);
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.rs-header-top.rs-header-top-one .header-top-icon svg {
  width: 9px;
}

.rs-header-top.rs-header-top-one .header-top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-header-top.rs-header-top-one.has-theme-cyan {
  background: var(--rs-theme-cyan);
  padding-inline-start: 150px;
  padding-inline-end: 150px;
}

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

.rs-header-top.rs-header-top-one.has-theme-green {
  background: var(--rs-theme-green);
  padding-inline-start: 150px;
  padding-inline-end: 150px;
}

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

.rs-header-top.rs-header-top-one.has-theme-green-two {
  padding-inline-start: 150px;
  padding-inline-end: 150px;
  padding-bottom: 9px;
  padding-top: 9px;
  background: var(--rs-theme-green-two);
}

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

@media only screen and (max-width: 1199px) {
  .rs-header-top.rs-header-top-one.has-theme-green-two {
    padding-inline-start: 240px;
    padding-inline-end: 15px;
  }
}

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

.rs-header-top.rs-header-top-one.has-theme-red {
  margin-inline-start: 120px;
  margin-inline-end: 120px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
  padding-bottom: 10px;
  padding-top: 10px;
  border-radius: 15px;
}

@media only screen and (max-width: 1600px) {
  .rs-header-top.rs-header-top-one.has-theme-red {
    margin-inline-start: 15px;
    margin-inline-end: 15px;
    margin-bottom: 0;
  }
}

.rs-header-top.rs-header-top-one .header-top-content {
  display: flex;
  gap: 15px;
}

.rs-header-top.rs-header-top-one .header-top-content .header-top-title {
  color: var(--rs-white);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  gap: 10px;
}

.rs-header-top.rs-header-top-one .header-top-content .header-top-title svg {
  width: 24px;
  height: 24px;
}

.rs-header-top.rs-header-top-one .header-top-content .header-top-title svg path {
  fill: var(--rs-white);
}

.rs-header-top.rs-header-top-one .header-top-description {
  font-size: 14px;
  font-weight: 500;
  color: var(--rs-white);
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  min-width: 350px;
}

@media only screen and (max-width: 480px) {
  .rs-header-top.rs-header-top-one .header-top-description {
    text-align: center;
  }
}

.rs-header-top.rs-header-top-one .header-top-description.is-active {
  position: relative;
  opacity: 1;
  animation: textRotatingIn 0.8s cubic-bezier(0.86, 0, 0.07, 1) both;
}

.rs-header-top.rs-header-top-one .header-top-description:not(.is-active) {
  animation: textRotatingOut 0.8s cubic-bezier(0.86, 0, 0.07, 1) both;
}

.rs-header-top.rs-header-top-one .header-top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

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

.rs-header-top.rs-header-top-one .header-top-item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  inset-inline-end: 0;
}

@media only screen and (max-width: 575px) {
  .rs-header-top.rs-header-top-one .header-top-item:not(:last-child):not(:last-child) {
    padding-inline-end: 0px;
    margin-inline-end: 0px;
  }

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

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

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

.rs-header-top.rs-header-top-one .header-top-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

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

.rs-header-top.rs-header-top-one .header-top-meta:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  inset-inline-end: 0;
}

@media only screen and (max-width: 575px) {
  .rs-header-top.rs-header-top-one .header-top-meta:not(:last-child) {
    padding-inline-end: 0;
    margin-inline-end: 0px;
  }

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

.rs-header-top.rs-header-top-one .header-top-meta-icon {
  position: relative;
  top: -2px;
}

.rs-header-top.rs-header-top-one .header-top-meta-icon svg {
  width: 16px;
  height: 16px;
}

.rs-header-top.rs-header-top-one .header-top-meta-icon svg path {
  fill: var(--rs-white);
}

.rs-header-top.rs-header-top-one .header-top-meta-content span {
  color: var(--rs-white);
  font-size: 14px;
  font-weight: 500;
}

.rs-header-top.rs-header-top-one .header-top-meta-content a {
  color: var(--rs-white);
  font-size: 14px;
  font-weight: 500;
}

.rs-header-top.rs-header-top-one .header-top-meta-content a:hover {
  color: var(--rs-theme-secondary);
}

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

.rs-header-top.rs-header-top-one .header-top-social a {
  font-size: 14px;
}

.rs-header-top.rs-header-top-one .header-top-social-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-header-top.rs-header-top-one .header-top-social-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--rs-white);
}

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

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

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

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

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

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

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

.rs-header-top.rs-header-top-two .header-top-description {
  font-size: 14px;
  font-weight: 500;
  color: var(--rs-white);
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  min-width: 350px;
}

@media only screen and (max-width: 480px) {
  .rs-header-top.rs-header-top-two .header-top-description {
    text-align: center;
  }
}

.rs-header-top.rs-header-top-two .header-top-description.is-active {
  position: relative;
  opacity: 1;
  animation: textRotatingIn 0.8s cubic-bezier(0.86, 0, 0.07, 1) both;
}

.rs-header-top.rs-header-top-two .header-top-description:not(.is-active) {
  animation: textRotatingOut 0.8s cubic-bezier(0.86, 0, 0.07, 1) both;
}

.rs-header-top.rs-header-top-two .header-top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

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

.rs-header-top.rs-header-top-two .header-top-item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  inset-inline-end: 0;
}

@media only screen and (max-width: 575px) {
  .rs-header-top.rs-header-top-two .header-top-item:not(:last-child):not(:last-child) {
    padding-inline-end: 0px;
    margin-inline-end: 0px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*----------------------------------------*/
/*  3.5.4 Header Common Style 
/*----------------------------------------*/
.header-logo {
  width: 170px;
}

@media only screen and (max-width: 575px) {
  .header-logo {
    width: 140px;
  }
}

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

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

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

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

@media only screen and (max-width: 480px) {
  .header-search-inner {
    top: 46px;
    width: 220px;
  }
}

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

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

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

.header-search-icon i {
  font-size: 20px;
  transition: all 0.3s ease-out 0s;
  color: var(--rs-white);
}

@media only screen and (max-width: 480px) {
  .header-search-icon i {
    font-size: 17px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.header-search input {
  color: var(--rs-black);
  padding-inline-end: 40px;
  padding-inline-start: 15px;
  width: 100%;
  background: var(--rs-white);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  height: 48px;
}

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

.header-search input::placeholder {
  color: var(--rs-text-primary);
  font-weight: 500;
  font-size: 14px;
}

.header-search input:focus {
  border-color: rgba(0, 0, 0, 0.1);
}

.header-search button {
  position: absolute;
  right: 5px;
  font-size: 20px;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

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

.header-content {
  display: flex;
  align-items: center;
  position: relative;
  gap: 18px;
}

.header-inner.rs-sticky .header-menu>nav>ul>li>a {
  padding: 32px 0;
}

.header-inner.rs-sticky .header-search-inner {
  top: 56px;
}

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

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

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

.header-icon-wrapper::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.7);
  left: 50%;
  transform: translateX(-50%);
}

.header-search-wrapper:not(:last-child) {
  padding-inline-end: 17px;
  margin-inline-end: 17px;
}

.header-right {
  display: flex;
  gap: 35px;
  align-items: center;
}

.header-bar-icon {
  width: 20px;
  height: 16px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: color 0.2s ease-out;
}

.header-bar-icon span {
  width: 28px;
  height: 2px;
  background: var(--rs-white);
  display: inline-block;
  transition: color 0.2s ease-out;
  margin: 0 auto;
  margin-right: auto;
  margin-right: 0;
}

.header-bar-icon span:nth-child(1) {
  width: 20px;
  transition: all 0.3s linear;
}

.header-bar-icon span:nth-child(2) {
  width: 15px;
  transition: all 0.3s linear;
}

.header-bar-icon span:nth-child(3) {
  width: 20px;
  transition: all 0.3s linear;
}

.header-bar-icon:hover span {
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}

.header-bar-icon:hover span:nth-child(2) {
  animation-delay: 0.1s;
}

.header-bar-icon:hover span:nth-child(3) {
  animation-delay: 0.2s;
}

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

.rs-sticky-header.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

/* HEADER CSS */
/*----------------------------------------*/
/*  3.1.1 banner style 1
/*----------------------------------------*/
.rs-banner-one {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.rs-banner-one::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #003A65 -1.41%, #0092FF 117.34%);
  z-index: -1;
}

.rs-banner-one .rs-banner-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 130px;
  left: 0;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .rs-banner-one .rs-banner-bg-thumb {
    opacity: 0.2;
  }
}

.rs-banner-one .rs-banner-wrapper {
  padding-top: 170px;
  padding-inline-start: 200px;
  padding-inline-end: 250px;
  padding-bottom: 80px;
}

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

@media only screen and (max-width: 991px) {
  .rs-banner-one .rs-banner-wrapper {
    padding-top: 150px;
  }
}

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

.rs-banner-one .rs-banner-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--rs-white);
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 480px) {
  .rs-banner-one .rs-banner-subtitle {
    font-size: 16px;
    gap: 15px;
  }
}

.rs-banner-one .rs-banner-subtitle img {
  width: 33px;
}

.rs-banner-one .rs-banner-title {
  color: var(--rs-white);
  line-height: 1.125;
}

.rs-banner-one .rs-banner-large-title {
  letter-spacing: 10px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFFFFF -88.62%, rgba(255, 255, 255, 0.05) 95.12%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 350px;
  line-height: 0.8;
  text-align: center;
}

@media only screen and (max-width: 1700px) {
  .rs-banner-one .rs-banner-large-title {
    font-size: 280px;
  }
}

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

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

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

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

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

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

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

.rs-banner-one .rs-banner-content-wrapper {
  position: relative;
  z-index: 2;
}

.rs-banner-one .rs-video-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--rs-white);
  margin-top: 15px;
}

.rs-banner-one .rs-banner-content-wrapper {
  display: grid;
  grid-template-columns: 600px auto;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 250px;
}

@media only screen and (max-width: 1700px) {
  .rs-banner-one .rs-banner-content-wrapper {
    margin-top: 200px;
  }
}

@media only screen and (max-width: 1600px) {
  .rs-banner-one .rs-banner-content-wrapper {
    margin-top: 150px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-banner-one .rs-banner-content-wrapper {
    margin-top: 130px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-banner-one .rs-banner-content-wrapper {
    margin-top: 90px;
    grid-template-columns: 500px auto;
  }
}

@media only screen and (max-width: 767px) {
  .rs-banner-one .rs-banner-content-wrapper {
    grid-template-columns: auto;
    text-align: center;
    margin-top: 70px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-banner-one .rs-banner-content-wrapper {
    margin-top: 50px;
  }
}

.rs-banner-one .rs-banner-video-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}

/*----------------------------------------*/
/*  3.1.2 banner style 2
/*----------------------------------------*/
.rs-banner-two {
  overflow-x: clip;
  position: relative;
}

.rs-banner-two .b-line-one {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--rs-border-tertiary);
  inset-inline-start: 150px;
  top: 0;
  z-index: 2;
}

@media only screen and (max-width: 575px) {
  .rs-banner-two .b-line-one {
    display: none;
  }
}

.rs-banner-two .b-line-two {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--rs-border-tertiary);
  inset-inline-end: 150px;
  top: 0;
  z-index: 2;
}

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

.rs-banner-two .b-line-three {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--rs-border-tertiary);
  left: 0px;
  bottom: 140px;
  z-index: 2;
}

.rs-banner-two .rs-banner-item-wrapper {
  position: relative;
  z-index: 1;
}

.rs-banner-two .rs-banner-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

.rs-banner-two .rs-banner-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background: linear-gradient(180deg, rgba(3, 3, 3, 0) -2.4%, #030303 111.13%); */
  z-index: -1;
}

.rs-banner-two .rs-banner-wrapper {
  padding: 300px 0 210px;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .rs-banner-two .rs-banner-wrapper {
    padding: 250px 0 350px;
  }
}

@media only screen and (max-width: 1366px) {
  .rs-banner-two .rs-banner-wrapper {
    padding: 200px 0 150px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-banner-two .rs-banner-wrapper {
    padding: 110px 0 90px;
  }
}

.rs-banner-two .rs-banner-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--rs-white);
  display: inline-block;
}

.rs-banner-two .rs-banner-title {
  font-size: 70px;
  color: var(--rs-white);
  text-transform: capitalize;
  line-height: 1.15;
  margin-top: 20px;
  margin-bottom: 40px;
}

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

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

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

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

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

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

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

.rs-banner-two .rs-banner-navigation .swiper-button-prev,
.rs-banner-two .rs-banner-navigation .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.rs-banner-two .rs-banner-navigation button {
  inset-inline-start: 30px;
}

.rs-banner-two .rs-banner-navigation button.swiper-button-next {
  inset-inline-end: 30px;
  inset-inline-start: auto;
}

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

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

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

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

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

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

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

.rs-banner-two .swiper-slide-active .rs-banner-bg-thumb {
  transform: scale(1.15);
}

/*----------------------------------------*/
/*  3.1.3 banner style 3
/*----------------------------------------*/
.rs-banner-three {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.rs-banner-three .rs-banner-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.rs-banner-three .rs-banner-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(176.07deg, rgba(0, 0, 0, 0) 14%, #000000 129.41%);
  z-index: -1;
}

.rs-banner-three .rs-banner-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-inline-start: 135px;
  padding-inline-end: 135px;
  padding-bottom: 150px;
  display: grid;
  grid-template-columns: 700px 415px;
  gap: 30px;
  justify-content: space-between;
  align-items: end;
}

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

@media only screen and (max-width: 1199px) {
  .rs-banner-three .rs-banner-wrapper {
    grid-template-columns: auto 415px;
    padding-bottom: 100px;
    padding-top: 100px;
  }
}

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

.rs-banner-three .rs-banner-subtitle {
  font-size: 17px;
  font-weight: 500;
  color: var(--rs-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 991px) {
  .rs-banner-three .rs-banner-subtitle {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-banner-three .rs-banner-subtitle {
    font-size: 16px;
    gap: 15px;
  }
}

.rs-banner-three .rs-banner-subtitle img {
  width: 24px;
}

.rs-banner-three .rs-banner-title {
  color: var(--rs-white);
  line-height: 1.15;
}

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

.rs-banner-three .rs-banner-btn {
  margin-top: 40px;
}

.rs-banner-three .rs-notice-wrapper {
  background-color: var(--rs-theme-cyan);
  padding-top: 25px;
  padding-bottom: 30px;
  padding-inline-start: 35px;
  padding-inline-end: 35px;
  border-radius: 16px;
}

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

.rs-banner-three .rs-notice-wrapper .popup-circle {
  width: 8px;
  height: 8px;
  position: relative;
}

.rs-banner-three .rs-notice-wrapper .popup-circle::before {
  background: var(--rs-theme-yellow);
}

.rs-banner-three .rs-notice-wrapper .popup-circle::after {
  background: var(--rs-theme-yellow);
}

.rs-banner-three .rs-notice-wrapper .rs-notice-sec-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--rs-border-tertiary);
  margin-bottom: 12px;
  padding-bottom: 10px;
  color: var(--rs-white);
}

.rs-banner-three .rs-notice-wrapper .rs-notice-item:not(:last-child) {
  border-bottom: 1px solid var(--rs-border-tertiary);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.rs-banner-three .rs-notice-wrapper .rs-notice-title {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--rs-white);
}

@media only screen and (max-width: 575px) {
  .rs-banner-three .rs-notice-wrapper .rs-notice-title {
    font-size: 15px;
  }
}

.rs-banner-three .rs-notice-wrapper .rs-notice-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.rs-banner-three .rs-notice-wrapper .rs-notice-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rs-banner-three .rs-notice-wrapper .rs-notice-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.8);
}

.rs-banner-three .rs-notice-wrapper .rs-notice-date svg {
  width: 14px;
  height: 14px;
}

.rs-banner-three .rs-notice-wrapper .rs-notice-date svg path {
  fill: rgba(255, 255, 255, 0.8);
}

.rs-banner-three .rs-notice-wrapper .rs-notice-id {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.rs-banner-three .rs-notice-wrapper .rs-notice-link svg {
  width: 20px;
  height: 20px;
}

.rs-banner-three .rs-notice-wrapper .rs-notice-link svg path {
  transition: 0.3s;
  fill: var(--rs-white);
}

.rs-banner-three .rs-notice-wrapper .rs-notice-link a:hover svg path {
  fill: var(--rs-theme-light-cyan);
}

.rs-banner-three .rs-notice-btn {
  margin-top: 30px;
}

.rs-banner-three .rs-notice-btn .rs-btn {
  font-size: 22px;
  font-family: var(--rs-ff-title);
  gap: 10px;
  font-weight: 600;
  border-radius: 12px;
  background: var(--rs-theme-cyan);
}

.rs-banner-three .rs-notice-btn .rs-btn:hover {
  background: var(--rs-theme-light-cyan);
  color: var(--rs-white);
}

.rs-banner-three .rs-notice-btn .rs-btn:hover svg path {
  fill: var(--rs-white);
}

.rs-banner-three .rs-notice-btn .rs-btn svg {
  width: 28px;
  height: 28px;
}

.rs-banner-three .rs-notice-btn .rs-btn svg path {
  fill: var(--rs-theme-light-cyan);
}

/*----------------------------------------*/
/*  3.1.4 banner style 4
/*----------------------------------------*/
.rs-banner-four {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.rs-banner-four .rs-banner-video {
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 991px) {
  .rs-banner-four .rs-banner-video {
    height: 540px;
  }
}

.rs-banner-four .rs-banner-video::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: radial-gradient(at center center, #000000 0%, #000000 69%);
  opacity: 0.5;
  top: 0;
  left: 0;
}

.rs-banner-four .rs-banner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rs-banner-four .rs-banner-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 230px;
  padding-bottom: 245px;
  text-align: center;
}

@media only screen and (max-width: 1600px) {
  .rs-banner-four .rs-banner-wrapper {
    padding-top: 180px;
    padding-bottom: 200px;
  }
}

@media only screen and (max-width: 1366px) {
  .rs-banner-four .rs-banner-wrapper {
    padding-top: 150px;
    padding-bottom: 170px;
  }
}

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

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

.rs-banner-four .rs-banner-logo {
  margin-bottom: 20px;
}

.rs-banner-four .rs-banner-logo img {
  width: 80px;
}

.rs-banner-four .rs-banner-title {
  font-size: 80px;
  font-weight: 700;
  color: var(--rs-white);
  line-height: 1.1;
}

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

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

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

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

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

.rs-banner-four .rs-banner-content-wrapper {
  display: grid;
  grid-template-columns: 600px auto;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 250px;
}

@media only screen and (max-width: 1700px) {
  .rs-banner-four .rs-banner-content-wrapper {
    margin-top: 200px;
  }
}

@media only screen and (max-width: 1600px) {
  .rs-banner-four .rs-banner-content-wrapper {
    margin-top: 150px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-banner-four .rs-banner-content-wrapper {
    margin-top: 130px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-banner-four .rs-banner-content-wrapper {
    margin-top: 90px;
    grid-template-columns: 500px auto;
  }
}

@media only screen and (max-width: 767px) {
  .rs-banner-four .rs-banner-content-wrapper {
    grid-template-columns: auto;
    text-align: center;
    margin-top: 70px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-banner-four .rs-banner-content-wrapper {
    margin-top: 50px;
  }
}

/*----------------------------------------*/
/*  3.1.5 banner style 5
/*----------------------------------------*/
.rs-banner-five {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.rs-banner-five:hover .rs-banner-navigation {
  visibility: visible;
  opacity: 1;
  inset-inline-end: 30px;
}

.rs-banner-five .rs-banner-bg-thumb,
.rs-banner-five .rs-banner-bg-thumb-two {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.rs-banner-five .rs-banner-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-inline-start: 135px;
  padding-inline-end: 85px;
  display: grid;
  grid-template-columns: auto 864px;
  align-items: end;
  gap: 30px 200px;
}

@media only screen and (max-width: 1800px) {
  .rs-banner-five .rs-banner-wrapper {
    gap: 30px 30px;
    grid-template-columns: auto 750px;
  }
}

@media only screen and (max-width: 1600px) {
  .rs-banner-five .rs-banner-wrapper {
    padding-inline-start: 0px;
    padding-inline-end: 0px;
    grid-template-columns: auto 600px;
  }
}

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

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

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

.rs-banner-five .rs-banner-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--rs-white);
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 480px) {
  .rs-banner-five .rs-banner-subtitle {
    font-size: 16px;
    gap: 15px;
  }
}

.rs-banner-five .rs-banner-subtitle img {
  width: 33px;
}

.rs-banner-five .rs-banner-title {
  color: var(--rs-white);
  line-height: 1.125;
}

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

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

.rs-banner-five .rs-banner-content-wrapper {
  position: relative;
  z-index: 2;
  padding-bottom: 130px;
}

@media only screen and (max-width: 991px) {
  .rs-banner-five .rs-banner-content-wrapper {
    padding-bottom: 0;
  }
}

.rs-banner-five .rs-banner-thumb img {
  width: 100%;
  display: block;
}

.rs-banner-five .rs-banner-navigation {
  display: flex;
  gap: 10px;
  flex-direction: column;
  position: absolute;
  z-index: 2;
  inset-inline-end: 0px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

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

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

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

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

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

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

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

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

.rs-banner-five .swiper-slide-active .rs-banner-thumb {
  animation-fill-mode: both;
  animation-name: fadeInRight;
}

.rs-banner-five .swiper-slide-active .rs-banner-thumb {
  animation-delay: 1.1s;
  animation-duration: 1.3s;
}

/*----------------------------------------*/
/*  3.1.6 banner style 6
/*----------------------------------------*/
.rs-banner-six {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.rs-banner-six .rs-banner-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

.rs-banner-six .rs-banner-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(224.33deg, rgba(0, 0, 0, 0) 26.66%, #000000 92.82%);
}

.rs-banner-six .rs-banner-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 260px;
  padding-bottom: 200px;
  padding-inline-start: 180px;
  padding-inline-end: 100px;
}

@media only screen and (max-width: 1600px) {
  .rs-banner-six .rs-banner-wrapper {
    padding-inline-start: 0px;
    padding-inline-end: 0px;
    padding-top: 200px;
  }
}

@media only screen and (max-width: 1366px) {
  .rs-banner-six .rs-banner-wrapper {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-banner-six .rs-banner-wrapper {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-banner-six .rs-banner-wrapper {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.rs-banner-six .rs-banner-subtitle {
  font-size: 16px;
  color: var(--rs-white);
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media only screen and (max-width: 480px) {
  .rs-banner-six .rs-banner-subtitle {
    font-size: 16px;
    gap: 15px;
  }
}

.rs-banner-six .rs-banner-subtitle img {
  width: 26px;
}

.rs-banner-six .rs-banner-title {
  color: var(--rs-white);
  line-height: 1.125;
  font-size: 72px;
}

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

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

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

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

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

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

.rs-banner-six .rs-banner-desc {
  color: rgba(255, 255, 255, 0.91);
  max-width: 540px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.rs-banner-six .rs-banner-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.rs-banner-six .rs-banner-info-content {
  margin-inline-start: 90px;
}

@media only screen and (max-width: 575px) {
  .rs-banner-six .rs-banner-info-content {
    margin-inline-start: 50px;
  }
}

.rs-banner-six .rs-banner-scroll-btn {
  position: absolute;
  bottom: 55px;
  transform: rotate(90deg);
  inset-inline-start: -50px;
  z-index: 2;
}

@media only screen and (max-width: 480px) {
  .rs-banner-six .rs-banner-scroll-btn {
    bottom: 80px;
  }
}

.rs-banner-six .rs-banner-scroll-btn .rs-btn {
  padding: 2px 12px;
  font-size: 16px;
  font-weight: 400;
}

.rs-banner-six .rs-banner-navigation {
  display: flex;
  gap: 10px;
  flex-direction: column;
  position: absolute;
  z-index: 2;
  inset-inline-end: 60px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}

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

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

.rs-banner-six .rs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--rs-theme-green-two);
}

.rs-banner-six .rs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-color: var(--rs-theme-green-two);
}

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

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

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

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

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

.rs-banner-six .swiper-slide-active .rs-banner-bg-thumb {
  transform: scale(1.15);
}

.rs-banner-six .swiper-slide-active .rs-banner-scroll-btn {
  animation-fill-mode: both;
  animation-name: fadeIn;
}

.rs-banner-six .swiper-slide-active .rs-banner-scroll-btn {
  animation-delay: 1s;
  animation-duration: 1.4s;
}

/*----------------------------------------*/
/*  3.1.7 banner style 7
/*----------------------------------------*/
.rs-banner-seven {
  overflow-x: clip;
  position: relative;
}

.rs-banner-seven .rs-banner-item-wrapper {
  position: relative;
  z-index: 1;
}

.rs-banner-seven .rs-banner-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

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

.rs-banner-seven .rs-banner-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgb(13, 37, 63) 0%, rgba(13, 37, 63, 0.8) 35%, rgba(13, 37, 63, 0) 65%);
  z-index: -1;
}

.rs-banner-seven .rs-banner-wrapper {
  padding-top: 200px;
  padding-bottom: 230px;
  padding-inline: 150px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .rs-banner-seven .rs-banner-wrapper {
    padding-top: 170px;
    padding-bottom: 200px;
    padding-inline: 120px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-banner-seven .rs-banner-wrapper {
    padding-top: 150px;
    padding-bottom: 180px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-banner-seven .rs-banner-wrapper {
    padding-top: 130px;
    padding-bottom: 150px;
    padding-inline: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-banner-seven .rs-banner-wrapper {
    padding-inline: 0px;
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.rs-banner-seven .rs-banner-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: var(--rs-white);
  display: inline-block;
  font-style: italic;
}

@media only screen and (max-width: 767px) {
  .rs-banner-seven .rs-banner-subtitle {
    font-size: 20px;
  }
}

.rs-banner-seven .rs-banner-title {
  color: var(--rs-white);
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: unset;
}

.rs-banner-seven .rs-banner-title .banner-title-primary {
  font-size: 100px;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block;
}

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

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

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

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

.rs-banner-seven .rs-banner-title .banner-title-secondary {
  font-size: 130px;
  font-weight: 700;
  display: grid;
  grid-template-columns: 90px auto;
  align-items: center;
  gap: 30px;
  line-height: 1;
}

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

@media only screen and (max-width: 1199px) {
  .rs-banner-seven .rs-banner-title .banner-title-secondary {
    font-size: 80px;
    grid-template-columns: 70px auto;
  }
}

@media only screen and (max-width: 991px) {
  .rs-banner-seven .rs-banner-title .banner-title-secondary {
    font-size: 70px;
    grid-template-columns: 50px auto;
  }
}

@media only screen and (max-width: 767px) {
  .rs-banner-seven .rs-banner-title .banner-title-secondary {
    font-size: 60px;
    gap: 10px;
  }
}

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

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

.rs-banner-seven .rs-banner-navigation .swiper-button-prev,
.rs-banner-seven .rs-banner-navigation .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.rs-banner-seven .rs-banner-navigation button {
  inset-inline-start: 30px;
}

.rs-banner-seven .rs-banner-navigation button.swiper-button-next {
  inset-inline-end: 30px;
  inset-inline-start: auto;
}

[dir=rtl] .rs-banner-seven .rs-banner-navigation button {
  transform: translateY(-50%) rotateY(180deg);
}

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

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

.rs-banner-seven .rs-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-color: var(--rs-white);
}

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

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

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

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

.rs-banner-seven .swiper-slide-active .rs-banner-bg-thumb {
  transform: scale(1.15);
}

/*----------------------------------------*/
/*  3.1.8 banner style 8
/*----------------------------------------*/
.rs-banner-eight {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.rs-banner-eight .rs-banner-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-position: top center;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

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

.rs-banner-eight .rs-banner-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 300px;
  padding-inline-start: 240px;
  padding-bottom: 220px;
}

@media only screen and (max-width: 1800px) {
  .rs-banner-eight .rs-banner-wrapper {
    padding-inline-start: 200px;
  }
}

@media only screen and (max-width: 1600px) {
  .rs-banner-eight .rs-banner-wrapper {
    padding-inline-start: 100px;
    padding-top: 275px;
  }
}

@media only screen and (max-width: 1366px) {
  .rs-banner-eight .rs-banner-wrapper {
    padding-top: 255px;
    padding-bottom: 200px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-banner-eight .rs-banner-wrapper {
    padding-top: 235px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-banner-eight .rs-banner-wrapper {
    padding-top: 170px;
    padding-inline-start: 0px;
    padding-bottom: 100px;
  }
}

.rs-banner-eight .rs-banner-btn {
  margin-top: 30px;
}

.rs-banner-eight .rs-banner-subtitle {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rs-theme-yellow);
  margin-bottom: 30px;
  display: inline-block;
}

@media only screen and (max-width: 991px) {
  .rs-banner-eight .rs-banner-subtitle {
    margin-bottom: 20px;
  }
}

.rs-banner-eight .rs-banner-title {
  color: var(--rs-white);
  line-height: 1.2;
  font-size: 86px;
  letter-spacing: -1px;
  font-family: "Prata", serif;
  font-weight: 400;
}

@media only screen and (max-width: 1366px) {
  .rs-banner-eight .rs-banner-title {
    font-size: 80px;
  }
}

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

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

  .rs-banner-eight .rs-banner-title br {
    display: none;
  }
}

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

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

.rs-banner-eight .rs-banner-pagination {
  position: absolute;
  inset-inline-end: 100px;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 991px) {
  .rs-banner-eight .rs-banner-pagination {
    bottom: 40px;
    transform: translateX(-50%) translateY(0);
    inset-inline-start: 50%;
    top: unset;
    inset-inline-end: unset;
  }
}

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

@media only screen and (max-width: 991px) {
  .rs-banner-eight .rs-banner-pagination .rs-pagination.swiper-pagination {
    position: unset;
  }
}

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

.rs-banner-eight .rs-banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-color: var(--rs-white);
}

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

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

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

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

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

.rs-banner-eight .swiper-slide-active .rs-banner-bg-thumb {
  transform: scale(1.15);
}

/* HEADER CSS */
.main-menu ul li.active>a {
  color: var(--rs-theme-yellow);
}

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

.main-menu ul li ul.submenu li.active>a {
  color: var(--rs-theme-yellow);
  padding-inline-start: 30px;
}

.main-menu ul li ul.submenu li.active>a::before {
  width: 12px;
  background: var(--rs-theme-yellow);
}

.main-menu ul li ul.mega-menu li ul li.active>a {
  color: var(--rs-theme-yellow);
  padding-inline-start: 15px;
}

.main-menu ul li ul.mega-menu li ul li.active>a::before {
  width: 12px;
  background: var(--rs-theme-yellow);
}

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

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

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

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

.main-menu>ul>li:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: scaleY(1);
  visibility: visible;
}

.main-menu>ul>li:hover>ul {
  opacity: 1;
  pointer-events: all;
  transform: scaleY(1);
  visibility: visible;
}

.main-menu>ul>li:hover>ul.submenu li:hover>ul {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

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

.main-menu li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--rs-white);
  padding: 45px 0px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  position: relative;
  transition: all 0.3s linear;
}

.main-menu .submenu {
  background-color: var(--rs-white);
  -webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
  width: 260px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  top: 100%;
  transform: scaleY(0);
  transition: all 0.5s ease;
  visibility: hidden;
  transform-origin: top center;
  border-radius: 0 0 5px 5px;
}

.main-menu .submenu ul {
  background-color: var(--rs-theme-secondary);
  width: 260px;
  position: absolute;
  inset-inline-start: 100%;
  top: 0;
  opacity: 0;
  z-index: 10;
  transition: all 0.5s;
}

.main-menu .submenu li {
  position: relative;
}

.main-menu .submenu li:not(:last-child) {
  border-bottom: 1px solid #EBEBEB;
}

.main-menu .submenu li:hover>a {
  color: var(--rs-theme-yellow);
  padding-inline-start: 35px;
}

.main-menu .submenu li:hover>a::before {
  width: 12px;
  background: var(--rs-theme-yellow);
}

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

.main-menu .submenu li a {
  font-size: 14px;
  color: var(--rs-text-primary);
  display: block;
  transition: all 0.5s;
  text-align: start;
  cursor: pointer;
  padding: 0;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  position: relative;
}

.main-menu .submenu li a::before {
  position: absolute;
  content: "";
  inset-inline-start: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background-color: var(--rs-border-primary);
  transition: all 0.3s 0s ease-out;
}

.main-menu .mega-menu {
  background-color: #2F3E4B;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  width: 1200px;
  margin: 0 auto;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  top: 100%;
  transform: scaleY(0);
  transition: all 0.5s ease;
  visibility: hidden;
  transform-origin: top center;
  padding: 30px 30px 30px 30px;
  inset-inline-start: 0;
  inset-inline-end: 0;
  z-index: 99;
  border-radius: 0 0 5px 5px;
}

@media only screen and (max-width: 1600px) {
  .main-menu .mega-menu {
    width: 1150px;
  }
}

.main-menu .mega-menu li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
  position: relative;
}

.main-menu .mega-menu li a:hover {
  color: var(--rs-theme-yellow);
  padding-inline-start: 15px;
}

.main-menu .mega-menu li a:hover::before {
  width: 12px;
  background: var(--rs-theme-yellow);
}

.main-menu .mega-menu ul li:not(:last-child) {
  margin-bottom: 15px;
}

.main-menu .mega-menu .active>a {
  color: var(--rs-theme-yellow);
}

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

.main-menu .rs-mega-menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.main-menu .mega-menu .title {
  pointer-events: none;
  font-weight: 600;
  color: var(--rs-white) !important;
  margin-bottom: 20px;
}

.main-menu .mega-grid {
  background-color: var(--rs-white);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  width: 950px;
  padding: 0;
}

.main-menu .mega-grid>li {
  position: relative;
}

.main-menu .mega-grid>li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  border-inline-end: 1px solid var(--rs-border-primary);
  inset-inline-end: 0;
  top: 0;
}

.main-menu .mega-grid>li:nth-child(4)::before {
  content: none;
}

.main-menu .mega-grid>li:last-child::before {
  content: none;
}

.main-menu .mega-grid .title {
  color: var(--rs-title-primary) !important;
}

.main-menu .mega-grid li a {
  color: var(--rs-text-primary);
}

.main-menu .mega-grid li a::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background-color: var(--rs-border-primary);
  transition: all 0.3s 0s ease-out;
}

.main-menu .rs-mega-menu-left {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.main-menu .rs-mega-menu-right {
  background: var(--rs-bg-secondary);
  padding: 20px;
}

.main-menu .rs-mega-menu-right:hover .rs-mega-menu-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}

.main-menu .rs-mega-menu-desc {
  margin: 10px 0 10px 0;
}

.main-menu .rs-mega-menu-thumb {
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
}

.main-menu .rs-mega-menu-thumb img {
  width: 100%;
  transform: scale(1.02);
  transition: all 0.8s ease;
  object-fit: cover;
  object-position: top center;
  height: 150px;
}

@media only screen and (max-width: 1366px) {
  .main-menu .rs-mega-menu-thumb img {
    height: 100%;
  }
}

.main-menu .rs-menu-item {
  padding-top: 30px;
  padding-bottom: 25px;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
}

.main-menu .rs-mega-menu-btn .rs-btn {
  font-size: 14px;
}

.main-menu .rs-mega-menu-btn .rs-btn .icon-box svg {
  width: 14px;
  height: 14px;
}

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

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

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

.main-menu>ul>li:hover>a::after {
  transform: rotate(180deg);
  color: var(--rs-theme-yellow);
}

.main-menu>ul>li.menu-item-has-children>a {
  position: relative;
}

.main-menu>ul>li.menu-item-has-children>a::after {
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  margin-left: 2px;
  font-size: 20px;
  content: "\ea4e";
  font-family: var(--rs-ff-remixicon);
}

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

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

.rs-header-area.has-theme-red .main-menu ul li ul.submenu li.active>a::before {
  background: var(--rs-theme-red);
}

.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:hover>a::after {
  color: var(--rs-theme-red);
}

.rs-header-area.has-theme-red .main-menu>ul>li>a {
  padding: 33px 0px;
}

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

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

.rs-header-area.has-theme-red .main-menu .submenu li a {
  color: var(--rs-text-primary);
}

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

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

.rs-header-area.has-theme-red .main-menu .mega-menu li a {
  color: var(--rs-text-primary);
}

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

.rs-header-area.has-theme-red .main-menu .mega-menu li:hover a::before {
  background: var(--rs-theme-red);
}

.rs-header-area.has-theme-red .rs-sticky-header.active .main-menu>ul>li>a {
  padding: 30px 0px;
}

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

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

.rs-header-area.has-theme-cyan .main-menu ul li ul.submenu li.active>a::before {
  background: var(--rs-theme-cyan);
}

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

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

.rs-header-area.has-theme-cyan .main-menu>ul>li>a {
  padding: 33px 0px;
}

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

.rs-header-area.has-theme-cyan .main-menu .submenu li:hover>a::before {
  background: var(--rs-theme-cyan);
}

.rs-header-area.has-theme-cyan .main-menu .submenu li a {
  color: var(--rs-text-primary);
}

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

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

.rs-header-area.has-theme-cyan .main-menu .mega-menu li a {
  color: var(--rs-text-primary);
}

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

.rs-header-area.has-theme-cyan .main-menu .mega-menu li:hover a::before {
  background: var(--rs-theme-cyan);
}

.rs-header-area.has-theme-cyan .rs-sticky-header.active .main-menu>ul>li>a {
  padding: 30px 0px;
}

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

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

.rs-header-area.has-theme-green .main-menu ul li ul.submenu li.active>a::before {
  background: var(--rs-theme-green);
}

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

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

.rs-header-area.has-theme-green .main-menu>ul>li>a {
  padding: 33px 0px;
}

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

.rs-header-area.has-theme-green .main-menu .submenu li:hover>a::before {
  background: var(--rs-theme-green);
}

.rs-header-area.has-theme-green .main-menu .submenu li a {
  color: var(--rs-text-primary);
}

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

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

.rs-header-area.has-theme-green .main-menu .mega-menu li a {
  color: var(--rs-text-primary);
}

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

.rs-header-area.has-theme-green .main-menu .mega-menu li:hover a::before {
  background: var(--rs-theme-green);
}

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

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

.rs-header-area.has-theme-green-two .main-menu ul li ul.submenu li.active>a::before {
  background: var(--rs-theme-green-two);
}

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

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

.rs-header-area.has-theme-green-two .main-menu>ul>li>a {
  padding: 32px 0px;
}

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

.rs-header-area.has-theme-green-two .main-menu .submenu li:hover>a::before {
  background: var(--rs-theme-green-two);
}

.rs-header-area.has-theme-green-two .main-menu .submenu li a {
  color: var(--rs-text-primary);
}

.rs-header-area.has-theme-green-two .main-menu .submenu li a:hover {
  color: var(--rs-theme-green-two);
}

.rs-header-area.has-theme-green-two .main-menu .submenu li a.active {
  color: var(--rs-theme-green-two);
}

.rs-header-area.has-theme-green-two .main-menu .mega-menu li a {
  color: var(--rs-text-primary);
}

.rs-header-area.has-theme-green-two .main-menu .mega-menu li a:hover {
  color: var(--rs-theme-green-two);
}

.rs-header-area.has-theme-green-two .main-menu .mega-menu li:hover a::before {
  background: var(--rs-theme-green-two);
}

.rs-header-area.has-theme-green-two .main-menu .mega-grid {
  margin-inline-start: 260px;
}

@media only screen and (max-width: 1600px) {
  .rs-header-area.has-theme-green-two .main-menu .mega-grid {
    margin-inline-start: 115px;
  }
}

.rs-header-area.has-theme-green-two .rs-sticky-header.active .main-menu>ul>li>a {
  padding: 30px 0px;
}

/*----------------------------------------*/
/*  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 ul.mega-menu {
  position: static;
  height: 100%;
  background: transparent;
  z-index: 3;
  display: block;
  padding: 0 0;
  opacity: 1;
  visibility: visible;
  transition: none;
  padding-inline-start: 20px;
}

[dir=rtl] .mean-container .mean-nav ul.mega-menu {
  padding-inline-start: 22px;
  padding-inline-end: 0;
}

.mean-container .mean-nav .submenu {
  padding-inline-start: 20px;
}

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

.mean-container .mean-nav .mega-menu ul {
  padding-inline-start: 20px;
}

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

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

.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li span:hover {
  color: var(--rs-theme-yellow);
}

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

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

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

.mean-container .mean-nav ul li a.mean-expand:hover,
.mean-container .mean-nav ul li span.mean-expand:hover {
  background: var(--rs-theme-yellow);
  color: var(--rs-black);
}

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

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

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

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
}

.mobile-menu.mean-container .menu-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(43, 77, 255, 0.1215686275);
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 10px;
}

.mobile-menu.mean-container .menu-item:hover {
  background: rgba(43, 77, 255, 0.0392156863);
}

.mobile-menu.mean-container .menu-item:hover .title {
  color: var(--rs-theme-primary);
}

.mobile-menu.mean-container .menu-item-has-children.dropdown-opened {
  border-bottom: 0;
}

.mobile-menu.mean-container .rs-mega-menu-btn {
  margin-bottom: 20px;
}

.mobile-menu.mean-container .rs-mega-menu-btn .rs-btn {
  border-radius: 0;
  display: inline-flex;
  float: unset;
  align-items: center;
  justify-content: start;
  font-size: 15px;
  height: unset;
  padding: unset;
  width: unset;
}

.mobile-menu.mean-container .rs-mega-menu-btn .rs-btn .icon-box {
  width: unset;
  padding: 0;
}

.mobile-menu.mean-container .rs-mega-menu-thumb .image-link {
  padding: 0;
}

.mobile-menu.mean-container .rs-mega-menu-desc {
  margin-bottom: 10px;
}

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

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

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

.mobile-menu.mean-container .onepage-menu li a.active {
  color: var(--rs-theme-primary);
}

/* Menu index */
/*----------------------------------------*/
/*  3.2.2 Blog css
/*----------------------------------------*/
.rs-blog-one .rs-blog-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.rs-blog-one .rs-blog-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotateY(180deg);
}

.rs-blog-one .rs-blog-item {
  display: grid;
  grid-template-columns: 220px auto;
  background: var(--rs-white);
  border-radius: 12px;
  padding: 12px;
  gap: 30px;
  align-items: center;
  position: relative;
}

@media only screen and (max-width: 1600px) {
  .rs-blog-one .rs-blog-item {
    grid-template-columns: 180px auto;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-blog-one .rs-blog-item {
    grid-template-columns: 150px auto;
  }
}

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

@media only screen and (max-width: 767px) {
  .rs-blog-one .rs-blog-item {
    grid-template-columns: auto;
    gap: 25px;
    padding-bottom: 25px;
  }
}

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

.rs-blog-one .rs-blog-thumb {
  overflow: hidden;
  border-radius: 8px;
}

.rs-blog-one .rs-blog-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.8s ease;
  transform: scale(1.02);
}

@media only screen and (max-width: 991px) {
  .rs-blog-one .rs-blog-thumb img {
    height: 100%;
  }
}

.rs-blog-one .rs-blog-meta {
  display: flex;
  align-items: center;
  gap: 5px 12px;
  flex-wrap: wrap;
}

.rs-blog-one .rs-blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

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

.rs-blog-one .rs-blog-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-blog-one .rs-blog-meta-author-thumb img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.rs-blog-one .rs-blog-meta-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-blog-one .rs-blog-meta-author-content a {
  font-size: 15px;
  font-weight: 500;
}

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

@media only screen and (max-width: 767px) {
  .rs-blog-one .rs-blog-content {
    padding-inline: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-blog-one .rs-blog-content {
    padding-inline: 10px;
  }
}

.rs-blog-one.has-bg-primary .rs-blog-item {
  background: var(--rs-bg-primary);
}

.rs-blog-one.has-bg-primary .rs-blog-title a:hover {
  color: var(--rs-theme-red);
}

.rs-blog-one.has-bg-primary .rs-blog-meta-author-content a:hover {
  color: var(--rs-theme-red);
}

.rs-blog-one.has-theme-green-two .rs-blog-title a:hover {
  color: var(--rs-theme-green-two);
}

.rs-blog-one.has-theme-green-two .rs-blog-meta-author-content a:hover {
  color: var(--rs-theme-green-two);
}

.rs-blog-one.has-theme-green-two .rs-blog-pagination {
  margin-top: 40px;
}

.rs-blog-one.has-theme-blue-two .rs-blog-title {
  font-size: 20px;
  color: #021E40;
  line-height: 1.5;
}

@media only screen and (max-width: 480px) {
  .rs-blog-one.has-theme-blue-two .rs-blog-title {
    font-size: 18px;
  }
}

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

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

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

.rs-blog-two .rs-blog-item {
  background: var(--rs-white);
  border-radius: 12px;
  padding-top: 12px;
  padding-inline: 12px;
  padding-bottom: 35px;
  position: relative;
}

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

.rs-blog-two .rs-blog-content {
  padding-inline: 15px;
  padding-top: 25px;
}

.rs-blog-two .rs-blog-thumb {
  overflow: hidden;
  border-radius: 8px;
}

.rs-blog-two .rs-blog-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.8s ease;
  transform: scale(1.02);
}

.rs-blog-two .rs-blog-meta {
  display: flex;
  align-items: center;
  gap: 5px 12px;
  flex-wrap: wrap;
}

.rs-blog-two .rs-blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

.rs-blog-two .rs-blog-title {
  margin-top: 15px;
  margin-bottom: 20px;
}

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

.rs-blog-two .rs-blog-meta-author-thumb img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.rs-blog-two .rs-blog-meta-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-blog-two .rs-blog-meta-author-content a {
  font-size: 15px;
  font-weight: 500;
}

.rs-blog-two .rs-blog-meta-author-content a:hover {
  color: var(--rs-theme-red);
}

.rs-blog-two.has-theme-green .rs-blog-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-blog-two.has-theme-green .rs-blog-meta-author-content a:hover {
  color: var(--rs-theme-yellow);
}

.rs-blog-two.has-theme-cyan .rs-blog-title a:hover {
  color: var(--rs-theme-light-cyan);
}

.rs-blog-two.has-theme-cyan .rs-blog-meta-author-content a:hover {
  color: var(--rs-theme-light-cyan);
}

/*----------------------------------------*/
/*  3.2.1 Blog tag css
/*----------------------------------------*/
.rs-blog-tag a {
  color: var(--rs-white);
  font-size: 14px;
  padding: 6px 12px 6px 12px;
  border-radius: 3px;
  background: var(--rs-theme-secondary);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

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

/*----------------------------------------*/
/*  3.2.3 Postbox css
/*----------------------------------------*/
.rs-postbox-more-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rs-border-primary);
  border-bottom: 1px solid var(--rs-border-primary);
  padding-top: 30px;
  margin-top: 50px;
  padding-bottom: 30px;
  background: var(--rs-white);
  position: relative;
  flex-wrap: wrap;
  gap: 20px;
}

@media only screen and (max-width: 480px) {
  .rs-postbox-more-navigation {
    justify-content: center;
  }
}

.rs-postbox-more-navigation a {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--rs-title-primary);
}

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

.rs-postbox-more-navigation a i {
  font-size: 25px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--rs-border-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-postbox-more-item::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background: var(--rs-border-primary);
  left: 50%;
  transform: translateY(-50%) rotate(90deg);
  top: 50%;
}

@media only screen and (max-width: 480px) {
  .rs-postbox-more-item::before {
    content: none;
  }
}

.rs-postbox-more-item:last-child::before {
  content: none;
}

.rs-postbox-item {
  background: var(--rs-white);
  border-radius: 12px;
  padding-top: 16px;
  padding-bottom: 25px;
  padding-inline: 16px;
}

.rs-postbox-item:not(:last-child) {
  margin-bottom: 30px;
}

.rs-postbox-content {
  padding-top: 30px;
  padding-inline: 15px;
}

.rs-postbox-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.rs-postbox-thumb:hover img {
  transform: scale(1.1);
}

.rs-postbox-thumb img {
  width: 100%;
  transition: 0.9s;
}

.rs-postbox-tag {
  position: absolute;
  bottom: 0px;
  inset-inline-start: 30px;
}

.rs-postbox-tag a {
  color: var(--rs-title-primary);
  font-size: 15px;
  text-transform: capitalize;
  padding: 5px 10px;
  background: var(--rs-theme-yellow);
  transition: 0.3s;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-postbox-tag a:hover {
  background: var(--rs-theme-blue);
  color: var(--rs-white);
}

.rs-postbox-meta-list {
  display: flex;
  align-items: center;
  gap: 5px 20px;
  flex-wrap: wrap;
}

.rs-postbox-title {
  margin: 15px 0 15px;
  font-size: 30px;
}

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

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

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

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

.rs-postbox-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-postbox-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

.rs-postbox-btn {
  margin-top: 15px;
}

.rs-postbox-btn .rs-btn {
  font-weight: 600;
  border-radius: 0;
  font-size: 16px;
}

.rs-postbox-comment-form {
  background: var(--rs-white);
  padding: 40px;
  border-radius: 7px;
  margin-top: 40px;
}

@media only screen and (max-width: 991px) {
  .rs-postbox-comment-form {
    padding: 30px;
  }
}

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

.rs-postbox-details-title {
  font-size: 30px;
  margin-bottom: 20px;
}

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

.rs-postbox-details-tags {
  align-items: center;
}

.rs-postbox-details-tags span {
  font-weight: 600;
  padding-inline-end: 10px;
  color: var(--rs-title-primary);
}

.rs-postbox-details-tags.tagcloud a {
  padding: 6px 15px;
  margin-bottom: 0px;
  margin-inline-end: 0px;
  border: 1px solid var(--rs-border-primary);
  border-radius: 6px;
}

.rs-postbox-details-social {
  align-items: center;
  justify-content: space-between;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid var(--rs-border-primary);
  border-bottom: 1px solid var(--rs-border-primary);
  padding-top: 20px;
  padding-bottom: 20px;
}

.rs-postbox-details-comment-title {
  margin-bottom: 20px;
  margin-top: 40px;
}

.rs-postbox-details-video {
  position: relative;
  z-index: 1;
  height: 380px;
  margin-bottom: 30px;
}

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

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

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

.rs-postbox-details-comment-inner ul li {
  list-style: none;
}

.rs-postbox-details-comment-inner ul.children {
  margin-inline-start: 77px;
}

@media only screen and (max-width: 1199px) {
  .rs-postbox-details-comment-inner ul.children {
    margin-inline-start: 0px;
  }
}

.rs-postbox-details-comment-inner ul.children li {
  border-bottom: 1px solid var(--rs-border-primary);
}

.rs-postbox-details-comment-inner ul.children li:first-child {
  border-top: 1px solid var(--rs-border-primary);
}

.rs-postbox-details-avater-meta {
  font-size: 14px;
  margin-bottom: 8px;
  margin-top: 8px;
  display: inline-block;
}

.rs-postbox-details-comment-content P {
  margin-bottom: 20px;
}

.rs-postbox-details-comment-box {
  margin-bottom: 30px;
  padding-top: 30px;
  gap: 20px 30px;
  display: flex;
  align-items: start;
}

@media only screen and (max-width: 575px) {
  .rs-postbox-details-comment-box {
    flex-wrap: wrap;
  }
}

.rs-postbox-details-comment-reply a {
  padding: 6px 20px;
  background: var(--rs-theme-primary);
  color: var(--rs-title-primary);
  font-size: 14px;
  border-radius: 5px;
}

.rs-postbox-details-comment-reply a:hover {
  background: var(--rs-theme-secondary);
  color: var(--rs-white);
}

.rs-postbox-details-comment-thumb img {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
}

.rs-postbox-details-social .rs-postbox-social span {
  font-weight: 600;
  padding-inline-end: 10px;
  color: var(--rs-title-primary);
}

.rs-postbox-details-social .rs-postbox-social a {
  color: #616C74;
  font-size: 16px;
}

.rs-postbox-details-social .rs-postbox-social .rs-theme-social {
  gap: 15px;
}

.rs-postbox-quote {
  margin-bottom: 30px;
  position: relative;
}

@media only screen and (max-width: 575px) {
  .rs-postbox-quote {
    margin-top: 50px;
  }
}

.rs-postbox-quote blockquote {
  background: var(--rs-white);
  border-radius: 6px;
  padding-top: 30px;
  padding-inline-start: 40px;
  padding-inline-end: 40px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-postbox-quote blockquote {
    padding-top: 20px;
    padding-inline-start: 30px;
    padding-inline-end: 30px;
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-postbox-quote blockquote {
    padding-top: 15px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
    padding-bottom: 25px;
  }
}

.rs-postbox-quote p {
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 31px;
  color: var(--rs-title-primary);
}

@media only screen and (max-width: 1199px) {
  .rs-postbox-quote p {
    margin-bottom: 20px;
  }
}

.rs-postbox-quote cite {
  text-transform: uppercase;
  font-style: normal;
  color: var(--rs-black);
  font-weight: 500;
  position: relative;
  padding-inline-start: 57px;
}

.rs-postbox-quote cite::before {
  content: "";
  background: var(--rs-theme-blue);
  height: 2px;
  width: 42px;
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
}

.rs-postbox-quote-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.rs-postbox-quote .rs-postbox-quote-icon svg {
  width: 36px;
}

.rs-postbox-quote .rs-postbox-quote-icon svg path {
  fill: var(--rs-theme-blue);
}

.rs-postbox-details-feature {
  margin-top: 20px;
}

.rs-postbox-details-feature ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media only screen and (max-width: 1199px) {
  .rs-postbox-details-feature ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 575px) {
  .rs-postbox-details-feature ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-postbox-details-feature ul li {
  list-style: none;
  position: relative;
  display: flex;
  color: var(--rs-black);
  gap: 7px;
  font-weight: 500;
}

.rs-postbox-details-feature ul li span {
  width: 22px;
  height: 22px;
  border: 1px solid var(--rs-border-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.rs-postbox-details-feature ul li span svg {
  width: 11px;
  height: 11px;
}

.rs-postbox-comment-form .rs-contact-input-title {
  font-size: 16px;
  color: var(--rs-title-primary);
  margin-bottom: 7px;
  font-weight: 500;
}

.rs-postbox-comment-form .rs-contact-input input {
  height: 56px;
  border-radius: 6px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  border: 1px solid var(--rs-border-primary);
}

.rs-postbox-comment-form .rs-contact-input input:focus {
  border-color: var(--rs-theme-yellow);
}

.rs-postbox-comment-form .rs-contact-input textarea {
  height: 200px;
  border-radius: 6px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  border: 1px solid var(--rs-border-primary);
}

.rs-postbox-comment-form .rs-contact-input textarea:focus {
  border-color: var(--rs-theme-yellow);
}

.rs-blog-post-one .rs-blog-post-title {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.25;
}

.rs-blog-post-one .rs-blog-post-social {
  align-items: center;
  display: flex;
  gap: 15px;
}

.rs-blog-post-one .rs-blog-post-social-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--rs-title-primary);
  flex: 0 0 auto;
}

.rs-blog-post-one .rs-blog-post-right {
  margin-top: 45px;
}

@media only screen and (max-width: 991px) {
  .rs-blog-post-one .rs-blog-post-right {
    margin-top: 0;
  }
}

.rs-blog-post-one .rs-blog-post-description {
  max-width: 90%;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-blog-post-one .rs-blog-post-description {
    max-width: 100%;
  }
}

/*----------------------------------------*/
/*  3.2.5 Sidebar css
/*----------------------------------------*/
.rs-sidebar-sticky {
  position: sticky;
  top: 110px;
}

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

.sidebar-widget {
  position: relative;
  background: var(--rs-white);
  padding: 30px 30px 38px 30px;
  border-radius: 8px;
}

@media only screen and (max-width: 1600px) {
  .sidebar-widget {
    padding: 10px 20px 20px 20px;
  }
}

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

@media only screen and (max-width: 480px) {
  .sidebar-widget {
    padding: 10px 20px 20px 20px;
  }
}

.sidebar-widget.widget-categories ul li {
  list-style: none;
}

.sidebar-widget.widget-categories ul li:not(:last-child) {
  border-bottom: 1px solid rgba(62, 62, 62, 0.1);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.sidebar-widget.widget-categories ul li a {
  cursor: pointer;
  transition: all 0.3s ease 0s;
  position: relative;
}

.sidebar-widget.widget-categories ul li a:hover {
  color: var(--rs-theme-primary);
}

.sidebar-widget.widget-categories {
  padding: 30px 30px 30px 30px;
}

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

.sidebar-widget.widget-categories.has-content-none::before {
  content: none;
}

.sidebar-widget.widget-categories ul li {
  list-style: none;
}

.sidebar-widget.widget-categories ul li:not(:last-child) {
  border-bottom: 1px solid rgba(2, 1, 1, 0.09);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.sidebar-widget.widget-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-widget.widget-categories ul li a:hover {
  color: var(--rs-theme-yellow);
}

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

.sidebar-widget.widget-price-filter {
  overflow-x: clip;
}

.sidebar-search-input {
  position: relative;
}

.sidebar-search-input input {
  padding-inline-end: 50px;
  background: var(--rs-white);
  border: 1px solid #ddd;
  height: 60px;
}

.sidebar-search-input button {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  color: var(--rs-black);
  font-size: 16px;
  transform: translateY(-50%);
}

.sidebar-search-input button:hover {
  color: var(--rs-theme-primary);
}

.sidebar-widget-title {
  margin-bottom: 30px;
  position: relative;
  font-size: 22px;
  padding-bottom: 12px;
  color: var(--rs-title-tertiary);
}

.sidebar-widget-title::before {
  content: "";
  width: 20px;
  height: 2px;
  position: absolute;
  inset-inline-start: 0px;
  bottom: 0;
  background: #2B3944;
}

.sidebar-widget-title::after {
  content: "";
  width: 65px;
  height: 2px;
  position: absolute;
  inset-inline-start: 30px;
  bottom: 0;
  background: var(--rs-theme-yellow);
}

.sidebar-widget-title.has-large {
  font-size: 36px;
}

@media only screen and (max-width: 575px) {
  .sidebar-widget-title.has-large {
    font-size: 30px;
  }
}

.sidebar-widget-title.has-border {
  position: relative;
  margin-bottom: 40px;
  border-inline-start: 2px solid var(--rs-theme-primary);
  padding-inline-start: 20px;
}

.sidebar-blog-item {
  display: flex;
  gap: 20px;
}

@media only screen and (max-width: 480px) {
  .sidebar-blog-item {
    display: grid;
    grid-template-columns: auto;
  }
}

.sidebar-blog-item:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 20px;
}

.sidebar-blog-item:hover .sidebar-blog-thumb img {
  transform: scale3d(1.07, 1.07, 1.07);
}

.sidebar-blog-thumb {
  overflow: hidden;
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 4px;
}

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

.sidebar-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: all 1s cubic-bezier(0, 0, 0.2, 1);
}

.sidebar-blog-title {
  font-size: 16px;
}

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

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

.sidebar-blog-title a:hover {
  color: var(--rs-theme-yellow);
}

.sidebar-blog-meta {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1199px) {
  .sidebar-blog-meta {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .sidebar-blog-meta {
    font-size: 16px;
  }
}

.sidebar-blog-meta i {
  color: var(--rs-theme-primary);
}

.sidebar-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(116, 116, 117, 0.141);
  background: transparent;
}

.sidebar-social a:hover {
  border-color: var(--rs-theme-primary);
}

/*----------------------------------------*/
/*  3.2.4 Sidebar css
/*----------------------------------------*/
.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.tagcloud.has-bg-white a {
  background: var(--rs-white);
}

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

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

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

/*----------------------------------------*/
/*  3.4.1 Footer Style
/*----------------------------------------*/
.rs-footer-one {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.rs-footer-one::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, #003359 34.5%, #003A65 0%);
  z-index: -1;
}

[dir=rtl] .rs-footer-one::before {
  transform: rotateY(180deg);
}

@media only screen and (max-width: 1366px) {
  .rs-footer-one::before {
    background-image: linear-gradient(180deg, #003359 0%, #003A65 100%);
  }
}

@media only screen and (max-width: 991px) {
  .rs-footer-one .rs-footer-widget-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

.rs-footer-one .rs-footer-content-item {
  display: flex;
  align-items: start;
  flex-direction: column;
}

.rs-footer-one .rs-footer-widget-contact-info {
  margin-top: 35px;
  margin-bottom: 35px;
  display: inline-flex;
  gap: 20px 40px;
}

@media only screen and (max-width: 1199px) {
  .rs-footer-one .rs-footer-widget-contact-info {
    gap: 20px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-footer-one .rs-footer-widget-contact-info {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.rs-footer-one .rs-footer-app-badges {
  display: inline-flex;
  gap: 15px;
  margin-bottom: 90px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1199px) {
  .rs-footer-one .rs-footer-app-badges {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-footer-one .rs-footer-app-badges {
    margin-bottom: 0px;
  }
}

.rs-footer-one .rs-footer-widget-title {
  color: var(--rs-white);
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}

.rs-footer-one .rs-footer-widget-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  bottom: 0;
}

.rs-footer-one .rs-footer-content-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.43);
  margin-bottom: 3px;
}

.rs-footer-one .rs-footer-content-item a {
  color: var(--rs-white);
  font-size: 14px;
}

.rs-footer-one .rs-footer-content-item a:hover {
  color: var(--rs-theme-yellow);
}

.rs-footer-one .rs-footer-widget-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rs-footer-one .rs-footer-social-title {
  font-size: 16px;
  color: var(--rs-white);
  font-weight: 500;
}

.rs-footer-one .rs-footer-wrapper {
  display: grid;
  grid-template-columns: 400px auto;
  gap: 30px;
  padding-top: 100px;
}

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

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

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

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

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

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

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

.rs-footer-one .rs-footer-left {
  padding-bottom: 35px;
}

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

.rs-footer-one .rs-footer-widget-link ul li {
  list-style: none;
  font-weight: 400;
  color: rgba(229, 229, 229, 0.8);
}

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

.rs-footer-one .rs-footer-widget-link ul li a {
  position: relative;
  transition: 0.5s;
}

.rs-footer-one .rs-footer-widget-link ul li a:hover {
  color: var(--rs-theme-primary);
  padding-inline-start: 20px;
}

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

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

.rs-footer-one .rs-footer-widget-link.has-theme-yellow ul li a:hover {
  color: var(--rs-theme-yellow);
}

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

.rs-footer-one .rs-footer-subscribe-from {
  background-color: var(--rs-bg-dark-blue);
  padding-top: 16px;
  padding-bottom: 16px;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .rs-footer-one .rs-footer-subscribe-from {
    margin-top: 40px;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
  }
}

.rs-footer-one .rs-footer-subscribe-title {
  color: var(--rs-white);
  font-weight: 500;
}

.rs-footer-one .rs-cta-input {
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .rs-footer-one .rs-cta-input {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .rs-footer-one .rs-cta-input {
    width: unset;
  }
}

@media only screen and (max-width: 767px) {
  .rs-footer-one .rs-cta-input {
    width: 100%;
  }
}

.rs-footer-one .rs-cta-input input {
  background: #003359;
  border-color: #003359;
  height: 56px;
  padding-inline-end: 65px;
  color: var(--rs-white);
}

.rs-footer-one .rs-cta-input input::placeholder {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 400;
}

.rs-footer-one .rs-cta-input button {
  font-weight: 400;
  background: var(--rs-theme-blue);
  position: absolute;
  inset-inline-end: 5px;
  top: 5px;
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.rs-footer-one .rs-cta-input button .icon-box svg {
  width: 16px;
  height: 16px;
}

.rs-footer-one .rs-cta-input button:hover {
  background: var(--rs-theme-yellow);
}

.rs-footer-one .rs-cta-input button:hover .icon-box svg path {
  fill: var(--rs-black);
}

.rs-footer-one .rs-form-check {
  margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
  .rs-footer-one .rs-form-check input[type=checkbox]~label {
    font-size: 14px;
  }
}

.rs-footer-one .rs-footer-shape {
  position: absolute;
  inset-inline-end: 40px;
  bottom: 60px;
}

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

[dir=rtl] .rs-footer-one .rs-footer-shape {
  transform: rotateY(180deg);
}

.rs-footer-one.has-theme-red::before {
  /* background-image: linear-gradient(90deg, #272B35 34.5%, #21252D 0%); */
}

[dir=rtl] .rs-footer-one.has-theme-red::before {
  transform: rotateY(180deg);
}

@media only screen and (max-width: 1199px) {
  .rs-footer-one.has-theme-red::before {
    background-image: linear-gradient(100deg, #272B35 0%, #21252D 100%);
  }
}

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

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

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

.rs-footer-one.has-theme-red .rs-cta-input input {
  background: #272B35;
  border-color: #272B35;
}

.rs-footer-one.has-theme-red .rs-cta-input button {
  background-color: #21252D;
}

.rs-footer-one.has-theme-red .rs-cta-input button:hover {
  background: var(--rs-theme-red);
}

.rs-footer-one.has-theme-red .rs-cta-input button:hover .icon-box svg path {
  fill: var(--rs-white);
}

.rs-footer-one.has-theme-red .rs-footer-social a {
  background: #21252D;
}

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

.rs-footer-one.has-theme-green::before {
  background-image: linear-gradient(90deg, #346359 34.5%, var(--rs-theme-green) 0%);
}

[dir=rtl] .rs-footer-one.has-theme-green::before {
  transform: rotateY(180deg);
}

@media only screen and (max-width: 1199px) {
  .rs-footer-one.has-theme-green::before {
    background-image: linear-gradient(90deg, #346359 0%, var(--rs-theme-green) 100%);
  }
}

.rs-footer-one.has-theme-green .rs-footer-widget-link.has-theme-yellow ul li a:hover {
  color: var(--rs-theme-yellow);
}

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

.rs-footer-one.has-theme-green .rs-footer-content-item a:hover {
  color: var(--rs-theme-yellow);
}

.rs-footer-one.has-theme-green .rs-cta-input input {
  background: #346359;
  border-color: #346359;
}

.rs-footer-one.has-theme-green .rs-cta-input button {
  background-color: var(--rs-theme-green);
}

.rs-footer-one.has-theme-green .rs-cta-input button:hover {
  background: var(--rs-theme-yellow);
}

.rs-footer-one.has-theme-green .rs-cta-input button:hover .icon-box svg path {
  fill: var(--rs-black);
}

.rs-footer-one.has-theme-green-two::before {
  background-image: linear-gradient(90deg, #171715 34.5%, #1D1D1B 0%);
}

[dir=rtl] .rs-footer-one.has-theme-green-two::before {
  transform: rotateY(180deg);
}

@media only screen and (max-width: 1199px) {
  .rs-footer-one.has-theme-green-two::before {
    background-image: linear-gradient(90deg, #171715 0%, #1D1D1B 0%);
  }
}

.rs-footer-one.has-theme-green-two .rs-footer-widget-link.has-theme-yellow ul li a:hover {
  color: var(--rs-theme-green-two);
}

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

.rs-footer-one.has-theme-green-two .rs-footer-content-item a:hover {
  color: var(--rs-theme-green-two);
}

.rs-footer-one.has-theme-green-two .rs-cta-input input {
  background: #171715;
  border-color: #171715;
}

.rs-footer-one.has-theme-green-two .rs-cta-input button {
  background-color: var(--rs-bg-black);
}

.rs-footer-one.has-theme-green-two .rs-cta-input button:hover {
  background: var(--rs-theme-green-two);
}

.rs-footer-one.has-theme-green-two .rs-cta-input button:hover .icon-box svg path {
  fill: var(--rs-white);
}

.rs-footer-one.has-theme-cyan::before {
  background-image: linear-gradient(90deg, #0F6487 34.5%, var(--rs-theme-cyan) 0%);
}

[dir=rtl] .rs-footer-one.has-theme-cyan::before {
  transform: rotateY(180deg);
}

@media only screen and (max-width: 1199px) {
  .rs-footer-one.has-theme-cyan::before {
    background-image: linear-gradient(-100deg, #0f6487 0%, #0C5776 100%);
  }
}

.rs-footer-one.has-theme-cyan .rs-footer-widget-link.has-theme-cyan ul li a:hover {
  color: var(--rs-theme-light-cyan);
}

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

.rs-footer-one.has-theme-cyan .rs-footer-content-item a:hover {
  color: var(--rs-theme-light-cyan);
}

.rs-footer-one.has-theme-cyan .rs-cta-input input {
  background: #0F6487;
  border-color: #0F6487;
}

.rs-footer-one.has-theme-cyan .rs-cta-input button {
  background-color: var(--rs-theme-cyan);
}

.rs-footer-one.has-theme-cyan .rs-cta-input button:hover {
  background: var(--rs-theme-light-cyan);
}

.rs-footer-one.has-theme-cyan .rs-cta-input button:hover .icon-box svg path {
  fill: var(--rs-white);
}

.rs-footer-one.has-theme-red-two::before {
  background-image: linear-gradient(90deg, #111010 34.5%, #030303 0%);
}

[dir=rtl] .rs-footer-one.has-theme-red-two::before {
  transform: rotateY(180deg);
}

@media only screen and (max-width: 1199px) {
  .rs-footer-one.has-theme-red-two::before {
    background-image: linear-gradient(90deg, #111010 0%, #030303 100%);
  }
}

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

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

.rs-footer-one.has-theme-red-two .rs-footer-content-item a:hover {
  color: var(--rs-theme-red);
}

.rs-footer-one.has-theme-red-two .rs-cta-input input {
  background: rgba(255, 255, 255, 0.05);
  border-color: #272B35;
}

.rs-footer-one.has-theme-red-two .rs-cta-input button {
  background-color: #21252D;
}

.rs-footer-one.has-theme-red-two .rs-cta-input button:hover {
  background: var(--rs-theme-red);
}

.rs-footer-one.has-theme-red-two .rs-cta-input button:hover .icon-box svg path {
  fill: var(--rs-white);
}

.rs-footer-one.has-theme-red-two .rs-footer-social a {
  background: #21252D;
}

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

/*----------------------------------------*/
/*  3.4.2 Copyright Style
/*----------------------------------------*/
.rs-copyright-one {
  position: relative;
  margin-top: 100px;
}

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

@media only screen and (max-width: 767px) {
  .rs-copyright-one {
    margin-top: 55px;
  }
}

.rs-copyright-one .rs-footer-copyright-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.082);
}

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

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

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

.rs-copyright-one .rs-footer-copyright p {
  color: var(--rs-white);
  text-align: center;
}

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

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

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

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

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

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

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

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

.rs-copyright-one .rs-footer-copyright-link a {
  font-size: 16px;
  color: var(--rs-white);
}

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

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

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

.rs-copyright-one .rs-footer-copyright-link.has-theme-green-two a:hover {
  color: var(--rs-theme-green-two);
}

.rs-copyright-one .rs-footer-copyright-link.has-theme-cyan a:hover {
  color: var(--rs-theme-light-cyan);
}

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

/*----------------------------------------*/
/*  4.1 About css
/*----------------------------------------*/
.rs-about-one {
  position: relative;
  z-index: 1;
}

.rs-about-one .rs-about-shape {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  z-index: -1;
}

.rs-about-one .rs-about-shape img {
  opacity: 0.5;
}

.rs-about-one .section-title {
  max-width: 670px;
}

@media only screen and (max-width: 991px) {
  .rs-about-one .section-title {
    max-width: 100%;
  }
}

.rs-about-one .section-desc {
  max-width: 670px;
}

@media only screen and (max-width: 991px) {
  .rs-about-one .section-desc {
    max-width: 100%;
  }
}

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

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

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

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

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

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

.rs-about-one .rs-about-thumb {
  position: relative;
  z-index: 1;
}

.rs-about-one .rs-about-thumb:first-child {
  margin-bottom: 20px;
}

.rs-about-one .rs-about-thumb>img {
  width: 100%;
  border: 6px solid var(--rs-white);
  border-radius: 30px;
}

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

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

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

.rs-about-one .rs-about-list-item {
  display: flex;
  align-items: start;
  gap: 15px;
}

.rs-about-one .rs-about-list-item:not(:last-child) {
  margin-bottom: 13px;
}

.rs-about-one .rs-about-list-item p {
  color: var(--rs-title-tertiary);
  font-weight: 500;
}

.rs-about-one .rs-about-list-icon {
  width: 22px;
  min-width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 4px;
}

.rs-about-one .rs-about-list-icon svg {
  width: 11px;
  height: 11px;
}

.rs-about-one .rs-about-award {
  background: var(--rs-theme-blue);
  border-radius: 12px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-inline: 30px;
  display: flex;
  gap: 15px;
  width: 360px;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .rs-about-one .rs-about-award {
    flex-wrap: wrap;
    padding-inline: 20px;
    width: 250px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-about-one .rs-about-award {
    width: 100%;
    flex-wrap: unset;
  }
}

@media only screen and (max-width: 480px) {
  .rs-about-one .rs-about-award {
    flex-wrap: wrap;
  }
}

.rs-about-one .rs-about-award-shape {
  position: absolute;
  inset-inline-start: 0;
  bottom: 10px;
}

.rs-about-one .rs-about-award-icon svg {
  width: 50px;
  height: 50px;
}

.rs-about-one .rs-about-award-icon svg path {
  fill: var(--rs-theme-yellow);
}

.rs-about-one .rs-about-award-title {
  color: var(--rs-white);
  margin-bottom: 8px;
}

.rs-about-one .rs-about-award-desc {
  color: rgba(255, 255, 255, 0.8);
}

.rs-about-one.has-theme-green .rs-about-thumb {
  margin-bottom: 0;
  margin-inline-end: 65px;
}

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

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

@media only screen and (max-width: 1199px) {
  .rs-about-one.has-theme-green .rs-about-thumb {
    margin-inline-end: 0;
  }
}

.rs-about-one.has-theme-green .rs-about-wrapper {
  display: grid;
  grid-template-columns: 555px auto;
  gap: 30px 60px;
}

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

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

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

.rs-about-one.has-theme-green .rs-about-badge {
  background: var(--rs-theme-green-two);
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  position: absolute;
  inset-inline-end: -65px;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1199px) {
  .rs-about-one.has-theme-green .rs-about-badge {
    inset-inline-end: auto;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
  }
}

.rs-about-one.has-theme-green .rs-about-badge img {
  width: 90px;
}

.rs-about-one.has-theme-green .rs-about-award {
  background: var(--rs-white);
}

@media only screen and (max-width: 1600px) {
  .rs-about-one.has-theme-green .rs-about-award {
    width: 320px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-inline: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-about-one.has-theme-green .rs-about-award {
    width: 100%;
  }
}

.rs-about-one.has-theme-green .rs-about-award-title {
  color: var(--rs-title-primary);
}

.rs-about-one.has-theme-green .rs-about-award-desc {
  color: var(--rs-text-primary);
}

.rs-about-one.has-theme-green .rs-about-award-icon svg path {
  fill: var(--rs-theme-green-two);
}

.rs-about-one.has-theme-green .rs-about-list-icon {
  border-color: var(--rs-border-primary);
}

.rs-about-one.has-theme-green .rs-about-list-icon svg path {
  fill: var(--rs-theme-green-two);
}

.rs-about-one.has-theme-green .rs-about-feature {
  gap: 20px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 1199px) {
  .rs-about-one.has-theme-green .rs-about-feature {
    flex-wrap: wrap;
  }
}

.rs-about-one.has-theme-green .rs-about-shape {
  z-index: 1;
  inset-inline-end: 160px;
  inset-inline-start: auto;
}

@media only screen and (max-width: 1199px) {
  .rs-about-one.has-theme-green .rs-about-shape {
    inset-inline-end: 60px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-about-one.has-theme-green .rs-about-shape {
    display: none;
  }
}

.rs-about-one.has-theme-green .rs-about-shape img {
  opacity: 1;
}

.rs-about-one.has-theme-green .section-title-wrapper {
  max-width: 630px;
}

.rs-about-one.has-theme-green .rs-about-shape-two {
  position: absolute;
  top: 155px;
  inset-inline-end: 60px;
}

@media only screen and (max-width: 1600px) {
  .rs-about-one.has-theme-green .rs-about-shape-two {
    top: 30px;
    inset-inline-end: 30px;
  }
}

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

.rs-about-two {
  position: relative;
}

.rs-about-two .rs-about-shape {
  position: absolute;
  top: 245px;
  inset-inline-end: 70px;
}

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

.rs-about-two .section-desc {
  margin-bottom: 25px;
}

.rs-about-two .rs-about-wrapper {
  display: grid;
  grid-template-columns: 510px 620px;
  gap: 30px 70px;
}

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

@media only screen and (max-width: 1366px) {
  .rs-about-two .rs-about-wrapper {
    grid-template-columns: 450px auto;
    align-items: start;
  }
}

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

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

.rs-about-two .rs-about-thumb-wrapper {
  position: relative;
  z-index: 1;
}

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

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

.rs-about-two .rs-about-badge {
  background: var(--rs-theme-red);
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 132px;
  height: 132px;
  position: absolute;
  left: 50%;
  z-index: 1;
  top: 50%;
  transform: translate(-50%, -50%);
}

.rs-about-two .rs-about-badge img {
  width: 90px;
}

.rs-about-two .rs-about-thumb {
  position: relative;
  z-index: 1;
}

.rs-about-two .rs-about-thumb:first-child {
  margin-bottom: 20px;
}

.rs-about-two .rs-about-thumb img {
  width: 100%;
  border: 6px solid var(--rs-white);
  border-radius: 30px;
}

.rs-about-two .rs-about-list-wrapper {
  margin-top: 30px;
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 600px;
}

@media only screen and (max-width: 767px) {
  .rs-about-two .rs-about-list-wrapper {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-about-two .rs-about-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rs-about-two .rs-about-list-item p {
  color: var(--rs-title-tertiary);
  font-weight: 500;
}

.rs-about-two .rs-about-list-icon {
  width: 22px;
  min-width: 22px;
  height: 22px;
  border: 1px solid var(--rs-border-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-about-two .rs-about-list-icon svg {
  width: 11px;
  height: 11px;
}

.rs-about-two .rs-about-list-icon svg path {
  fill: var(--rs-theme-red);
}

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

.rs-about-two .rs-about-tab .nav-link {
  background: transparent;
  color: var(--rs-text-primary);
  font-weight: 500;
  padding: 10px 22px 10px 22px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 6px 6px 0 0;
  font-family: var(--rs-ff-title);
}

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

.rs-about-two .rs-about-tab .nav-link.active {
  color: var(--rs-theme-red);
  background: var(--rs-white);
}

.rs-about-two .rs-about-tab .nav-link:hover {
  color: var(--rs-theme-red);
}

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

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

.rs-about-two .rs-about-tab-content {
  border-radius: 6px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  background: var(--rs-white);
}

.rs-about-two .rs-about-tab-content p {
  font-size: 15px;
}

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

.rs-about-two .rs-about-accordion {
  display: none;
}

@media only screen and (max-width: 575px) {
  .rs-about-two .rs-about-accordion {
    display: block;
  }
}

.rs-about-two .rs-about-accordion .rs-accordion-one .accordion-button {
  font-size: 16px;
  padding-inline-end: 0px;
}

.rs-about-two .rs-about-accordion .rs-accordion-one .accordion-button:not(.collapsed) {
  color: var(--rs-theme-red);
}

.rs-about-two .rs-about-accordion .rs-accordion-one .rs-accordion-item {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
}

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

.rs-about-two .rs-about-accordion .rs-accordion-one .accordion-body {
  padding: 10px 0px 0 0px;
}

.rs-about-three {
  position: relative;
}

.rs-about-three .rs-about-wrapper {
  display: grid;
  grid-template-columns: 560px auto;
  gap: 30px 70px;
  align-items: center;
}

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

@media only screen and (max-width: 1199px) {
  .rs-about-three .rs-about-wrapper {
    grid-template-columns: 370px auto;
    align-items: start;
  }
}

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

.rs-about-three .rs-about-thumb-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.rs-about-three .rs-about-thumb-inner {
  display: flex;
  gap: 20px;
}

.rs-about-three .rs-about-thumb-inner .rs-about-thumb {
  width: 100%;
}

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

.rs-about-three .rs-about-feature {
  display: inline-flex;
  align-items: center;
  gap: 20px 30px;
  margin-top: 35px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1199px) {
  .rs-about-three .rs-about-feature {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 991px) {
  .rs-about-three .rs-about-feature {
    flex-wrap: unset;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about-three .rs-about-feature {
    flex-wrap: wrap;
  }
}

.rs-about-three .rs-about-feature-item {
  display: inline-flex;
  align-items: start;
  gap: 25px;
}

.rs-about-three .rs-about-feature-title {
  margin-bottom: 10px;
}

@media only screen and (max-width: 1600px) {
  .rs-about-three .rs-about-feature-title {
    font-size: 18px;
  }
}

.rs-about-three .rs-about-feature-icon {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rs-white);
}

.rs-about-three .rs-about-feature-icon svg {
  width: 45px;
  height: 45px;
}

.rs-about-three .rs-about-feature-icon svg path {
  fill: var(--rs-theme-red);
}

.rs-about-three .rs-about-info {
  display: inline-flex;
  align-items: center;
  gap: 30px 45px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .rs-about-three .rs-about-info {
    gap: 30px 30px;
  }
}

.rs-about-three .rs-about-author-thumb img {
  width: 60px;
  height: 60px;
  border-radius: 50px;
}

.rs-about-three .rs-about-author-title {
  font-size: 17px;
}

.rs-about-three .rs-about-author-desig {
  font-size: 14px;
}

.rs-about-three .rs-about-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rs-about-four {
  position: relative;
}

.rs-about-four .section-desc {
  margin-bottom: 40px;
  color: var(--rs-text-secondary);
}

.rs-about-four .rs-about-wrapper {
  display: grid;
  grid-template-columns: 560px auto;
  gap: 30px 70px;
  align-items: center;
}

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

@media only screen and (max-width: 1199px) {
  .rs-about-four .rs-about-wrapper {
    grid-template-columns: 350px auto;
    align-items: start;
  }
}

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

.rs-about-four .rs-about-thumb-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
}

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

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

@media only screen and (max-width: 575px) {
  .rs-about-four .rs-about-thumb-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.rs-about-four .rs-about-thumb.thumb-two {
  margin-inline-start: -205px;
  margin-top: 190px;
}

@media only screen and (max-width: 1199px) {
  .rs-about-four .rs-about-thumb.thumb-two {
    margin-top: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-about-four .rs-about-thumb.thumb-two {
    margin-inline-start: 0px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-about-four .rs-about-thumb.thumb-two {
    margin-top: 0px;
  }
}

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

.rs-about-four .rs-about-badge {
  background: var(--rs-theme-green);
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  position: absolute;
  inset-inline-end: 30px;
  z-index: 1;
  top: 25px;
}

@media only screen and (max-width: 1600px) {
  .rs-about-four .rs-about-badge {
    width: 100px;
    height: 100px;
    inset-inline-end: 15px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-about-four .rs-about-badge {
    inset-inline-end: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-about-four .rs-about-badge {
    inset-inline-end: 100px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-about-four .rs-about-badge {
    display: none;
  }
}

.rs-about-four .rs-about-badge img {
  width: 90px;
}

.rs-about-four .rs-about-shape-one {
  position: absolute;
  bottom: 70px;
  inset-inline-start: 50px;
}

@media only screen and (max-width: 991px) {
  .rs-about-four .rs-about-shape-one {
    bottom: 50px;
    inset-inline-start: auto;
    inset-inline-end: 350px;
  }
}

.rs-about-four .rs-about-info {
  display: inline-flex;
  align-items: center;
  gap: 30px 40px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 575px) {
  .rs-about-four .rs-about-tab {
    display: none;
  }
}

.rs-about-four .rs-about-tab .nav-link {
  background: var(--rs-white);
  color: var(--rs-title-primary);
  font-weight: 500;
  padding: 9px 50px 9px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: var(--rs-ff-title);
  font-size: 18px;
}

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

@media only screen and (max-width: 1600px) {
  .rs-about-four .rs-about-tab .nav-link {
    padding: 10px 30px 10px 30px;
  }
}

.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-green);
  border-radius: 2px 2px 0 0;
}

.rs-about-four .rs-about-tab .nav-link.active {
  color: var(--rs-theme-green);
}

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

.rs-about-four .rs-about-tab .nav-link:hover {
  color: var(--rs-theme-green);
}

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

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

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

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

.rs-about-four .rs-about-tab-content p {
  color: var(--rs-text-secondary);
}

.rs-about-four .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-four .rs-counter-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-about-four .rs-counter-number,
.rs-about-four .prefix {
  font-size: 46px;
  font-weight: 700;
  color: var(--rs-title-primary);
  line-height: 1;
  font-family: var(--rs-ff-title);
}

@media only screen and (max-width: 1199px) {

  .rs-about-four .rs-counter-number,
  .rs-about-four .prefix {
    font-size: 40px;
  }
}

.rs-about-four .rs-counter-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--rs-title-primary);
  font-family: var(--rs-ff-title);
}

.rs-about-four .rs-about-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-about-four .rs-about-counter-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rs-about-four .rs-about-counter-icon svg {
  width: 50px;
  height: 50px;
}

.rs-about-four .rs-about-accordion {
  display: none;
}

@media only screen and (max-width: 575px) {
  .rs-about-four .rs-about-accordion {
    display: block;
  }
}

.rs-about-four .rs-about-accordion .rs-accordion-one .accordion-button {
  font-size: 16px;
  padding-inline-end: 0px;
}

.rs-about-four .rs-about-accordion .rs-accordion-one .rs-accordion-item {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
}

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

.rs-about-four .rs-about-accordion .rs-accordion-one .accordion-body {
  padding: 10px 0px 0 0px;
}

.rs-about-five {
  position: relative;
  z-index: 1;
  background: var(--rs-theme-cyan);
}

.rs-about-five .rs-about-shape {
  position: absolute;
  top: 220px;
  inset-inline-start: 225px;
}

@media only screen and (max-width: 1600px) {
  .rs-about-five .rs-about-shape {
    inset-inline-start: 50px;
  }
}

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

.rs-about-five .rs-about-shape-two {
  position: absolute;
  top: 240px;
  inset-inline-end: 60px;
  animation: rs-rotate-anim 3s linear 0s infinite alternate;
}

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

.rs-about-five .rs-about-shape-two img {
  width: 80px;
}

.rs-about-five .section-desc {
  color: var(--rs-white);
  max-width: 620px;
}

.rs-about-five .rs-about-wrapper {
  display: grid;
  grid-template-columns: 560px auto;
  gap: 30px 80px;
  align-items: center;
}

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

@media only screen and (max-width: 1199px) {
  .rs-about-five .rs-about-wrapper {
    grid-template-columns: 350px auto;
    align-items: start;
  }
}

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

.rs-about-five .rs-about-thumb-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 25px;
}

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

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

@media only screen and (max-width: 575px) {
  .rs-about-five .rs-about-thumb-wrapper {
    gap: 15px;
  }
}

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

.rs-about-five .rs-about-thumb:first-child {
  margin-bottom: 20px;
}

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

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

@media only screen and (max-width: 480px) {
  .rs-about-five .rs-about-thumb {
    margin-bottom: 0;
  }
}

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

.rs-about-five .rs-about-award {
  background: #0F6487;
  border-radius: 12px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-inline: 30px;
  display: flex;
  gap: 15px;
  width: 370px;
  position: relative;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .rs-about-five .rs-about-award {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-inline: 20px;
    width: 330px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-about-five .rs-about-award {
    width: 100%;
    flex-wrap: wrap;
  }
}

.rs-about-five .rs-about-award-icon svg {
  width: 60px;
  height: 60px;
}

.rs-about-five .rs-about-award-icon svg path {
  fill: var(--rs-white);
}

.rs-about-five .rs-about-award-title {
  color: var(--rs-white);
  margin-bottom: 8px;
}

.rs-about-five .rs-about-award-desc {
  color: rgba(255, 255, 255, 0.8);
}

.rs-about-five .rs-about-meta {
  display: flex;
  align-items: end;
  gap: 30px 50px;
  margin-top: 60px;
}

@media only screen and (max-width: 1199px) {
  .rs-about-five .rs-about-meta {
    gap: 30px 30px;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about-five .rs-about-meta {
    flex-wrap: wrap;
  }
}

.rs-about-five .rs-about-badge {
  background: var(--rs-theme-light-cyan);
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  position: absolute;
  left: 50%;
  z-index: 2;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1199px) {
  .rs-about-five .rs-about-badge {
    width: 100px;
    height: 100px;
    padding: 15px;
  }
}

.rs-about-five .rs-about-badge img {
  width: 90px;
}

.rs-about-six {
  position: relative;
}

.rs-about-six .rs-about-shape {
  position: absolute;
  top: 245px;
  inset-inline-end: 70px;
}

@media only screen and (max-width: 1600px) {
  .rs-about-six .rs-about-shape {
    top: 60px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-about-six .rs-about-shape {
    top: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about-six .rs-about-shape {
    display: none;
  }
}

.rs-about-six .section-desc {
  margin-bottom: 25px;
}

.rs-about-six .rs-about-wrapper {
  display: grid;
  grid-template-columns: 530px 620px;
  gap: 30px 70px;
  align-items: center;
}

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

@media only screen and (max-width: 1199px) {
  .rs-about-six .rs-about-wrapper {
    grid-template-columns: 400px auto;
    align-items: start;
  }
}

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

.rs-about-six .rs-about-thumb {
  position: relative;
  z-index: 1;
}

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

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

.rs-about-six .rs-about-thumb>img {
  width: 100%;
}

.rs-about-six .rs-about-meta-wrapper {
  background: var(--rs-theme-red);
  border-radius: 5px;
  border: 4px solid var(--rs-white);
  padding-inline: 20px;
  padding-top: 20px;
  padding-bottom: 15px;
  display: flex;
  align-items: start;
  gap: 20px 30px;
  position: absolute;
  inset-inline-start: 35px;
  bottom: 35px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 480px) {
  .rs-about-six .rs-about-meta-wrapper {
    inset-inline-start: 0px;
    bottom: 0px;
  }
}

.rs-about-six .rs-about-meta-thumb {
  margin-bottom: 13px;
}

.rs-about-six .rs-about-meta-icon img {
  width: 65px;
}

.rs-about-six .rs-about-meta-counter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rs-about-six .rs-about-meta-counter .rs-counter-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.rs-about-six .rs-about-meta-counter .rs-counter-number,
.rs-about-six .rs-about-meta-counter .prefix {
  font-size: 16px;
  font-weight: 400;
  color: var(--rs-white);
  line-height: 1;
}

.rs-about-six .rs-about-meta-counter .rs-counter-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--rs-white);
}

.rs-about-six .rs-about-list-wrapper {
  margin-top: 35px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 0;
  max-width: 600px;
}

@media only screen and (max-width: 767px) {
  .rs-about-six .rs-about-list-wrapper {
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
  }
}

.rs-about-six .rs-about-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rs-about-six .rs-about-list-item p {
  color: var(--rs-title-tertiary);
  font-weight: 500;
}

.rs-about-six .rs-about-list-icon {
  width: 22px;
  min-width: 22px;
  height: 22px;
  border: 1px solid var(--rs-border-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-about-six .rs-about-list-icon svg {
  width: 11px;
  height: 11px;
}

.rs-about-six .rs-about-list-icon svg path {
  fill: var(--rs-theme-red);
}

@media only screen and (max-width: 575px) {
  .rs-about-six .rs-about-tab {
    display: none;
  }
}

.rs-about-six .rs-about-tab .nav-link {
  background: transparent;
  color: var(--rs-text-primary);
  font-weight: 500;
  padding: 10px 22px 10px 22px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 6px 6px 0 0;
  font-family: var(--rs-ff-title);
}

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

.rs-about-six .rs-about-tab .nav-link.active {
  color: var(--rs-theme-red);
  background: var(--rs-white);
}

.rs-about-six .rs-about-tab .nav-link:hover {
  color: var(--rs-theme-red);
}

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

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

.rs-about-six .rs-about-tab-content {
  border-radius: 6px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  background: var(--rs-white);
}

.rs-about-six .rs-about-tab-content p {
  font-size: 15px;
}

@media only screen and (max-width: 575px) {
  .rs-about-six .rs-about-tab-content {
    display: none;
  }
}

.rs-about-six .rs-about-counter-icon svg {
  width: 50px;
  height: 50px;
}

.rs-about-six .rs-about-info {
  display: inline-flex;
  align-items: center;
  gap: 30px 40px;
}

@media only screen and (max-width: 1199px) {
  .rs-about-six .rs-about-info {
    flex-wrap: wrap;
  }
}

.rs-about-six .rs-about-info .rs-counter-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-about-six .rs-about-info .rs-counter-number,
.rs-about-six .rs-about-info .prefix {
  font-size: 46px;
  font-weight: 700;
  color: var(--rs-title-primary);
  line-height: 1;
  font-family: var(--rs-ff-title);
}

.rs-about-six .rs-about-info .rs-counter-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--rs-title-primary);
  font-family: var(--rs-ff-title);
}

.rs-about-six .rs-about-info .rs-about-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-about-six .rs-about-info .rs-about-counter-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rs-about-six .rs-about-info .rs-about-counter-icon svg {
  width: 50px;
  height: 50px;
}

.rs-about-six .rs-about-info .rs-about-counter-icon svg path {
  fill: var(--rs-theme-red);
}

.rs-about-six .rs-about-accordion {
  display: none;
}

@media only screen and (max-width: 575px) {
  .rs-about-six .rs-about-accordion {
    display: block;
  }
}

.rs-about-six .rs-about-accordion .rs-accordion-one .accordion-button {
  font-size: 16px;
  padding-inline-end: 0px;
}

.rs-about-six .rs-about-accordion .rs-accordion-one .accordion-button:not(.collapsed) {
  color: var(--rs-theme-red);
}

.rs-about-six .rs-about-accordion .rs-accordion-one .rs-accordion-item {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
}

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

.rs-about-six .rs-about-accordion .rs-accordion-one .accordion-body {
  padding: 10px 0px 0 0px;
}

.rs-about-seven .rs-about-thumb-wrapper {
  position: relative;
  z-index: 1;
}

.rs-about-seven .section-desc.desc-two {
  margin-bottom: 40px;
}

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

.rs-about-seven .rs-about-badge {
  background: var(--rs-theme-blue);
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 132px;
  height: 132px;
  position: absolute;
  left: 50%;
  z-index: 1;
  top: 50%;
  transform: translate(-50%, -50%);
}

.rs-about-seven .rs-about-badge img {
  width: 90px;
}

.rs-about-seven .rs-about-thumb-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px 35px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 575px) {
  .rs-about-seven .rs-about-thumb-wrapper {
    gap: 30px 30px;
    flex-wrap: wrap;
  }
}

.rs-about-eight {
  position: relative;
}

.rs-about-eight .section-desc {
  margin-bottom: 40px;
  color: var(--rs-text-secondary);
}

.rs-about-eight .rs-about-wrapper {
  display: grid;
  grid-template-columns: 560px auto;
  gap: 30px 90px;
  align-items: center;
}

@media only screen and (max-width: 1600px) {
  .rs-about-eight .rs-about-wrapper {
    grid-template-columns: 450px auto;
    gap: 30px 30px;
    align-items: start;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-about-eight .rs-about-wrapper {
    grid-template-columns: 350px auto;
    align-items: start;
  }
}

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

.rs-about-eight .rs-about-thumb-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  margin-inline-end: 100px;
  margin-bottom: 100px;
}

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

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

@media only screen and (max-width: 575px) {
  .rs-about-eight .rs-about-thumb-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-about-eight .rs-about-thumb-wrapper {
    margin-inline-end: 0px;
    margin-bottom: 0;
  }
}

.rs-about-eight .rs-about-thumb {
  border: 6px solid var(--rs-white);
  border-radius: 6px;
}

.rs-about-eight .rs-about-thumb.thumb-two {
  position: absolute;
  bottom: -100px;
  inset-inline-end: -100px;
  width: 300px;
}

@media only screen and (max-width: 1600px) {
  .rs-about-eight .rs-about-thumb.thumb-two {
    width: 250px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-about-eight .rs-about-thumb.thumb-two {
    width: 180px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-about-eight .rs-about-thumb.thumb-two {
    width: 300px;
  }
}

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

@media only screen and (max-width: 480px) {
  .rs-about-eight .rs-about-thumb.thumb-two {
    width: 100%;
    position: unset;
  }
}

.rs-about-eight .rs-about-thumb img {
  width: 100%;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
}

.rs-about-eight .rs-about-badge {
  background: var(--rs-theme-blue-two);
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  position: absolute;
  inset-inline-end: -50px;
  z-index: 1;
  top: 60px;
}

@media only screen and (max-width: 1600px) {
  .rs-about-eight .rs-about-badge {
    width: 100px;
    height: 100px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-about-eight .rs-about-badge {
    display: none;
  }
}

.rs-about-eight .rs-about-badge img {
  width: 90px;
}

.rs-about-eight .rs-about-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rs-about-eight .rs-about-meta-info {
  position: absolute;
  bottom: -100px;
}

@media only screen and (max-width: 480px) {
  .rs-about-eight .rs-about-meta-info {
    position: unset;
  }
}

.rs-about-eight .rs-counter-number,
.rs-about-eight .prefix {
  font-size: 16px;
  font-weight: 500;
  color: var(--rs-title-primary);
  line-height: 1;
}

.rs-about-eight .rs-counter-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--rs-title-primary);
}

.rs-about-eight .rs-about-meta-thumb {
  margin-bottom: 13px;
}

.rs-about-eight .rs-about-list-icon {
  width: 22px;
  min-width: 22px;
  height: 22px;
  border: 1px solid var(--rs-theme-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-about-eight .rs-about-list-icon svg {
  width: 12px;
  height: 12px;
}

.rs-about-eight .rs-about-features-wrapper {
  display: flex;
  gap: 20px 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.rs-about-eight .rs-about-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rs-about-eight .rs-about-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-about-eight .rs-about-list-item p {
  color: #021E40;
  font-weight: 500;
}

.rs-about-eight .rs-about-video {
  position: relative;
  width: 210px;
  height: 130px;
}

.rs-about-eight .rs-about-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 6px solid var(--rs-white);
  border-radius: 10px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.rs-about-eight .rs-about-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/*----------------------------------------*/
/*  4.2 achievement css
/*----------------------------------------*/
.rs-achievement-one .rs-achievement-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.rs-achievement-one .rs-achievement-content ul li {
  list-style: none;
  position: relative;
  padding-inline-start: 10px;
}

.rs-achievement-one .rs-achievement-content ul li:not(:last-child) {
  margin-bottom: 5px;
}

.rs-achievement-one .rs-achievement-content ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #4C4C4C;
  border-radius: 50%;
  top: 10px;
  inset-inline-start: 0;
}

.rs-achievement-one .rs-achievement-inner {
  position: relative;
  padding-inline-start: 40px;
}

@media only screen and (max-width: 991px) {
  .rs-achievement-one .rs-achievement-inner {
    padding-inline-start: 30px;
  }
}

.rs-achievement-one .rs-achievement-inner::before {
  position: absolute;
  content: "";
  inset-inline-start: 0px;
  top: 0px;
  width: 16px;
  height: 16px;
  background-color: var(--rs-theme-blue);
  border: 3px solid rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.3);
}

.rs-achievement-one .rs-achievement-inner::after {
  position: absolute;
  content: "";
  inset-inline-start: 7px;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: var(--rs-border-primary);
}

.rs-achievement-one .rs-achievement-title {
  background: var(--rs-theme-blue);
  padding-top: 23px;
  padding-bottom: 20px;
  padding-inline-start: 25px;
  padding-inline-end: 25px;
  border-radius: 6px 6px 0 0;
  color: var(--rs-white);
}

.rs-achievement-one .rs-achievement-content {
  color: var(--rs-text-primary);
  padding-top: 20px;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
  padding-bottom: 30px;
  background: var(--rs-white);
  border-radius: 0 0 6px 6px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .rs-achievement-one .rs-achievement-content {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    padding-bottom: 20px;
  }
}

/*----------------------------------------*/
/*  4.3 Admission css
/*----------------------------------------*/
.rs-admission-one .rs-admission-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 35px;
}

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

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

.rs-admission-one .rs-admission-item {
  border-radius: 12px;
  background: var(--rs-white);
  padding-top: 28px;
  padding-bottom: 12px;
  padding-inline: 12px;
  text-align: center;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

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

.rs-admission-one .rs-admission-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.rs-admission-one .rs-admission-thumb img {
  width: 100%;
  transition: all 0.8s ease;
  transform: scale(1.02);
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.rs-admission-one .rs-admission-content {
  margin-bottom: -25px;
}

.rs-admission-one .rs-admission-title {
  color: var(--rs-title-tertiary);
}

.rs-admission-one .rs-admission-desc {
  padding-inline: 20px;
  margin-top: 10px;
}

@media only screen and (max-width: 1366px) {
  .rs-admission-one .rs-admission-desc {
    padding-inline: 10px;
    font-size: 15px;
  }
}

.rs-admission-two .rs-admission-wrapper {
  background: var(--rs-white);
  border-radius: 12px;
  padding: 30px;
  display: grid;
  grid-template-columns: auto 530px;
  gap: 30px 50px;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .rs-admission-two .rs-admission-wrapper {
    grid-template-columns: auto 400px;
    gap: 30px 30px;
    align-items: start;
  }
}

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

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

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

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

.rs-admission-two .rs-admission-thumb img {
  width: 100%;
  border-radius: 8px;
}

.rs-admission-two .rs-admission-desc {
  margin-top: 20px;
  margin-bottom: 30px;
  max-width: 622px;
}

/*----------------------------------------*/
/*  4.4 Alumni css
/*----------------------------------------*/
.rs-alumni-one .rs-alumni-thumb {
  margin-bottom: 40px;
}

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

.rs-alumni-one .section-desc {
  margin-bottom: 45px;
}

.rs-alumni-two .rs-alumni-wrapper {
  display: grid;
  grid-template-columns: 750px auto;
  gap: 30px;
  margin-top: 42px;
}

@media only screen and (max-width: 1600px) {
  .rs-alumni-two .rs-alumni-wrapper {
    grid-template-columns: 650px auto;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-alumni-two .rs-alumni-wrapper {
    grid-template-columns: 500px auto;
  }
}

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

.rs-alumni-two .rs-alumni-content ul li {
  list-style: none;
  position: relative;
  padding-inline-start: 10px;
}

.rs-alumni-two .rs-alumni-content ul li:not(:last-child) {
  margin-bottom: 5px;
}

.rs-alumni-two .rs-alumni-content ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #4C4C4C;
  border-radius: 50%;
  top: 10px;
  inset-inline-start: 0;
}

.rs-alumni-two .rs-alumni-inner {
  position: relative;
  padding-inline-start: 40px;
}

@media only screen and (max-width: 991px) {
  .rs-alumni-two .rs-alumni-inner {
    padding-inline-start: 25px;
  }
}

.rs-alumni-two .rs-alumni-inner::before {
  position: absolute;
  content: "";
  inset-inline-start: 0px;
  top: 0px;
  width: 16px;
  height: 16px;
  background-color: var(--rs-theme-blue);
  border: 3px solid rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.3);
}

.rs-alumni-two .rs-alumni-inner::after {
  position: absolute;
  content: "";
  inset-inline-start: 7px;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: var(--rs-border-primary);
}

.rs-alumni-two .rs-alumni-title {
  background: var(--rs-theme-blue);
  padding-top: 23px;
  padding-bottom: 20px;
  padding-inline-start: 25px;
  padding-inline-end: 25px;
  border-radius: 6px 6px 0 0;
  color: var(--rs-white);
}

.rs-alumni-two .rs-alumni-content {
  color: var(--rs-text-primary);
  padding-top: 20px;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
  padding-bottom: 25px;
  background: var(--rs-white);
  border-radius: 0 0 6px 6px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .rs-alumni-two .rs-alumni-content {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    padding-bottom: 20px;
  }
}

.rs-alumni-two .rs-alumni-thumb {
  height: 100%;
  width: 100%;
}

.rs-alumni-two .rs-alumni-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
}

.rs-alumni-two .rs-alumni-content-item-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.rs-alumni-two .rs-alumni-thumb-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.rs-alumni-two .rs-alumni-desc {
  font-weight: 500;
  font-style: italic;
}

.rs-alumni-details .rs-alumni-wrapper {
  display: grid;
  grid-template-columns: 400px auto;
  gap: 30px 50px;
  align-items: center;
}

@media only screen and (max-width: 1600px) {
  .rs-alumni-details .rs-alumni-wrapper {
    grid-template-columns: 350px auto;
    gap: 30px 30px;
    align-items: start;
  }
}

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

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

.rs-alumni-details .rs-alumni-thumb-wrapper {
  background: var(--rs-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 12px;
}

@media only screen and (max-width: 1600px) {
  .rs-alumni-details .rs-alumni-thumb-wrapper {
    position: sticky;
    top: 110px;
  }
}

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

.rs-alumni-details .rs-alumni-author-thumb img {
  width: 100%;
  border-radius: 12px;
}

.rs-alumni-details .rs-alumni-author-info {
  padding-top: 20px;
  padding-bottom: 13px;
}

.rs-alumni-details .rs-alumni-author-name {
  margin-bottom: 5px;
}

.rs-alumni-details .rs-alumni-details-title {
  margin-bottom: 15px;
}

.rs-alumni-details .rs-alumni-details-desc {
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 30px;
  margin-bottom: 33px;
}

.rs-alumni-details .rs-alumni-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.rs-alumni-details .rs-info-list li {
  list-style: none;
  position: relative;
  padding-inline-start: 12px;
}

.rs-alumni-details .rs-info-list li:not(:last-child) {
  margin-bottom: 8px;
}

.rs-alumni-details .rs-info-list li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #4C4C4C;
  border-radius: 50%;
  top: 9px;
  inset-inline-start: 0;
}

.rs-alumni-details .rs-alumni-info-title {
  margin-bottom: 15px;
}

/*----------------------------------------*/
/*  4.5 award css
/*----------------------------------------*/
.rs-award-one .rs-award-wrapper {
  display: grid;
  grid-template-columns: auto 745px;
  gap: 30px;
}

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

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

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

.rs-award-one .rs-award-list-item {
  justify-content: space-between;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.rs-award-one .rs-award-list-item:not(:last-child) {
  border-bottom: 1px solid var(--rs-border-primary);
}

.rs-award-one .rs-award-list-year {
  font-size: 20px;
  font-weight: 600;
  color: var(--rs-title-tertiary);
  font-family: var(--rs-ff-title);
}

.rs-award-one .rs-award-list {
  background: var(--rs-white);
  border-radius: 10px;
}

.rs-award-one .rs-badge-text {
  background-color: var(--rs-white);
  padding: 7px 16px 7px 16px;
  border-radius: 100px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rs-award-one .rs-award-thumb-wrapper {
  position: relative;
}

.rs-award-one .rs-award-thumb {
  position: absolute;
  inset-inline-start: 229px;
  top: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media only screen and (max-width: 1199px) {
  .rs-award-one .rs-award-thumb {
    inset-inline-start: 0px;
    top: 30px;
  }
}

.rs-award-one .rs-award-thumb.active {
  opacity: 1;
  transform: translateY(0);
}

.rs-award-one .rs-award-thumb img {
  width: 200px;
}

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

/*----------------------------------------*/
/*  4.6 Bio css
/*----------------------------------------*/
.rs-bio {
  position: relative;
}

.rs-bio-wrapper {
  display: grid;
  grid-template-columns: 300px auto;
  gap: 30px 40px;
  align-items: start;
}

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

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

.rs-bio-author-wrapper {
  background: var(--rs-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.02);
  border-radius: 16px;
  padding-top: 12px;
  padding-inline: 12px;
  padding-bottom: 25px;
}

.rs-bio-thumb img {
  border-radius: 16px;
  width: 100%;
}

.rs-bio-info {
  text-align: center;
  margin-top: 22px;
}

.rs-bio-name {
  margin-bottom: 3px;
}

.rs-bio-quote {
  margin: 0;
  background: var(--rs-white);
  padding-top: 34px;
  padding-bottom: 30px;
  padding-inline-start: 40px;
  padding-inline-end: 40px;
  border-radius: 10px;
  border: 1px dashed var(--rs-border-primary);
  margin-bottom: 30px;
}

@media only screen and (max-width: 1600px) {
  .rs-bio-quote {
    padding-top: 30px;
    padding-inline-start: 30px;
    padding-inline-end: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-bio-quote {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
  }
}

.rs-bio-quote-desc {
  font-style: italic;
}

.rs-bio-quote-icon {
  margin-bottom: 20px;
}

.rs-bio-quote-icon svg {
  width: 40px;
  height: 40px;
}

.rs-bio-quote-icon svg path {
  fill: var(--rs-theme-yellow);
}

.rs-bio-title {
  margin-bottom: 15px;
}

/*----------------------------------------*/
/*  4.7 campus life css
/*----------------------------------------*/
.rs-campus-life-one {
  position: relative;
}

.rs-campus-life-one .rs-campus-life-shape {
  position: absolute;
  bottom: 0;
  opacity: 0.5;
}

.rs-campus-life-one .rs-campus-life-sec-desc {
  max-width: 430px;
  margin-inline-start: auto;
  border-inline-start: 2px solid var(--rs-theme-yellow);
  padding-inline-start: 20px;
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-one .rs-campus-life-sec-desc {
    max-width: 100%;
    margin-inline-start: unset;
  }
}

@media only screen and (max-width: 575px) {
  .rs-campus-life-one .rs-campus-life-sec-desc {
    padding-inline-start: 15px;
  }
}

.rs-campus-life-one .rs-campus-life-item {
  position: relative;
  border: 10px solid #F6F4EE;
  border-radius: 100px;
}

.rs-campus-life-one .rs-campus-life-item:hover .rs-campus-life-thumb::before {
  opacity: 1;
  visibility: visible;
}

.rs-campus-life-one .rs-campus-life-item:hover .rs-campus-life-content {
  visibility: visible;
  opacity: 1;
}

.rs-campus-life-one .rs-campus-life-thumb {
  position: relative;
  overflow: hidden;
}

.rs-campus-life-one .rs-campus-life-thumb::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(0, 58, 101, 0) 0%, var(--rs-theme-blue) 100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  border-radius: 100px;
  z-index: 1;
}

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

.rs-campus-life-one .rs-campus-life-content {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  bottom: -140px;
  width: 100%;
  padding: 40px;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.6s;
  z-index: 1;
  writing-mode: sideways-lr;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.rs-campus-life-one .rs-campus-life-title {
  color: var(--rs-white);
}

.rs-campus-life-two {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.rs-campus-life-two .rs-campus-life-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.rs-campus-life-two .rs-campus-life-bg-thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0) 45.38%, #030303 111.13%);
  z-index: 1;
}

.rs-campus-life-two .section-title {
  font-size: 120px;
  color: var(--rs-white);
  line-height: 1.15;
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-two .section-title {
    font-size: 110px;
  }
}

@media only screen and (max-width: 1366px) {
  .rs-campus-life-two .section-title {
    font-size: 90px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-two .section-title {
    font-size: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-two .section-title {
    font-size: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-campus-life-two .section-title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-campus-life-two .section-title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-campus-life-two .section-title {
    font-size: 40px;
  }
}

.rs-campus-life-two .item-details-active {
  height: 715px;
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-two .item-details-active {
    height: 650px;
  }
}

@media only screen and (max-width: 1366px) {
  .rs-campus-life-two .item-details-active {
    height: 600px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-two .item-details-active {
    height: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-two .item-details-active {
    height: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-campus-life-two .item-details-active {
    height: 450px;
  }
}

.rs-campus-life-two .rs-campus-life-sec-wrapper {
  position: absolute;
  top: 120px;
  z-index: 2;
}

.rs-campus-life-two .rs-campus-life-sec-wrapper {
  position: absolute;
  top: 100px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 575px) {
  .rs-campus-life-two .rs-campus-life-sec-wrapper {
    top: 50px;
  }
}

.rs-campus-life-two .item-details-nav .swiper-wrapper .custom-button {
  width: 130px;
  height: 130px;
  border-radius: 30px;
  border: 4px solid var(--rs-white);
}

.rs-campus-life-two .item-details-nav .swiper-wrapper .custom-button:hover {
  border-color: var(--rs-theme-red);
}

.rs-campus-life-two .item-details-nav .swiper-slide-thumb-active .custom-button {
  border-color: var(--rs-theme-red);
}

.rs-campus-life-two .rs-campus-life-thumb-small {
  position: absolute;
  bottom: 40px;
  z-index: 1;
  width: 100%;
}

.rs-campus-life-two .item-details-nav .swiper-wrapper {
  justify-content: center;
}

@media only screen and (max-width: 575px) {
  .rs-campus-life-two .item-details-nav .swiper-wrapper {
    justify-content: start;
  }
}

.rs-campus-life-two.has-theme-yellow .section-title {
  line-height: 1.25;
}

.rs-campus-life-two.has-theme-yellow .swiper-wrapper .custom-button:hover {
  border-color: var(--rs-theme-yellow);
}

.rs-campus-life-two.has-theme-yellow .swiper-slide-thumb-active .custom-button {
  border-color: var(--rs-theme-yellow);
}

.rs-campus-life-three {
  position: relative;
  overflow-x: clip;
}

.rs-campus-life-three.no-bg::before {
  content: none;
}

.rs-campus-life-three.no-bg .rs-campus-life-thumb {
  border-color: var(--rs-theme-blue);
}

.rs-campus-life-three::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 400px;
  bottom: 0;
  left: 0;
  background: var(--rs-bg-black);
}

.rs-campus-life-three .rs-campus-life-wrapper {
  padding-top: 90px;
  padding-bottom: 40px;
  margin-inline: 60px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-three .rs-campus-life-wrapper {
    margin-inline: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-three .rs-campus-life-wrapper {
    padding-top: 70px;
  }
}

.rs-campus-life-three .rs-campus-life-item.has-video {
  position: relative;
}

.rs-campus-life-three .rs-campus-life-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rs-campus-life-three .rs-campus-life-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 16px;
}

.rs-campus-life-three .rs-campus-life-title {
  font-size: 120px;
  color: var(--rs-white);
  text-align: center;
  margin-bottom: 75px;
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-three .rs-campus-life-title {
    font-size: 110px;
  }
}

@media only screen and (max-width: 1366px) {
  .rs-campus-life-three .rs-campus-life-title {
    font-size: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-three .rs-campus-life-title {
    font-size: 90px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-three .rs-campus-life-title {
    font-size: 80px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-campus-life-three .rs-campus-life-title {
    font-size: 70px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-campus-life-three .rs-campus-life-title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-campus-life-three .rs-campus-life-title {
    font-size: 40px;
  }
}

.rs-campus-life-three .rs-campus-life-item-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-three .rs-campus-life-item-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.rs-campus-life-three .rs-campus-life-thumb {
  border: 6px solid #231F30;
  border-radius: 20px;
  overflow: hidden;
}

.rs-campus-life-three .rs-campus-life-thumb img {
  width: 100%;
  display: block;
}

.rs-campus-life-three.has-theme-cyan::before {
  background: var(--rs-theme-cyan);
}

.rs-campus-life-three.has-theme-cyan .rs-campus-life-thumb {
  border-color: var(--rs-theme-cyan);
}

.rs-campus-life-three.has-theme-blue .rs-campus-life-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(16, 14, 18, 0) -22.13%, #100E12 100%, #100E12 100%);
  border-radius: 12px;
}

.rs-campus-life-three.has-theme-blue .rs-campus-life-title {
  text-align: center;
  margin-bottom: 45px;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.1);
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.6);
  stroke: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 1366px) {
  .rs-campus-life-three.has-theme-blue .rs-campus-life-title {
    font-size: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-three.has-theme-blue .rs-campus-life-title {
    font-size: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-three.has-theme-blue .rs-campus-life-title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-campus-life-three.has-theme-blue .rs-campus-life-title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-campus-life-three.has-theme-blue .rs-campus-life-title {
    font-size: 40px;
  }
}

.rs-campus-life-three.has-theme-blue .rs-campus-life-thumb {
  border-color: rgba(255, 255, 255, 0.3);
}

.rs-campus-life-four {
  background: var(--rs-theme-green);
  padding-top: 150px;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-four {
    padding-top: 100px;
  }
}

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

.rs-campus-life-four .rs-campus-life-shape-one {
  position: absolute;
  inset-inline-end: 140px;
  top: 160px;
}

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

.rs-campus-life-four .rs-campus-life-shape-two {
  position: absolute;
  top: 80px;
  inset-inline-start: 110px;
  animation: rs-rotate-anim 3s linear 0s infinite alternate;
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-four .rs-campus-life-shape-two {
    inset-inline-start: 30px;
    top: 50px;
  }
}

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

.rs-campus-life-four .rs-campus-life-bg-thumb {
  position: absolute;
  width: 100%;
  height: 700px;
  bottom: 0;
  left: 0;
  border-radius: 16px 16px 0px 0px;
  z-index: -1;
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-four .rs-campus-life-bg-thumb {
    height: 650px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-four .rs-campus-life-bg-thumb {
    height: 500px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-four .rs-campus-life-bg-thumb {
    display: none;
  }
}

.rs-campus-life-four .rs-campus-life-wrapper {
  margin-inline: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-four .rs-campus-life-wrapper {
    margin-inline: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-four .rs-campus-life-wrapper {
    margin-inline: 0px;
  }
}

.rs-campus-life-four .rs-campus-life-content-wrapper {
  display: grid;
  grid-template-columns: 780px auto;
  gap: 30px 120px;
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-four .rs-campus-life-content-wrapper {
    grid-template-columns: 700px auto;
    gap: 30px 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-four .rs-campus-life-content-wrapper {
    grid-template-columns: auto auto;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-four .rs-campus-life-content-wrapper {
    grid-template-columns: auto;
  }
}

.rs-campus-life-four .section-title {
  font-size: 120px;
  color: var(--rs-white);
  margin-bottom: 120px;
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-four .section-title {
    font-size: 110px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-four .section-title {
    font-size: 100px;
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-four .section-title {
    font-size: 80px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-campus-life-four .section-title {
    font-size: 60px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-campus-life-four .section-title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}

.rs-campus-life-four .rs-campus-life-thumb-wrapper {
  display: flex;
  align-items: center;
  gap: 30px 35px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 575px) {
  .rs-campus-life-four .rs-campus-life-thumb-wrapper {
    flex-wrap: wrap;
  }
}

.rs-campus-life-four .rs-campus-life-thumb {
  border: 6px solid var(--rs-white);
  border-radius: 30px;
  overflow: hidden;
}

.rs-campus-life-four .rs-campus-life-thumb img {
  width: 100%;
  display: block;
}

.rs-campus-life-four .rs-campus-life-badge {
  background: var(--rs-theme-green);
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  top: 50%;
}

.rs-campus-life-four .rs-campus-life-badge img {
  width: 90px;
}

.rs-campus-life-four .rs-notice-wrapper {
  background-color: var(--rs-white);
  padding-top: 25px;
  padding-bottom: 30px;
  padding-inline-start: 35px;
  padding-inline-end: 35px;
  border-radius: 16px;
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-four .rs-notice-wrapper {
    padding-inline-start: 25px;
    padding-inline-end: 25px;
    padding-bottom: 25px;
  }
}

.rs-campus-life-four .rs-notice-wrapper .popup-circle {
  width: 8px;
  height: 8px;
  position: relative;
}

.rs-campus-life-four .rs-notice-wrapper .popup-circle::before {
  background: var(--rs-theme-yellow);
}

.rs-campus-life-four .rs-notice-wrapper .popup-circle::after {
  background: var(--rs-theme-yellow);
}

.rs-campus-life-four .rs-notice-wrapper .rs-notice-sec-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--rs-border-primary);
  margin-bottom: 20px;
}

.rs-campus-life-four .rs-notice-wrapper .rs-notice-item:not(:last-child) {
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.rs-campus-life-four .rs-notice-wrapper .rs-notice-title {
  font-size: 17px;
  margin-bottom: 10px;
}

.rs-campus-life-four .rs-notice-wrapper .rs-notice-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.rs-campus-life-four .rs-notice-wrapper .rs-notice-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rs-campus-life-four .rs-notice-wrapper .rs-notice-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.rs-campus-life-four .rs-notice-wrapper .rs-notice-date svg {
  width: 14px;
  height: 14px;
}

.rs-campus-life-four .rs-notice-wrapper .rs-notice-id {
  font-size: 13px;
}

.rs-campus-life-four .rs-notice-wrapper .rs-notice-link svg {
  width: 20px;
  height: 20px;
}

.rs-campus-life-four .rs-notice-wrapper .rs-notice-link svg path {
  transition: 0.3s;
}

.rs-campus-life-four .rs-notice-wrapper .rs-notice-link a:hover svg path {
  fill: var(--rs-theme-yellow);
}

.rs-campus-life-five {
  /* background: var(--rs-theme-green-two); */
    background: linear-gradient(155deg, #0050a4, #002f6c);
  position: relative;
  overflow-x: clip;
}

.rs-campus-life-five .rs-campus-life-shape {
  position: absolute;
  top: 80px;
  inset-inline-start: 120px;
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-five .rs-campus-life-shape {
    inset-inline-start: 30px;
  }
}

.rs-campus-life-five .rs-campus-life-shape-two {
  position: absolute;
  top: 160px;
  inset-inline-end: -100px;
}

.rs-campus-life-five .section-title-wrapper {
  padding-top: 100px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-five .section-title-wrapper {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-five .section-title-wrapper {
    padding-top: 70px;
  }
}

.rs-campus-life-five .section-title {
  font-size: 120px;
  color: var(--rs-white);
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-five .section-title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-five .section-title {
    font-size: 90px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-five .section-title {
    font-size: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-campus-life-five .section-title {
    font-size: 70px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-campus-life-five .section-title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-campus-life-five .section-title {
    font-size: 50px;
  }
}

.rs-campus-life-five .rs-campus-life-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-five .rs-campus-life-wrapper {
    padding-top: 100px;
  }
}

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

.rs-campus-life-five .rs-campus-life-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
      height: 466px;
}

.rs-campus-life-five .rs-notice-wrapper {
  background-color: var(--rs-white);
  padding-top: 25px;
  padding-bottom: 30px;
  padding-inline-start: 35px;
  padding-inline-end: 35px;
  border-radius: 16px 16px 0px 0px;
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-five .rs-notice-wrapper {
    padding-bottom: 25px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
  }
}

.rs-campus-life-five .rs-notice-wrapper .popup-circle {
  width: 8px;
  height: 8px;
  position: relative;
}

.rs-campus-life-five .rs-notice-wrapper .popup-circle::before {
  background: var(--rs-theme-green-two);
}

.rs-campus-life-five .rs-notice-wrapper .popup-circle::after {
  background: var(--rs-theme-green-two);
}

.rs-campus-life-five .rs-notice-wrapper .rs-notice-sec-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--rs-border-primary);
  margin-bottom: 20px;
}

.rs-campus-life-five .rs-notice-wrapper .rs-notice-item:not(:last-child) {
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.rs-campus-life-five .rs-notice-wrapper .rs-notice-title {
  font-size: 17px;
  margin-bottom: 10px;
}

.rs-campus-life-five .rs-notice-wrapper .rs-notice-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.rs-campus-life-five .rs-notice-wrapper .rs-notice-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rs-campus-life-five .rs-notice-wrapper .rs-notice-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.rs-campus-life-five .rs-notice-wrapper .rs-notice-date svg {
  width: 14px;
  height: 14px;
}

.rs-campus-life-five .rs-notice-wrapper .rs-notice-id {
  font-size: 13px;
}

.rs-campus-life-five .rs-notice-wrapper .rs-notice-link svg {
  width: 20px;
  height: 20px;
}

.rs-campus-life-five .rs-notice-wrapper .rs-notice-link svg path {
  transition: 0.3s;
}

.rs-campus-life-five .rs-notice-wrapper .rs-notice-link a:hover svg path {
  fill: var(--rs-theme-green-two);
}

.rs-campus-life-five .rs-campus-life-content-wrapper {
  display: grid;
  grid-template-columns: 375px 500px;
  justify-content: space-between;
  gap: 30px;
}

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

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

.rs-campus-life-five .rs-campus-life-thumb img {
  width: 100%;
  border: 6px solid var(--rs-white);
}

.rs-campus-life-five .rs-campus-life-thumb-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.rs-campus-life-five .rs-campus-life-thumb-wrapper .rs-campus-life-thumb:nth-child(2) img {
  border-radius: 96% 0% 0% 0%;
}

.rs-campus-life-five .rs-campus-life-thumb-wrapper .rs-campus-life-thumb:nth-child(3) img {
  border-radius: 0% 96% 0% 0%;
}

.rs-campus-life-five .rs-campus-life-thumb-wrapper .rs-campus-life-thumb:nth-child(4) img {
  border-radius: 96% 0% 0% 0%;
}

.rs-campus-life-five .rs-campus-life-thumb-wrapper .rs-campus-life-thumb:nth-child(5) img {
  border-radius: 0% 96% 0% 0%;
}

.rs-campus-life-five .rs-about-badge {
  background: var(--rs-theme-green-two);
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  .rs-campus-life-five .rs-about-badge {
    width: 100px;
    height: 100px;
    padding: 15px;
  }
}

.rs-campus-life-five .rs-about-badge img {
  width: 90px;
}

.rs-campus-life-six .rs-campus-life-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}

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

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

.rs-campus-life-six .rs-campus-life-item {
  border-radius: 12px;
  background: var(--rs-white);
  padding-top: 28px;
  padding-bottom: 12px;
  padding-inline: 12px;
  text-align: center;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.rs-campus-life-six .rs-campus-life-shape {
  position: absolute;
  top: 50px;
  inset-inline-start: 0;
}

.rs-campus-life-six .rs-campus-life-thumb {
  height: 100%;
}

.rs-campus-life-six .rs-campus-life-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.rs-campus-life-six .rs-campus-life-desc {
  margin-top: 10px;
  margin-bottom: 25px;
  padding-inline: 20px;
}

@media only screen and (max-width: 1366px) {
  .rs-campus-life-six .rs-campus-life-desc {
    padding-inline: 10px;
    font-size: 15px;
  }
}

.rs-campus-life-six .rs-campus-life-title {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.rs-campus-life-six .rs-campus-life-title::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 3px;
  background: var(--rs-theme-yellow);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.rs-campus-life-seven {
  overflow-x: clip;
}

.rs-campus-life-seven .section-title {
  font-size: 120px;
  color: var(--rs-white);
  text-align: center;
  line-height: 1;
  padding-top: 100px;
  padding-bottom: 70px;
  background: var(--rs-theme-red);
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-seven .section-title {
    font-size: 100px;
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-campus-life-seven .section-title {
    font-size: 60px;
    padding-top: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-seven .section-title {
    font-size: 50px;
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-campus-life-seven .section-title {
    font-size: 40px;
  }
}

.rs-campus-life-seven .rs-campus-life-notice {
  width: 390px;
  position: absolute;
  bottom: 0;
  inset-inline-end: 315px;
}

@media only screen and (max-width: 991px) {
  .rs-campus-life-seven .rs-campus-life-notice {
    inset-inline-start: 50%;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 480px) {
  .rs-campus-life-seven .rs-campus-life-notice {
    width: 100%;
    padding-inline: 15px;
  }
}

.rs-campus-life-seven .rs-campus-life-video {
  height: 560px;
  position: relative;
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-seven .rs-campus-life-video {
    height: 500px;
  }
}

@media only screen and (max-width: 1600px) {
  .rs-campus-life-seven .rs-campus-life-video {
    height: 500px;
  }
}

.rs-campus-life-seven .rs-campus-life-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rs-campus-life-seven .rs-notice-wrapper {
  background-color: var(--rs-white);
  padding-top: 25px;
  padding-bottom: 30px;
  padding-inline-start: 35px;
  padding-inline-end: 35px;
  border-radius: 16px 16px 0px 0px;
}

@media only screen and (max-width: 480px) {
  .rs-campus-life-seven .rs-notice-wrapper {
    padding-bottom: 25px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
  }
}

.rs-campus-life-seven .rs-notice-wrapper .popup-circle {
  width: 8px;
  height: 8px;
  position: relative;
}

.rs-campus-life-seven .rs-notice-wrapper .popup-circle::before {
  background: var(--rs-theme-red);
}

.rs-campus-life-seven .rs-notice-wrapper .popup-circle::after {
  background: var(--rs-theme-red);
}

.rs-campus-life-seven .rs-notice-wrapper .rs-notice-sec-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--rs-border-primary);
  margin-bottom: 20px;
}

.rs-campus-life-seven .rs-notice-wrapper .rs-notice-item:not(:last-child) {
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.rs-campus-life-seven .rs-notice-wrapper .rs-notice-title {
  font-size: 17px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 575px) {
  .rs-campus-life-seven .rs-notice-wrapper .rs-notice-title {
    font-size: 15px;
  }
}

.rs-campus-life-seven .rs-notice-wrapper .rs-notice-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.rs-campus-life-seven .rs-notice-wrapper .rs-notice-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rs-campus-life-seven .rs-notice-wrapper .rs-notice-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 5px;
}

.rs-campus-life-seven .rs-notice-wrapper .rs-notice-date svg {
  width: 14px;
  height: 14px;
}

.rs-campus-life-seven .rs-notice-wrapper .rs-notice-id {
  font-size: 13px;
}

.rs-campus-life-seven .rs-notice-wrapper .rs-notice-link svg {
  width: 20px;
  height: 20px;
}

.rs-campus-life-seven .rs-notice-wrapper .rs-notice-link svg path {
  transition: 0.3s;
}

.rs-campus-life-seven .rs-notice-wrapper .rs-notice-link a:hover svg path {
  fill: var(--rs-theme-red);
}

/*----------------------------------------*/
/*  4.8 cart css
/*----------------------------------------*/
.table.table-bordered {
  border: 1px solid var(--rs-border-primary);
}

@media only screen and (max-width: 991px) {
  .table.table-bordered {
    width: 900px;
  }
}

.table.table-bordered thead tr th {
  border: none;
}

.shop-table-content table {
  border-color: var(--rs-border-primary);
  text-align: center;
}

.shop-table-content table>thead {
  vertical-align: middle;
}

.shop-table-content table>thead th {
  font-size: 16px;
  font-weight: 500;
}

.shop-table-content table>tbody {
  vertical-align: middle;
}

.shop-table-content table .product-thumbnail img {
  width: 125px;
}

.shop-table-content table .rs-product-quantity {
  margin: auto;
}

.removeRow {
  color: var(--rs-black);
  transition: all 0.3s ease-in-out;
}

.removeRow:hover {
  color: var(--rs-theme-orange);
}

.rs-cart-checkout-wrapper {
  background: var(--rs-bg-primary);
  padding: 36px 24px 28px;
  margin-left: -24px;
}

.rs-cart-checkout-top {
  padding-bottom: 13px;
  margin-bottom: 19px;
  border-bottom: 1px solid var(--rs-border-primary);
}

.rs-cart-checkout-top span {
  font-size: 20px;
  color: var(--rs-black);
  font-weight: 500;
}

.rs-cart-checkout-shipping {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rs-border-primary);
  margin-bottom: 15px;
}

.rs-cart-checkout-shipping-title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
  font-family: var(--rs-ff-body);
  color: var(--rs-black);
}

.rs-cart-checkout-shipping-option:not(:last-child) {
  margin-bottom: 5px;
}

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

.rs-cart-checkout-shipping-option label {
  color: var(--rs-black);
  position: relative;
  padding-left: 25px;
  display: flex;
  justify-content: space-between;
}

.rs-cart-checkout-shipping-option label span {
  color: var(--rs-primary);
}

.rs-cart-checkout-total {
  margin-bottom: 25px;
}

.rs-cart-checkout-total span {
  font-weight: 500;
  font-size: 18px;
  color: var(--rs-black);
}

.rs-cart-coupon-input-box label {
  font-size: 18px;
  color: var(--rs-black);
  margin-bottom: 10px;
  font-weight: var(--rs-fw-sbold);
}

.rs-cart-coupon-input-box input[type=text] {
  max-width: 282px;
  height: 60px;
}

.rs-cart-coupon-input .rs-btn:hover {
  background: var(--rs-theme-yellow);
}

.rs-cart-update .rs-btn:hover {
  background: var(--rs-theme-yellow);
}

.cart-page-total {
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .cart-page-total {
    margin-top: 60px;
  }
}

.cart-page-total h5 {
  margin-bottom: 20px;
}

.cart-page-total ul {
  border: 1px solid var(--rs-border-primary);
}

.cart-page-total ul li {
  list-style: none;
  font-size: 16px;
  color: var(--rs-black);
  padding: 10px 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-page-total ul li:not(:last-child) {
  border-bottom: 1px solid var(--rs-border-primary);
}

.cart-page-total .rs-btn {
  border-color: var(--rs-border-primary);
  color: var(--rs-title-primary);
}

.cart-page-total .rs-btn:hover {
  background: var(--rs-theme-blue);
  color: var(--rs-white);
  border-color: var(--rs-theme-blue);
}

.product-title:hover {
  color: var(--rs-theme-yellow);
}

/*----------------------------------------*/
/*   4.9 Contact css
/*----------------------------------------*/
.rs-contact-one {
  position: relative;
  overflow-x: clip;
  z-index: 1;
}

.rs-contact-one .rs-contact-bg-thumb {
  position: absolute;
  width: 100%;
  height: 600px;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 12px;
}

@media only screen and (max-width: 991px) {
  .rs-contact-one .rs-contact-bg-thumb {
    display: none;
  }
}

.rs-contact-one .rs-contact-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(96.26deg, rgba(0, 58, 101, 0) 0%, #003A65 99.06%);
  z-index: -1;
  opacity: 0.17;
  border-radius: 12px;
}

@media only screen and (max-width: 991px) {
  .rs-contact-one .rs-contact-bg-thumb::before {
    display: none;
  }
}

.rs-contact-one .rs-contact-thumb-wrapper {
  position: relative;
}

.rs-contact-one .rs-contact-bg-thumb-two {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 12px;
  display: none;
}

@media only screen and (max-width: 991px) {
  .rs-contact-one .rs-contact-bg-thumb-two {
    display: block;
  }
}

.rs-contact-one .rs-contact-wrapper {
  margin-inline: 40px;
  position: relative;
}

@media only screen and (max-width: 1600px) {
  .rs-contact-one .rs-contact-wrapper {
    margin-inline: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-contact-one .rs-contact-wrapper {
    margin-inline: 0px;
  }
}

.rs-contact-one .rs-contact-sec-wrapper {
  margin-inline-end: 100px;
}

@media only screen and (max-width: 1600px) {
  .rs-contact-one .rs-contact-sec-wrapper {
    margin-inline-end: 0px;
  }
}

.rs-contact-one .rs-contact-form {
  padding-inline-end: 40px;
  padding-inline-start: 40px;
  padding-top: 30px;
  padding-bottom: 40px;
  background: var(--rs-theme-blue);
  border-top: 5px solid var(--rs-theme-yellow);
  border-radius: 0px 0px 12px 12px;
  margin-bottom: 80px;
}

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

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

@media only screen and (max-width: 480px) {
  .rs-contact-one .rs-contact-form {
    padding-inline-end: 20px;
    padding-inline-start: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

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

.rs-contact-one .rs-contact-input input {
  height: 50px;
  border-radius: 8px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  background: #003359;
  border-color: #003359;
  color: var(--rs-white);
}

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

.rs-contact-one .rs-contact-input textarea {
  height: 140px;
  border-radius: 8px;
  padding: 15px 20px;
  background: #003359;
  border-color: #003359;
  color: var(--rs-white);
}

.rs-contact-one .rs-contact-input textarea::placeholder {
  color: rgba(255, 255, 255, 0.396);
}

.rs-contact-one .rs-contact-thumb {
  position: relative;
  width: 355px;
  margin-top: 80px;
}

@media only screen and (max-width: 991px) {
  .rs-contact-one .rs-contact-thumb {
    margin: 30px auto 0;
  }
}

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

.rs-contact-one .rs-contact-thumb img {
  width: 100%;
  object-fit: cover;
}

.rs-contact-one .form-title {
  color: var(--rs-white);
}

@media only screen and (max-width: 1199px) {
  .rs-contact-one.has-theme-red .rs-contact-bg-thumb {
    height: 550px;
  }
}

.rs-contact-one.has-theme-red::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 310px;
  background: var(--rs-bg-secondary);
  bottom: 0;
  z-index: -1;
}

.rs-contact-one.has-theme-red .rs-contact-bg-thumb::before {
  background-image: linear-gradient(-96.26deg, rgba(35, 31, 32, 0.5215686275) 0%, rgba(35, 31, 32, 0.5411764706) 99.06%);
  opacity: 1;
}

.rs-contact-one.has-theme-red .rs-contact-wrapper {
  margin-inline: 60px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 1600px) {
  .rs-contact-one.has-theme-red .rs-contact-wrapper {
    margin-inline: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-contact-one.has-theme-red .rs-contact-wrapper {
    margin-inline: 0px;
    padding-bottom: 0;
  }
}

.rs-contact-one.has-theme-red .rs-contact-form {
  background: var(--rs-bg-black);
  border-top: 10px solid var(--rs-theme-red);
  margin-bottom: 0;
}

.rs-contact-one.has-theme-red .rs-contact-input input {
  background: #191516;
  border-color: #191516;
}

.rs-contact-one.has-theme-red .rs-contact-input textarea {
  background: #191516;
  border-color: #191516;
}

@media only screen and (max-width: 991px) {
  .rs-contact-one.has-theme-green {
    padding-bottom: 80px;
  }
}

.rs-contact-one.has-theme-green .rs-contact-bg-thumb {
  height: 615px;
  border-radius: 0;
}

.rs-contact-one.has-theme-green .rs-contact-bg-thumb::before {
  background-image: linear-gradient(96.26deg, rgba(0, 58, 101, 0) 0%, #1D3D36 99.06%);
  opacity: 1;
}

.rs-contact-one.has-theme-green .rs-contact-wrapper {
  padding: 0;
  margin: 0;
}

.rs-contact-one.has-theme-green .rs-contact-form {
  background: var(--rs-white);
  border-top: 0;
}

.rs-contact-one.has-theme-green .rs-contact-input input {
  background: var(--rs-white);
  border-color: var(--rs-border-primary);
  color: var(--rs-title-primary);
}

.rs-contact-one.has-theme-green .rs-contact-input input::placeholder {
  color: rgba(2, 1, 1, 0.4);
}

.rs-contact-one.has-theme-green .rs-contact-input textarea {
  background: var(--rs-white);
  border-color: var(--rs-border-primary);
  color: var(--rs-title-primary);
}

.rs-contact-one.has-theme-green .rs-contact-input textarea::placeholder {
  color: rgba(2, 1, 1, 0.4);
}

.rs-contact-one.has-theme-green .rs-contact-thumb {
  margin-top: 120px;
}

@media only screen and (max-width: 991px) {
  .rs-contact-one.has-theme-green .rs-contact-thumb {
    margin-top: 30px;
  }
}

.rs-contact-one.has-theme-green .form-title {
  color: var(--rs-title-primary);
}

.rs-contact-one.has-theme-cyan::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 305px;
  background: var(--rs-bg-primary);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.rs-contact-one.has-theme-cyan .rs-contact-shape {
  position: absolute;
  top: 140px;
  inset-inline-start: 0;
}

@media only screen and (max-width: 1600px) {
  .rs-contact-one.has-theme-cyan .rs-contact-shape {
    display: none;
  }
}

.rs-contact-one.has-theme-cyan .rs-contact-bg-thumb::before {
  background-image: linear-gradient(96.26deg, rgba(0, 58, 101, 0) 0%, #0C5776 99.06%);
  opacity: 1;
}

.rs-contact-one.has-theme-cyan .rs-contact-form {
  background: var(--rs-white);
  border-top: 0;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.rs-contact-one.has-theme-cyan .rs-contact-input input {
  background: var(--rs-white);
  border-color: var(--rs-border-primary);
  color: var(--rs-title-primary);
}

.rs-contact-one.has-theme-cyan .rs-contact-input input::placeholder {
  color: rgba(2, 1, 1, 0.4);
}

.rs-contact-one.has-theme-cyan .rs-contact-input input:focus {
  border-color: var(--rs-theme-cyan);
}

.rs-contact-one.has-theme-cyan .rs-contact-input textarea {
  background: var(--rs-white);
  border-color: var(--rs-border-primary);
  color: var(--rs-title-primary);
}

.rs-contact-one.has-theme-cyan .rs-contact-input textarea::placeholder {
  color: rgba(2, 1, 1, 0.4);
}

.rs-contact-one.has-theme-cyan .rs-contact-input textarea:focus {
  border-color: var(--rs-theme-cyan);
}

.rs-contact-one.has-theme-cyan .rs-contact-thumb {
  margin-top: 90px;
}

@media only screen and (max-width: 991px) {
  .rs-contact-one.has-theme-cyan .rs-contact-thumb {
    margin-top: 40px;
  }
}

.rs-contact-one.has-theme-cyan .form-title {
  color: var(--rs-title-primary);
}

.rs-contact-one.has-theme-cyan .rs-contact-wrapper {
  margin-inline: 60px;
}

@media only screen and (max-width: 1600px) {
  .rs-contact-one.has-theme-cyan .rs-contact-wrapper {
    margin-inline: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-contact-one.has-theme-cyan .rs-contact-wrapper {
    margin-inline: 0px;
  }
}

.rs-contact-one.has-theme-red-two .rs-contact-shape {
  position: absolute;
  top: 140px;
  inset-inline-start: 0;
}

@media only screen and (max-width: 1600px) {
  .rs-contact-one.has-theme-red-two .rs-contact-shape {
    display: none;
  }
}

.rs-contact-one.has-theme-red-two .rs-contact-bg-thumb::before {
  content: none;
}

.rs-contact-one.has-theme-red-two .rs-contact-form {
  background: var(--rs-white);
  border-top: 0;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.rs-contact-one.has-theme-red-two .rs-contact-input input {
  background: var(--rs-white);
  border-color: var(--rs-border-primary);
  color: var(--rs-title-primary);
}

.rs-contact-one.has-theme-red-two .rs-contact-input input::placeholder {
  color: rgba(2, 1, 1, 0.4);
}

.rs-contact-one.has-theme-red-two .rs-contact-input input:focus {
  border-color: var(--rs-theme-red);
}

.rs-contact-one.has-theme-red-two .rs-contact-input textarea {
  background: var(--rs-white);
  border-color: var(--rs-border-primary);
  color: var(--rs-title-primary);
}

.rs-contact-one.has-theme-red-two .rs-contact-input textarea::placeholder {
  color: rgba(2, 1, 1, 0.4);
}

.rs-contact-one.has-theme-red-two .rs-contact-input textarea:focus {
  border-color: var(--rs-theme-red);
}

.rs-contact-one.has-theme-red-two .rs-contact-thumb {
  margin-top: 90px;
}

@media only screen and (max-width: 991px) {
  .rs-contact-one.has-theme-red-two .rs-contact-thumb {
    margin-top: 40px;
  }
}

.rs-contact-one.has-theme-red-two .form-title {
  color: var(--rs-title-primary);
}

.rs-contact-one.has-theme-red-two .rs-contact-wrapper {
  margin-inline: 0px;
}

.rs-contact-two {
  position: relative;
  overflow-x: clip;
  z-index: 1;
  padding-bottom: 120px;
}

@media only screen and (max-width: 1199px) {
  .rs-contact-two {
    padding-bottom: 100px;
  }
}

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

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

.rs-contact-two .rs-contact-wrapper {
  position: relative;
  margin-inline: 40px;
}

@media only screen and (max-width: 767px) {
  .rs-contact-two .rs-contact-wrapper {
    margin-inline: 0px;
  }
}

.rs-contact-two .rs-contact-bg-thumb {
  position: absolute;
  width: 100%;
  height: 528px;
  bottom: -120px;
  left: 0;
  z-index: -1;
  border-radius: 16px;
}

@media only screen and (max-width: 1199px) {
  .rs-contact-two .rs-contact-bg-thumb {
    bottom: -100px;
    height: 500px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-contact-two .rs-contact-bg-thumb {
    bottom: -80px;
    height: 470px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-contact-two .rs-contact-bg-thumb {
    display: none;
  }
}

.rs-contact-two .rs-contact-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 58, 101, 0) 5.54%, #030303 168.66%);
  border-radius: 16px;
}

.rs-contact-two .rs-contact-form-wrapper {
  background: var(--rs-white);
  padding: 40px;
  border-radius: 12px;
}

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

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

.rs-contact-two .rs-contact-input input {
  height: 50px;
  border-radius: 8px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  color: var(--rs-title-primary);
}

.rs-contact-two .rs-contact-input input::placeholder {
  color: rgba(2, 1, 1, 0.43);
}

.rs-contact-two .rs-contact-input textarea {
  height: 140px;
  border-radius: 8px;
  padding: 15px 20px;
  color: var(--rs-title-primary);
}

.rs-contact-two .rs-contact-input textarea::placeholder {
  color: rgba(2, 1, 1, 0.43);
}

.rs-contact-two.has-theme-green-two .rs-contact-wrapper {
  margin-inline: 0px;
}

.rs-contact-two.has-theme-green-two .rs-contact-bg-thumb {
  border-radius: 0px;
}

.rs-contact-two.has-theme-green-two .rs-contact-bg-thumb::before {
  border-radius: 0px;
}

.rs-contact-two.has-theme-green-two .rs-contact-input input:focus {
  border-color: var(--rs-theme-green-two);
}

.rs-contact-two.has-theme-green-two .rs-contact-input textarea:focus {
  border-color: var(--rs-theme-green-two);
}

.rs-contact-three .rs-contact-form-wrapper {
  padding-inline-end: 30px;
  padding-inline-start: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--rs-white);
  border-radius: 12px;
}

@media only screen and (max-width: 1199px) {
  .rs-contact-three .rs-contact-form-wrapper {
    padding-inline-end: 25px;
    padding-inline-start: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.rs-contact-three .rs-contact-input-title label {
  font-size: 16px;
  color: var(--rs-title-tertiary);
  margin-bottom: 7px;
  font-weight: 500;
}

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

.rs-contact-three .rs-contact-input-box .nice-select {
  margin-bottom: 20px;
}

.rs-contact-three .rs-contact-input input::placeholder {
  color: rgba(76, 76, 76, 0.7803921569);
}

.rs-contact-three .rs-contact-input .nice-select {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  background: var(--rs-white);
  color: rgba(76, 76, 76, 0.78);
}

.rs-contact-three .rs-contact-input .nice-select .list {
  margin-top: 0;
  border-radius: 0 0 4px 4px;
  width: 100%;
  padding-bottom: 5px;
  padding-top: 5px;
}

.rs-contact-three .form-group {
  margin-bottom: 45px;
}

.rs-contact-three .form-group label {
  font-size: 16px;
  color: var(--rs-title-tertiary);
  margin-bottom: 10px;
  font-weight: 500;
}

.rs-contact-three .form-group input {
  cursor: pointer;
  display: block;
}

.rs-contact-four {
  position: relative;
  z-index: 1;
}

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

@media only screen and (max-width: 1600px) {
  .rs-contact-four .rs-contact-wrapper {
    grid-template-columns: 680px auto;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-contact-four .rs-contact-wrapper {
    grid-template-columns: 550px auto;
  }
}

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

.rs-contact-four .rs-contact-form {
  padding-inline-end: 40px;
  padding-inline-start: 40px;
  padding-top: 40px;
  padding-bottom: 50px;
  background: var(--rs-theme-blue);
  border-radius: 12px;
}

@media only screen and (max-width: 1600px) {
  .rs-contact-four .rs-contact-form {
    padding-inline-end: 40px;
    padding-inline-start: 40px;
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-contact-four .rs-contact-form {
    padding-inline-end: 30px;
    padding-inline-start: 30px;
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

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

.rs-contact-four .rs-contact-form-title {
  margin-bottom: 17px;
  color: var(--rs-white);
}

.rs-contact-four .rs-contact-input input {
  height: 50px;
  border-radius: 3px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  background-color: #003359;
  border-color: #003359;
  color: var(--rs-white);
}

.rs-contact-four .rs-contact-input input::placeholder {
  color: rgba(255, 255, 255, 0.3960784314);
}

.rs-contact-four .rs-contact-input textarea {
  height: 174px;
  border-radius: 3px;
  padding: 15px 20px;
  background-color: #003359;
  border-color: #003359;
  color: var(--rs-white);
}

.rs-contact-four .rs-contact-input textarea::placeholder {
  color: rgba(255, 255, 255, 0.3960784314);
}

.rs-contact-four .rs-btn {
  border-radius: 6px;
}

.rs-contact-four input[type=checkbox]~label::after {
  z-index: 1;
}

.rs-contact-four input[type=checkbox]~label::before {
  z-index: 2;
}

.rs-contact-four .rs-form-check {
  margin-bottom: 20px;
}

.rs-contact-four .rs-map-one .rs-google-map {
  height: 100%;
}

.rs-contact-four .rs-map-one .rs-google-map iframe {
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .rs-contact-four .rs-map-one .rs-google-map iframe {
    height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-contact-four .rs-map-one .rs-google-map iframe {
    height: 300px;
  }
}

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

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

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

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

.rs-contact-five .rs-contact-item {
  background: var(--rs-white);
  border-radius: 12px;
  padding-top: 40px;
  padding-inline: 40px;
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .rs-contact-five .rs-contact-item {
    padding-top: 30px;
    padding-inline: 30px;
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-contact-five .rs-contact-item {
    padding-top: 20px;
    padding-inline: 20px;
    padding-bottom: 20px;
  }
}

.rs-contact-five .rs-contact-shape {
  position: absolute;
  inset-inline-start: 0;
  bottom: 20px;
}

.rs-contact-five .rs-contact-icon svg {
  width: 40px;
  height: 40px;
}

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

.rs-contact-five .rs-contact-title {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.rs-contact-five .rs-contact-links a {
  font-size: 15px;
  display: inline-block;
}

.rs-contact-five .rs-contact-links a:first-child {
  margin-bottom: 5px;
}

.rs-contact-five .rs-contact-links a:hover {
  color: var(--rs-theme-blue);
}

.rs-map-one {
  line-height: 0;
}

.rs-map-one .rs-google-map iframe {
  width: 100%;
  height: 480px;
  border-radius: 12px;
}

@media only screen and (max-width: 1600px) {
  .rs-map-one .rs-google-map iframe {
    height: 500px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-map-one .rs-google-map iframe {
    height: 450px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-map-one .rs-google-map iframe {
    height: 400px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-map-one .rs-google-map iframe {
    height: 300px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-map-one .rs-google-map iframe {
    height: 250px;
  }
}

/*----------------------------------------*/
/*  4.10 call to action css
/*----------------------------------------*/
.rs-cta-one {
  position: relative;
}

.rs-cta-one .rs-cta-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.rs-cta-one .rs-cta-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(247deg, rgba(0, 58, 101, 0) 0%, var(--rs-theme-blue) 64%);
  opacity: 0.7;
}

.rs-cta-one .rs-cta-wrapper {
  padding-top: 90px;
  padding-bottom: 100px;
}

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

.rs-cta-one .section-desc {
  max-width: 570px;
  margin-bottom: 35px;
}

.rs-cta-one.has-theme-red .rs-cta-bg-thumb::before {
  background-image: linear-gradient(247deg, rgba(0, 58, 101, 0) 0%, #231F20 64%);
}

.rs-cta-two {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
  margin-inline-start: 10px;
}

@media only screen and (max-width: 1600px) {
  .rs-cta-two {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-inline-start: 0px;
  }
}

.rs-cta-two .rs-cta-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  z-index: 1;
  border-radius: 12px;
}

.rs-cta-two .rs-cta-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.88) 75%);
  border-radius: 12px;
}

.rs-cta-two .rs-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.rs-cta-two .rs-cta-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(21px);
  background-image: radial-gradient(at center center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

.rs-cta-two .rs-cta-icon img {
  width: 60px;
}

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

.rs-cta-two .rs-cta-contact {
  display: flex;
  flex-direction: column;
}

.rs-cta-two .rs-cta-contact .contact-phone {
  font-size: 24px;
  color: var(--rs-theme-yellow);
  font-family: var(--rs-ff-title);
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .rs-cta-two .rs-cta-contact .contact-phone {
    font-size: 22px;
  }
}

.rs-cta-two .rs-cta-contact .contact-email {
  color: var(--rs-white);
}

.rs-cta-two .rs-cta-contact .contact-email:hover {
  color: var(--rs-theme-yellow);
}

.rs-cta-two .rs-cta-btn {
  margin-top: 25px;
}

/*----------------------------------------*/
/*  4.11 curriculum css
/*----------------------------------------*/
.rs-program-details-curriculum-item {
  margin-top: 30px;
}

.rs-curriculum-table-one .rs-curriculum-table-inner {
  background-color: var(--rs-white);
  border: 1px solid var(--rs-border-primary);
  width: max-content;
  min-width: 100%;
}

.rs-curriculum-table-one .rs-curriculum-table-inner thead {
  background-color: var(--rs-theme-blue);
  color: var(--rs-white);
}

.rs-curriculum-table-one .rs-curriculum-table-inner th {
  padding: 15px 24px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--rs-ff-title);
  border-inline-end: 1px solid var(--rs-border-tertiary);
}

@media only screen and (max-width: 1199px) {
  .rs-curriculum-table-one .rs-curriculum-table-inner th {
    padding: 15px 15px;
  }
}

.rs-curriculum-table-one .rs-curriculum-table-inner th:first-child {
  width: 80%;
}

@media only screen and (max-width: 575px) {
  .rs-curriculum-table-one .rs-curriculum-table-inner th:first-child {
    width: 50%;
  }
}

.rs-curriculum-table-one .rs-curriculum-table-inner td {
  padding: 15px 24px;
  vertical-align: middle;
  border: 1px solid var(--rs-border-primary);
  font-size: 15px;
}

@media only screen and (max-width: 1199px) {
  .rs-curriculum-table-one .rs-curriculum-table-inner td {
    padding: 15px 15px;
  }
}

.rs-curriculum-table-one .rs-curriculum-table-inner td a:hover {
  color: var(--rs-theme-blue);
}

.rs-curriculum-table-two .rs-curriculum-table-inner {
  background-color: var(--rs-white);
  border-collapse: collapse;
  border-inline-start: 1px solid var(--rs-border-primary);
  border-inline-end: 1px solid var(--rs-border-primary);
  border-bottom: 1px solid var(--rs-border-primary);
  text-align: left;
  width: max-content;
  min-width: 100%;
}

.rs-curriculum-table-two .rs-curriculum-table-inner thead {
  background-color: var(--rs-theme-blue);
  color: var(--rs-white);
}

.rs-curriculum-table-two .rs-curriculum-table-inner thead th {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 14px;
  border-inline-end: 1px solid var(--rs-border-tertiary);
}

.rs-curriculum-table-two .rs-curriculum-table-inner thead th:last-child {
  border-inline-end: none;
}

@media only screen and (max-width: 1199px) {
  .rs-curriculum-table-two .rs-curriculum-table-inner thead th {
    padding: 15px 15px;
  }
}

.rs-curriculum-table-two .rs-curriculum-table-inner tbody tr {
  border-top: 1px solid var(--rs-border-primary);
}

.rs-curriculum-table-two .rs-curriculum-table-inner tbody td {
  padding: 14px 24px;
  vertical-align: middle;
  font-size: 15px;
  border-right: 1px solid var(--rs-border-primary);
}

.rs-curriculum-table-two .rs-curriculum-table-inner tbody td:first-child {
  width: 25%;
}

@media only screen and (max-width: 1600px) {
  .rs-curriculum-table-two .rs-curriculum-table-inner tbody td:first-child {
    width: 20%;
  }
}

@media only screen and (max-width: 575px) {
  .rs-curriculum-table-two .rs-curriculum-table-inner tbody td:first-child {
    width: 15%;
  }
}

.rs-curriculum-table-two .rs-curriculum-table-inner tbody td:last-child {
  border-inline-end: none;
}

@media only screen and (max-width: 1199px) {
  .rs-curriculum-table-two .rs-curriculum-table-inner tbody td {
    padding: 15px 15px;
  }
}

/*----------------------------------------*/
/*  4.12 deadline css
/*----------------------------------------*/
.rs-deadline-one .rs-deadline-table-inner {
  background-color: var(--rs-white);
  border: 1px solid var(--rs-border-primary);
  width: max-content;
  min-width: 100%;
}

.rs-deadline-one .rs-deadline-table-inner thead {
  background-color: var(--rs-theme-blue);
  color: var(--rs-white);
}

.rs-deadline-one .rs-deadline-table-inner th {
  padding: 15px 24px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--rs-ff-title);
  border-inline-end: 1px solid var(--rs-border-tertiary);
}

@media only screen and (max-width: 1199px) {
  .rs-deadline-one .rs-deadline-table-inner th {
    padding: 15px 15px;
  }
}

.rs-deadline-one .rs-deadline-table-inner td {
  padding: 15px 24px;
  vertical-align: middle;
  border: 1px solid var(--rs-border-primary);
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 1199px) {
  .rs-deadline-one .rs-deadline-table-inner td {
    padding: 15px 15px;
  }
}

.rs-deadline-one .rs-deadline-table-inner td a:hover {
  color: var(--rs-theme-blue);
}

/*----------------------------------------*/
/*  4.13 directory
/*----------------------------------------*/
.rs-directory-one .rs-directory-table-inner {
  background-color: var(--rs-white);
  border: 1px solid var(--rs-border-primary);
  width: max-content;
  min-width: 100%;
}

.rs-directory-one .rs-directory-table-inner thead {
  background-color: var(--rs-theme-blue);
  color: var(--rs-white);
}

.rs-directory-one .rs-directory-table-inner th {
  padding: 15px 24px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--rs-ff-title);
  border-inline-end: 1px solid var(--rs-border-tertiary);
}

@media only screen and (max-width: 1199px) {
  .rs-directory-one .rs-directory-table-inner th {
    padding: 15px 15px;
  }
}

.rs-directory-one .rs-directory-table-inner td {
  padding: 15px 24px;
  vertical-align: middle;
  border: 1px solid var(--rs-border-primary);
  font-size: 15px;
}

@media only screen and (max-width: 1199px) {
  .rs-directory-one .rs-directory-table-inner td {
    padding: 15px 15px;
  }
}

.rs-directory-one .rs-directory-table-inner td a:hover {
  color: var(--rs-theme-blue);
}

.rs-directory-one .rs-directory-title {
  color: var(--rs-title-tertiary);
  margin-bottom: 30px;
  margin-top: 30px;
}

.rs-directory-one .desc {
  max-width: 440px;
  margin-top: 30px;
  margin-bottom: 0;
}

/*----------------------------------------*/
/*  4.14 error
/*----------------------------------------*/
.error-wrapper {
  position: relative;
}

.error-wrapper .section-title {
  font-size: 50px;
}

@media only screen and (max-width: 1366px) {
  .error-wrapper .section-title {
    font-size: 45px;
  }
}

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

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

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

@media only screen and (max-width: 480px) {
  .error-wrapper .section-title {
    font-size: 25px;
  }
}

.error-title {
  font-size: 500px;
  line-height: 0.8;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

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

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

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

/*----------------------------------------*/
/*  4.15 event css
/*----------------------------------------*/
.rs-event-one .rs-event-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.rs-event-one .rs-event-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotateY(180deg);
  z-index: -1;
}

.rs-event-one .rs-event-item {
  display: grid;
  grid-template-columns: 220px auto;
  background: var(--rs-white);
  border-radius: 12px;
  padding: 12px;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .rs-event-one .rs-event-item {
    grid-template-columns: 200px auto;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-event-one .rs-event-item {
    grid-template-columns: 150px auto;
    gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-event-one .rs-event-item {
    grid-template-columns: 250px auto;
    gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-event-one .rs-event-item {
    grid-template-columns: auto;
    gap: 25px;
    padding-bottom: 25px;
  }
}

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

@media only screen and (max-width: 767px) {
  .rs-event-one .rs-event-content {
    padding-inline: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-event-one .rs-event-content {
    padding-inline: 10px;
  }
}

.rs-event-one .rs-event-thumb {
  overflow: hidden;
  border-radius: 8px;
}

.rs-event-one .rs-event-thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: all 0.8s ease;
  transform: scale(1.02);
}

@media only screen and (max-width: 991px) {
  .rs-event-one .rs-event-thumb img {
    height: 100%;
  }
}

.rs-event-one .rs-event-meta {
  display: flex;
  align-items: center;
  gap: 5px 12px;
  flex-wrap: wrap;
}

.rs-event-one .rs-event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

.rs-event-one .rs-event-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.rs-event-one .rs-event-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-event-one.has-theme-red {
  background: var(--rs-bg-black);
}

.rs-event-one.has-theme-red .rs-btn:hover .icon-box svg path {
  fill: var(--rs-black);
}

.rs-event-one.has-theme-red .rs-event-item {
  background: #191516;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.rs-event-one.has-theme-red .rs-event-title {
  color: var(--rs-white);
}

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

.rs-event-one.has-theme-red .rs-event-meta-item {
  color: rgba(255, 255, 255, 0.8);
}

.rs-event-one.has-theme-red .rs-event-shape {
  transform: rotateY(0);
}

.rs-event-one.has-theme-green .rs-event-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 70px;
}

@media only screen and (max-width: 1366px) {
  .rs-event-one.has-theme-green .rs-event-wrapper {
    gap: 30px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-event-one.has-theme-green .rs-event-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-event-one.has-theme-green .rs-event-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rs-event-one.has-theme-green .rs-event-video {
  position: relative;
  height: 100%;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .rs-event-one.has-theme-green .rs-event-video {
    height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-event-one.has-theme-green .rs-event-video {
    height: 350px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-event-one.has-theme-green .rs-event-video {
    height: 300px;
  }
}

.rs-event-one.has-theme-green .rs-event-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 6px solid var(--rs-white);
  border-radius: 30px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.rs-event-one.has-theme-green .rs-event-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.rs-event-one.has-theme-cyan {
  background: var(--rs-theme-cyan);
}

.rs-event-one.has-theme-cyan .rs-btn:hover .icon-box svg path {
  fill: var(--rs-black);
}

.rs-event-one.has-theme-cyan .rs-event-item {
  background: #191516;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.rs-event-one.has-theme-cyan .rs-event-title {
  color: var(--rs-white);
}

.rs-event-one.has-theme-cyan .rs-event-title a:hover {
  color: var(--rs-theme-light-cyan);
}

.rs-event-one.has-theme-cyan .rs-event-meta-item {
  color: rgba(255, 255, 255, 0.8);
}

.rs-event-one.has-theme-cyan .rs-event-shape {
  transform: rotateY(0);
}

.rs-event-one.has-theme-cyan .rs-event-item {
  background: #0F6487;
}

.rs-event-two .rs-event-item {
  background: var(--rs-bg-primary);
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 30px;
  padding-inline: 10px;
  position: relative;
  z-index: 1;
}

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

.rs-event-two .rs-event-shape {
  position: absolute;
  inset-inline-end: 0;
  bottom: 0;
  transform: rotateY(180deg);
}

.rs-event-two .rs-event-content {
  padding-top: 25px;
  padding-inline: 15px;
}

@media only screen and (max-width: 991px) {
  .rs-event-two .rs-event-content {
    padding-inline: 10px;
  }
}

.rs-event-two .rs-event-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

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

.rs-event-two .rs-event-tag {
  background: var(--rs-theme-red);
  padding: 8px 15px 8px 15px;
  border-radius: 5px 5px 0px 0px;
  color: var(--rs-white);
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  inset-inline-start: 15px;
}

.rs-event-two .rs-event-meta {
  display: flex;
  align-items: center;
  gap: 8px 13px;
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.rs-event-two .rs-event-meta-item {
  font-weight: 500;
  font-size: 15px;
}

.rs-event-two .meta-divider {
  width: 15px;
  height: 2px;
  background: var(--rs-border-primary);
  display: inline-flex;
}

.rs-event-two .rs-event-btn .rs-btn {
  border-color: var(--rs-border-primary);
  border-radius: 5px;
  padding: 6px 15px 6px 15px;
  color: var(--rs-text-primary);
  font-size: 14px;
}

.rs-event-two .rs-event-btn .rs-btn:hover {
  background: var(--rs-theme-red);
  border-color: var(--rs-theme-red);
  color: var(--rs-white);
}

.rs-event-two .rs-event-title {
  margin-bottom: 20px;
}

.rs-event-two .rs-event-title a:hover {
  color: var(--rs-theme-red);
}

.rs-event-two .rs-event-pagination {
  margin-top: 45px;
}

.rs-event-two.has-theme-green-two .rs-event-item {
  background: var(--rs-white);
}

.rs-event-two.has-theme-green-two .rs-event-title a:hover {
  color: var(--rs-theme-green-two);
}

.rs-event-two.has-theme-green-two .rs-event-tag {
  background: var(--rs-theme-green-two);
}

.rs-event-two.has-theme-green-two .rs-event-btn .rs-btn:hover {
  background: var(--rs-theme-green-two);
  border-color: var(--rs-theme-green-two);
  color: var(--rs-white);
}

.rs-event-two.has-theme-yellow .rs-event-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-event-two.has-theme-yellow .rs-event-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-event-two.has-theme-yellow .rs-event-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-event-two.has-theme-yellow .rs-event-item {
  background: var(--rs-white);
}

.rs-event-two.has-theme-yellow .rs-event-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-event-two.has-theme-yellow .rs-event-tag {
  background: var(--rs-theme-yellow);
  color: var(--rs-title-primary);
}

.rs-event-two.has-theme-yellow .rs-event-btn .rs-btn:hover {
  background: var(--rs-theme-blue);
  border-color: var(--rs-theme-blue);
  color: var(--rs-white);
}

.rs-event-two.has-theme-red .rs-event-thumb {
  height: 250px;
}

.rs-event-two.has-theme-red .rs-event-thumb img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

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

.rs-event-details .rs-event-content .section-title {
  margin-top: 30px;
  margin-bottom: 30px;
}

.rs-event-details .rs-event-content .rs-desc-text p:first-child {
  margin-bottom: 20px;
}

.rs-event-details .rs-learning-feature {
  margin-bottom: 30px;
}

.rs-event-details .rs-learning-feature .rs-learning-title {
  color: var(--rs-title-tertiary);
  margin-top: 25px;
  margin-bottom: 20px;
}

.rs-event-details .rs-learning-feature .rs-list-item {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 10px;
}

.rs-event-details .rs-learning-feature .rs-list-item:not(:last-child) {
  margin-bottom: 13px;
}

.rs-event-details .rs-learning-feature .rs-list-item svg {
  width: 14px;
  min-width: 14px;
  height: 14px;
  transform: translateY(5px);
}

.rs-event-details .rs-learning-feature .rs-list-item svg path {
  fill: var(--rs-theme-blue);
}

.rs-event-details-meta ul li {
  list-style: none;
  display: flex;
  gap: 10px;
}

.rs-event-details-meta ul li:not(:last-child) {
  margin-bottom: 10px;
}

.rs-event-details-meta ul li i {
  color: var(--rs-theme-blue);
}

.rs-event-details-sidebar .sidebar-item {
  background: var(--rs-white);
  border-radius: 15px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-inline: 25px;
}

.rs-event-details-sidebar .sidebar-item:not(:last-child) {
  margin-bottom: 30px;
}

.rs-event-details .rs-event-details-btn {
  margin-top: 22px;
}

.rs-event-details .rs-event-details-map-title {
  color: var(--rs-title-tertiary);
}

.rs-event-details .rs-google-map iframe {
  width: 100%;
  height: 230px;
  border-radius: 15px;
}

.rs-event-details .rs-event-details-social-title {
  color: var(--rs-title-tertiary);
}

.rs-event-details .rs-event-details-social a {
  background: transparent;
}

.rs-event-details .rs-event-details-social a svg path {
  fill: var(--rs-theme-blue);
  transition: 0.5s;
}

.rs-event-details .rs-event-details-social a:hover {
  background: var(--rs-theme-blue);
  border-color: var(--rs-theme-blue);
}

.rs-event-details .rs-event-details-social a:hover svg path {
  fill: var(--rs-white);
}

/*----------------------------------------*/
/*  4.16 event css
/*----------------------------------------*/
.rs-experience-one {
  padding-top: 100px;
}

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

.rs-experience-one .rs-experience-wrapper {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  background: var(--rs-white);
  border-radius: 12px;
  padding-top: 35px;
  padding-inline: 35px;
  padding-bottom: 40px;
}

@media only screen and (max-width: 1600px) {
  .rs-experience-one .rs-experience-wrapper {
    padding-top: 25px;
    padding-inline: 25px;
    padding-bottom: 25px;
  }
}

.rs-experience-one .rs-experience-thumb {
  margin-top: 40px;
}

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

.rs-experience-one .rs-experience-content-wrapper {
  display: grid;
  grid-template-columns: 570px auto;
  gap: 30px 35px;
}

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

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

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

.rs-experience-one .rs-experience-content-wrapper.has-line-border .has-border::after {
  border-color: rgba(255, 255, 255, 0.9882352941);
}

.rs-experience-one .rs-experience-content-wrapper.has-line-border .has-border::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--rs-border-primary);
  inset-inline-start: 0;
  top: 5px;
}

.rs-experience-one .rs-certification-item-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 560px;
}

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

.rs-experience-one .rs-certificate-item .rs-btn {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid var(--rs-border-primary);
  width: 100%;
  padding: 14px 20px;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .rs-experience-one .rs-certificate-item .rs-btn {
    padding: 14px 14px;
  }
}

.rs-experience-one .has-border {
  position: relative;
  padding-inline-start: 30px;
}

@media only screen and (max-width: 1600px) {
  .rs-experience-one .has-border {
    padding-inline-start: 20px;
  }
}

.rs-experience-one .has-border::after {
  content: "";
  position: absolute;
  top: 5px;
  inset-inline-start: -8px;
  width: 16px;
  height: 16px;
  background-color: var(--rs-theme-blue);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/*----------------------------------------*/
/*  4.17 Faculty css
/*----------------------------------------*/
.rs-faculty-one {
  overflow-x: clip;
  background: var(--rs-bg-primary);
}

.rs-faculty-one .rs-faculty-bg {
  background: var(--rs-bg-blue);
  margin-inline-start: 45px;
  margin-inline-end: 45px;
  border-radius: 16px;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

@media only screen and (max-width: 1600px) {
  .rs-faculty-one .rs-faculty-bg {
    margin-inline-start: 0px;
    margin-inline-end: 0px;
  }
}

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

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

@media only screen and (max-width: 480px) {
  .rs-faculty-one .rs-faculty-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.rs-faculty-one .rs-faculty-shape-one {
  position: absolute;
  inset-inline-start: -60px;
  top: 0px;
}

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

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

.rs-faculty-one .rs-faculty-shape-two {
  position: absolute;
  inset-inline-end: 60px;
  bottom: 50px;
  animation: rs-rotate-anim 3s linear 0s infinite alternate;
}

@media only screen and (max-width: 1600px) {
  .rs-faculty-one .rs-faculty-shape-two {
    bottom: 20px;
  }
}

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

.rs-faculty-one .rs-faculty-wrapper {
  display: grid;
  grid-template-columns: 390px auto;
  gap: 30px 65px;
  margin-top: 50px;
  align-items: start;
}

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

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

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

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

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

@media md {
  .rs-faculty-one .rs-faculty-content-wrapper {
    position: relative;
    top: unset;
  }
}

.rs-faculty-one .rs-faculty-sec-wrapper {
  margin-top: -50px;
}

@media only screen and (max-width: 1199px) {
  .rs-faculty-one .rs-faculty-sec-wrapper {
    margin-top: 0;
  }
}

.rs-faculty-one .rs-faculty-section {
  margin-bottom: 40px;
}

.rs-faculty-one .rs-admission-cta {
  background: #051435;
  border-radius: 16px;
  padding-top: 36px;
  padding-bottom: 36px;
  padding-inline-start: 36px;
  padding-inline-end: 36px;
  display: inline-flex;
  gap: 30px;
  margin-bottom: 20px;
}

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

@media only screen and (max-width: 480px) {
  .rs-faculty-one .rs-admission-cta {
    flex-wrap: wrap;
  }
}

.rs-faculty-one .rs-admission-cta-desc {
  color: var(--rs-white);
  margin-top: 10px;
  margin-bottom: 20px;
}

.rs-faculty-one .rs-admission-cta-shape img {
  width: 100px;
}

.rs-faculty-one .rs-notice-wrapper {
  background-color: var(--rs-white);
  padding-top: 25px;
  padding-bottom: 30px;
  padding-inline-start: 35px;
  padding-inline-end: 35px;
  border-radius: 16px;
}

.rs-faculty-one .rs-notice-wrapper .popup-circle {
  width: 8px;
  height: 8px;
  position: relative;
}

.rs-faculty-one .rs-notice-wrapper .popup-circle::before {
  background: var(--rs-theme-yellow);
}

.rs-faculty-one .rs-notice-wrapper .popup-circle::after {
  background: var(--rs-theme-yellow);
}

.rs-faculty-one .rs-notice-wrapper .rs-notice-sec-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--rs-border-primary);
  margin-bottom: 20px;
}

.rs-faculty-one .rs-notice-wrapper .rs-notice-item:not(:last-child) {
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.rs-faculty-one .rs-notice-wrapper .rs-notice-title {
  font-size: 17px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 575px) {
  .rs-faculty-one .rs-notice-wrapper .rs-notice-title {
    font-size: 15px;
  }
}

.rs-faculty-one .rs-notice-wrapper .rs-notice-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.rs-faculty-one .rs-notice-wrapper .rs-notice-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rs-faculty-one .rs-notice-wrapper .rs-notice-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 5px;
}

.rs-faculty-one .rs-notice-wrapper .rs-notice-date svg {
  width: 14px;
  height: 14px;
}

.rs-faculty-one .rs-notice-wrapper .rs-notice-id {
  font-size: 13px;
}

.rs-faculty-one .rs-notice-wrapper .rs-notice-link svg {
  width: 20px;
  height: 20px;
}

.rs-faculty-one .rs-notice-wrapper .rs-notice-link svg path {
  transition: 0.3s;
}

.rs-faculty-one .rs-notice-wrapper .rs-notice-link a:hover svg path {
  fill: var(--rs-theme-yellow);
}

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

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

.rs-faculty-one .rs-faculty-item {
  overflow: hidden;
  border-radius: 16px;
  border: 6px solid #194E74;
}

.rs-faculty-one .rs-faculty-thumb {
  position: relative;
  z-index: 1;
}

.rs-faculty-one .rs-faculty-thumb:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 58, 101, 0) 46.86%, #003A65 91.09%);
}

.rs-faculty-one .rs-faculty-thumb img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: top center;
}

@media only screen and (max-width: 1199px) {
  .rs-faculty-one .rs-faculty-thumb img {
    height: 100%;
  }
}

.rs-faculty-one .rs-faculty-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding-top: 30px;
  padding-bottom: 25px;
  padding-inline: 35px;
}

@media only screen and (max-width: 1600px) {
  .rs-faculty-one .rs-faculty-info {
    padding-inline: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-faculty-one .rs-faculty-info {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-inline: 20px;
  }
}

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

.rs-faculty-one .rs-faculty-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-faculty-one .rs-faculty-tab-wrapper .nav-pills {
  display: flex;
  justify-content: end;
  gap: 30px 60px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 1199px) {
  .rs-faculty-one .rs-faculty-tab-wrapper .nav-pills {
    gap: 30px 30px;
    justify-content: center;
  }
}

.rs-faculty-one .rs-faculty-tab-wrapper .nav-link {
  background: transparent;
  font-weight: 600;
  padding: 0;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border-radius: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1490196078);
  color: var(--rs-white);
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  padding-bottom: 10px;
}

@media only screen and (max-width: 1600px) {
  .rs-faculty-one .rs-faculty-tab-wrapper .nav-link {
    font-size: 18px;
  }
}

.rs-faculty-one .rs-faculty-tab-wrapper .nav-link.active {
  color: var(--rs-theme-yellow);
  border-color: var(--rs-theme-yellow);
}

.rs-faculty-one .rs-faculty-tab-wrapper .nav-link.active .rs-faculty-tab-icon svg path {
  fill: var(--rs-theme-yellow);
}

.rs-faculty-one .rs-faculty-tab-wrapper .nav-link:hover {
  color: var(--rs-theme-yellow);
  border-color: var(--rs-theme-yellow);
}

.rs-faculty-one .rs-faculty-tab-wrapper .nav-link:hover .rs-faculty-tab-icon svg path {
  fill: var(--rs-theme-yellow);
  transition: all 0.3s ease-in-out;
}

.rs-faculty-one .rs-faculty-tab-icon svg {
  width: 30px;
  height: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-faculty-one .rs-faculty-tab-icon svg {
    width: 20px;
    height: 20px;
  }
}

.rs-faculty-one .rs-faculty-tab-icon svg path {
  fill: var(--rs-white);
}

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

@media only screen and (max-width: 767px) {
  .rs-faculty-one .rs-faculty-content-wrapper {
    display: none;
  }
}

.rs-faculty-one .rs-faculty-accordion {
  display: none;
}

@media only screen and (max-width: 767px) {
  .rs-faculty-one .rs-faculty-accordion {
    display: block;
  }
}

.rs-faculty-one .rs-accordion-one .rs-accordion-item {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.rs-faculty-one .rs-accordion-one .accordion-button {
  font-weight: 600;
  padding: 0;
  padding-bottom: 0px;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1490196078);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  color: var(--rs-white);
  font-size: 20px;
  transition: all 0.5s ease-in-out;
  padding-bottom: 10px;
}

.rs-faculty-one .rs-accordion-one .accordion-button:not(.collapsed) {
  color: var(--rs-theme-yellow);
  border-color: var(--rs-theme-yellow);
}

.rs-faculty-one .rs-accordion-one .accordion-button:not(.collapsed) .rs-faculty-tab-icon svg path {
  fill: var(--rs-theme-yellow);
}

.rs-faculty-one .rs-accordion-one .accordion-button .rs-faculty-tab-icon svg path {
  transition: 0.5s;
  fill: var(--rs-white);
}

.rs-faculty-one .rs-accordion-one .accordion-button:hover {
  color: var(--rs-theme-yellow);
}

.rs-faculty-one .rs-accordion-one .accordion-button:hover .rs-faculty-tab-icon svg path {
  fill: var(--rs-theme-yellow);
}

.rs-faculty-one .rs-accordion-one .accordion-body {
  padding-top: 20px;
  padding: 0;
  margin-top: 30px;
}

.rs-faculty-two {
  background: var(--rs-theme-red);
}

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

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

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

.rs-faculty-two .rs-faculty-item:hover .rs-faculty-info {
  bottom: 0;
}

.rs-faculty-two .rs-faculty-item:hover .rs-faculty-title {
  margin-bottom: 15px;
}

.rs-faculty-two .rs-faculty-thumb {
  border-radius: 16px;
  border: 6px solid #A0233D;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.rs-faculty-two .rs-faculty-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(33, 37, 45, 0) 38%, #21252D 91.09%);
  opacity: 0.9;
  border-radius: 16px;
}

.rs-faculty-two .rs-faculty-thumb img {
  width: 100%;
  border-radius: 16px;
}

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

.rs-faculty-two .rs-faculty-title a:hover {
  color: var(--rs-theme-red);
}

.rs-faculty-two .rs-faculty-info {
  position: absolute;
  bottom: -50px;
  width: 100%;
  left: 0;
  padding-top: 30px;
  padding-bottom: 25px;
  padding-inline: 30px;
  transition: 0.5s;
}

@media only screen and (max-width: 1199px) {
  .rs-faculty-two .rs-faculty-info {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-inline: 20px;
  }
}

.rs-faculty-two.has-theme-blue {
  background: transparent;
  position: relative;
  z-index: 1;
      min-height: 300px;
}

.rs-faculty-two.has-theme-blue .rs-faculty-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.rs-faculty-two.has-theme-blue .rs-faculty-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  /* background: var(--rs-theme-blue-two); */
}

.rs-faculty-two.has-theme-blue .rs-faculty-thumb {
  border: 0;
  border-bottom: 6px solid #194E74;
}

.rs-faculty-two.has-theme-blue .rs-faculty-thumb::before {
  background-image: linear-gradient(180deg, rgba(0, 58, 101, 0) 28%, rgba(2, 30, 64, 0.8196078431) 100%);
}

.rs-faculty-two.has-theme-blue .rs-faculty-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-faculty-two.has-theme-blue .rs-faculty-pagination {
  margin-top: 45px;
}

.rs-faculty-two.has-theme-blue .rs-faculty-pagination .swiper-pagination-bullet {
  border-color: var(--rs-white);
}

.rs-faculty-two.has-theme-blue .rs-faculty-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--rs-theme-yellow);
  border-color: var(--rs-theme-yellow);
}

.rs-faculty-two.has-theme-blue .rs-faculty-pagination .swiper-pagination-bullet:hover {
  background: var(--rs-theme-yellow);
  border-color: var(--rs-theme-yellow);
}

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

.rs-faculty-three .rs-faculty-shape {
  position: absolute;
  top: 180px;
  inset-inline-end: 100px;
}

@media only screen and (max-width: 1800px) {
  .rs-faculty-three .rs-faculty-shape {
    inset-inline-end: 30px;
  }
}

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

.rs-faculty-three .rs-faculty-item:hover .rs-faculty-info {
  bottom: 0;
}

.rs-faculty-three .rs-faculty-thumb {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.rs-faculty-three .rs-faculty-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background-image: linear-gradient(180deg, rgba(33, 37, 45, 0) 38%, #21252D 91.09%); */
  opacity: 0.9;
  border-radius: 16px;
}

.rs-faculty-three .rs-faculty-thumb img {
  width: 100%;
  border-radius: 16px;
}

.rs-faculty-three .rs-faculty-title {
  color: var(--rs-white);
  margin-bottom: 15px;
}

.rs-faculty-three .rs-faculty-title a:hover {
  color: var(--rs-theme-green-two);
}

.rs-faculty-three .rs-faculty-info {
  position: absolute;
  bottom: -50px;
  width: 100%;
  left: 0;
  padding-top: 30px;
  padding-bottom: 32px;
  padding-inline: 30px;
  transition: 0.5s;
}

@media only screen and (max-width: 575px) {
  .rs-faculty-three .rs-faculty-info {
    padding-top: 25px;
    padding-bottom: 27px;
    padding-inline: 25px;
  }
}

.rs-faculty-three .rs-program-pagination {
  margin-top: 45px;
}

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

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

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

.rs-faculty-four .rs-faculty-item {
  padding-top: 12px;
  padding-bottom: 30px;
  padding-inline: 12px;
  border-radius: 12px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.02);
  background: var(--rs-white);
  text-align: center;
}

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

.rs-faculty-four .rs-faculty-title {
  margin-top: 23px;
  margin-bottom: 20px;
}

.rs-faculty-four .rs-faculty-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-faculty-four .rs-faculty-thumb {
  overflow: hidden;
  border-radius: 12px;
}

.rs-faculty-four .rs-faculty-thumb img {
  width: 100%;
  transition: all 0.8s ease;
  transform: scale(1.02);
  height: 245px;
  object-fit: cover;
  object-position: top center;
}

.rs-faculty-four .rs-load-more-btn .rs-btn:hover {
  background: var(--rs-theme-blue);
  color: var(--rs-white);
}

.rs-faculty-five {
  overflow-x: clip;
}

.rs-faculty-five .rs-faculty-wrapper {
  display: grid;
  grid-template-columns: 530px auto;
  gap: 30px 50px;
  align-items: start;
}

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

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

.rs-faculty-five .rs-faculty-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rs-faculty-five .rs-faculty-item:hover .rs-faculty-info {
  bottom: 0;
}

.rs-faculty-five .rs-faculty-sec-wrapper {
  position: sticky;
  top: 110px;
}

@media only screen and (max-width: 991px) {
  .rs-faculty-five .rs-faculty-sec-wrapper {
    position: relative;
    top: unset;
  }
}

.rs-faculty-five .rs-faculty-thumb {
  border-radius: 16px;
  border: 6px solid var(--rs-border-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.rs-faculty-five .rs-faculty-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(33, 37, 45, 0) 38%, #21252D 91.09%);
  opacity: 0.9;
}

.rs-faculty-five .rs-faculty-thumb img {
  width: 100%;
}

@media only screen and (max-width: 480px) {
  .rs-faculty-five .rs-faculty-thumb img {
    height: 200px;
    object-fit: cover;
    object-position: top center;
  }
}

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

.rs-faculty-five .rs-faculty-title a:hover {
  color: var(--rs-theme-red);
}

.rs-faculty-five .rs-faculty-info {
  position: absolute;
  bottom: -50px;
  width: 100%;
  left: 0;
  padding-top: 30px;
  padding-bottom: 25px;
  padding-inline: 30px;
  transition: 0.5s;
}

/* Event-style faculty cards */
.rs-faculty-five {
  background: #ffffff;
}

.rs-faculty-five .rs-faculty-wrapper {
  grid-template-columns: 450px minmax(0, 1fr);
}

.rs-faculty-five .rs-faculty-sec-wrapper {
  display: block;
}

.rs-faculty-five .rs-faculty-sec-wrapper > img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.rs-faculty-five .rs-faculty-item-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.rs-faculty-five .rs-faculty-item {
  height: 100%;
  min-width: 0;
}

.rs-faculty-five .rs-faculty-thumb {
  height: 100%;
  padding: 12px 12px 28px;
  overflow: hidden;
  border: 1px solid #e8edf4;
  border-radius: 14px;
  background: #f7f9fc;
}

.rs-faculty-five .rs-faculty-thumb::before {
  display: none;
}

.rs-faculty-five .rs-faculty-thumb > img {
  display: block;
  /* height: 250px; */
  border-radius: 12px;
  object-fit: cover;
}

.rs-faculty-five .rs-faculty-info,
.rs-faculty-five .rs-faculty-item:hover .rs-faculty-info {
  position: static;
  padding: 32px 18px 8px;
}

.rs-faculty-five .rs-faculty-info::before {
  display: none;
}

.rs-faculty-five .rs-faculty-title {
  margin-bottom: 18px;
  color: #174b91;
  font-family: inherit;
  font-size: 18px;
  line-height: 1.35;
}

.rs-faculty-five .project-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #444;
  font-size: 16px;
  line-height: 1.45;
}

.rs-faculty-five .project-points li {
  position: relative;
  min-width: 0;
  padding-left: 24px;
  overflow-wrap: anywhere;
  word-break: normal;
}

.rs-faculty-five .project-points li::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  color: #f9bd31;
  font-size: 14px;
}

.rs-faculty-five .rs-faculty-btn {
  display: none;
}

.rs-faculty-five .rs-faculty-title a:hover {
  color: var(--rs-theme-red);
}

.rs-faculty-five .rs-faculty-btn .rs-btn {
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid #d9d4ce;
  border-radius: 7px 28px 28px 7px;
  color: #30343b !important;
  background: transparent;
}

.rs-faculty-five .rs-faculty-btn .icon-box {
  display: none;
}

.rs-faculty-five .rs-faculty-btn .rs-btn::after {
  content: "•";
  margin-left: 18px;
  color: #30343b;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .rs-faculty-five .rs-faculty-item-wrapper {
    grid-template-columns: 1fr;
  }

  .rs-faculty-five .rs-faculty-thumb > img {
    height: 170px;
  }
}

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

@media only screen and (max-width: 575px) {
  .rs-faculty-five .rs-faculty-item-wrapper {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 480px) {
  .rs-faculty-five .rs-faculty-info {
    padding-top: 20px;
    padding-inline: 20px;
    padding-bottom: 20px;
  }
}

.rs-faculty-five .section-desc {
  margin-top: 20px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
  .rs-faculty-five .section-desc {
    margin-top: 15px;
    margin-bottom: 25px;
  }
}

/* Birthday and wedding anniversary vertical sliders */
.celebrations-section {
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.celebrations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.celebration-panel {
  overflow: hidden;
  border: 1px solid #e5eaf1;
  border-radius: 18px;
  background: #f7f9fc;
  box-shadow: 0 14px 40px rgba(25, 61, 104, 0.08);
}

.celebration-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  color: #fff;
  background: linear-gradient(135deg, #168d42, #0b6834);
}

.celebration-anniversary .celebration-heading {
  background: linear-gradient(135deg, #71258b, #4d1768);
}

.celebration-icon {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 28px;
}

.celebration-kicker {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.celebration-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 2vw, 28px);
}

.celebration-slider {
  height: 265px;
}

.celebration-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  height: 100%;
  padding: 28px 54px 28px 28px;
}

.celebration-card > img,
.celebration-couple-icon {
  width: 170px;
  height: 190px;
  border-radius: 14px;
}

.celebration-card > img {
  object-fit: cover;
  object-position: top center;
}

.celebration-couple-icon {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #8b38a6, #e7769b);
  font-size: 72px;
}

.celebration-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #168d42;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.celebration-anniversary .celebration-label {
  color: #71258b;
}

.celebration-details h3 {
  margin-bottom: 10px;
  color: #174b91;
  font-size: 22px;
  line-height: 1.3;
}

.celebration-details p {
  margin: 0;
  color: #596273;
  line-height: 1.6;
}

.celebration-slider .swiper-pagination {
  right: 18px;
  left: auto;
}

.celebration-slider .swiper-pagination-bullet {
  display: block;
  margin: 7px 0 !important;
  background: #174b91;
}

@media only screen and (max-width: 991px) {
  .celebrations-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 575px) {
  .celebration-heading {
    padding: 20px;
  }

  .celebration-slider {
    height: 390px;
  }

  .celebration-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 24px 40px 28px 24px;
    text-align: center;
  }

  .celebration-card > img,
  .celebration-couple-icon {
    width: 145px;
    height: 165px;
  }
}

/* Rotary information dashboard */
.rotary-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 28px;
}

.dashboard-block {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e3eaf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(26, 62, 103, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(26, 62, 103, 0.13);
}

.dashboard-block h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  margin: 0;
  padding: 18px 22px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #0050a4, #003b7a);
  font-size: 18px;
  line-height: 1.15;
}

.membership-block h2,
.birthday-block h2,
.programmes-block h2 {
  color: #fff;
  background: linear-gradient(135deg, #f05a28, #ce3e0e);
}

.dashboard-block h2 span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 25px;
}

.dashboard-block table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.dashboard-block th,
.dashboard-block td {
  height: 51px;
  padding: 10px 18px;
  border-right: 1px solid #e8eef5;
  border-bottom: 1px solid #e8eef5;
}

.dashboard-block tr:nth-child(odd) td,
.dashboard-block thead th {
  background: #eaf5fc;
}

.dashboard-block thead th {
  height: 44px;
  border-bottom: 1px solid #d2e3f0;
  color: #0050a4;
  text-align: center;
}

.meeting-block td {
  height: 47px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.meeting-table-wrap {
  height: 264px;
  overflow-y: auto;
  scrollbar-color: #9db8d0 transparent;
  scrollbar-width: thin;
}

.dashboard-button {
  display: block;
  width: max-content;
  margin: 24px auto;
  padding: 11px 24px;
  border-radius: 999px;
  color: #fff;
  background: #0050a4;
  box-shadow: 0 8px 20px rgba(0, 80, 164, 0.24);
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dashboard-button:hover {
  color: #fff;
  background: #f05a28;
  transform: translateY(-2px);
}

.dashboard-vertical-slider {
  height: 340px;
}

.dashboard-person {
  display: flex;
  height: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px;
  text-align: center;
}

.dashboard-person img {
  width: 156px;
  height: 180px;
  margin: 0 0 16px;
  border: 5px solid #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(28, 55, 86, 0.16);
  object-fit: cover;
  object-position: top center;
}

.dashboard-person h3 {
  margin: 0 0 8px;
  color: #0050a4;
  font-size: 17px;
  text-transform: uppercase;
}

.dashboard-person p {
  margin: 0;
  color: #687486;
  font-size: 14px;
  line-height: 1.45;
}

.dashboard-person p strong {
  color: #f05a28;
}

.dashboard-person-message span {
  margin: 35px 0 20px;
  color: #f05a28;
  font-size: 80px;
}

.programmes-table {
  min-height: 340px;
  border: 0;
  background: linear-gradient(145deg, #e6f6fa, #cbeaf2);
  color: #46566a;
}

.programmes-table > p {
  margin: 0;
  padding: 18px 10px 13px;
  color: #0050a4;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
}

.programme-row {
  display: grid;
  grid-template-columns: 42px 1fr 145px;
  align-items: center;
  min-height: 58px;
  margin: 0 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
}

.programme-row > * {
  height: 100%;
  padding: 12px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.9);
}

.programme-head {
  min-height: 42px;
  margin-bottom: 8px;
  color: #0050a4;
  background: transparent;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .rotary-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programmes-block {
    grid-column: span 2;
  }
}

@media only screen and (max-width: 767px) {
  .rotary-dashboard {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .programmes-block {
    grid-column: auto;
  }

  .dashboard-block h2 {
    font-size: 18px;
  }
}

.rs-faculty-details .rs-faculty-details-wrapper {
  display: grid;
  grid-template-columns: 400px auto;
  gap: 30px 60px;
  align-items: center;
}

@media only screen and (max-width: 1600px) {
  .rs-faculty-details .rs-faculty-details-wrapper {
    grid-template-columns: 350px auto;
    gap: 30px 30px;
    align-items: start;
  }
}

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

.rs-faculty-details .rs-faculty-details-thumb-wrapper {
  background: var(--rs-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.02);
  border-radius: 16px;
  padding-top: 12px;
  padding-bottom: 30px;
  padding-inline: 12px;
}

@media only screen and (max-width: 1600px) {
  .rs-faculty-details .rs-faculty-details-thumb-wrapper {
    position: sticky;
    top: 110px;
  }
}

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

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

.rs-faculty-details .rs-faculty-details-author-info {
  padding-top: 25px;
}

.rs-faculty-details .rs-faculty-name {
  margin-bottom: 5px;
}

.rs-faculty-details .rs-faculty-details-title {
  margin-bottom: 15px;
}

.rs-faculty-details .rs-faculty-details-desc {
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 30px;
}

.rs-faculty-details .rs-faculty-details-info-item:not(:last-child) {
  margin-bottom: 30px;
}

.rs-faculty-details .rs-faculty-info-title {
  margin-bottom: 15px;
}

/*----------------------------------------*/
/*  4.18 faq css
/*----------------------------------------*/
.rs-faq-one {
  position: relative;
  z-index: 1;
}

.rs-faq-one .rs-faq-wrapper {
  max-width: 1005px;
  margin: 0 auto;
}

.rs-faq-one .rs-faq-shape {
  position: absolute;
  bottom: 0;
  inset-inline-end: 100px;
}

@media only screen and (max-width: 1600px) {
  .rs-faq-one .rs-faq-shape {
    inset-inline-end: 0px;
  }
}

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

.rs-faq-two .rs-faq-tab-wrapper ul li:not(:last-child) {
  margin-bottom: 10px;
}

.rs-faq-two .rs-faq-tab-wrapper ul li .nav-link {
  display: flex;
  align-items: center;
  background: var(--rs-white);
  padding-top: 13px;
  padding-bottom: 13px;
  padding-inline: 20px;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.5s;
  color: var(--rs-title-tertiary);
  gap: 10px;
  width: 100%;
}

.rs-faq-two .rs-faq-tab-wrapper ul li .nav-link.active {
  color: var(--rs-white);
  background: var(--rs-theme-blue);
}

.rs-faq-two .rs-faq-tab-wrapper ul li .nav-link.active .rs-faq-tab-icon svg path {
  fill: var(--rs-white);
}

.rs-faq-two .rs-faq-tab-wrapper ul li .nav-link:hover {
  color: var(--rs-white);
  background: var(--rs-theme-blue);
}

.rs-faq-two .rs-faq-tab-wrapper ul li .nav-link:hover span svg {
  fill: var(--rs-white);
}

.rs-faq-two .rs-faq-tab-wrapper ul li .nav-link span svg {
  width: 23px;
  height: 23px;
}

.rs-faq-two .nav-pills {
  display: block;
}

.rs-faq-two .accordion-body {
  font-style: normal;
}

.rs-faq-two .rs-faq-tab-anim .tab-pane.active .accordion-wrapper {
  -webkit-animation: slide-down 5s ease-out;
  animation: slide-down 5s ease-out;
}

/*----------------------------------------*/
/*   4.19 feature css
/*----------------------------------------*/
.rs-feature-one .rs-feature-wrapper {
  display: grid;
  grid-template-columns: 635px auto;
  gap: 30px 75px;
  align-items: center;
  background: var(--rs-white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-inline-start: 50px;
  padding-inline-end: 30px;
}

@media only screen and (max-width: 1600px) {
  .rs-feature-one .rs-feature-wrapper {
    grid-template-columns: 600px auto;
    gap: 30px 30px;
    padding-inline-start: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-feature-one .rs-feature-wrapper {
    grid-template-columns: 500px auto;
    align-items: start;
  }
}

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

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

.rs-feature-one .rs-feature-icon svg {
  width: 40px;
  height: 40px;
}

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

@media only screen and (max-width: 991px) {
  .rs-feature-one .rs-feature-thumb {
    position: relative;
    top: unset;
  }
}

.rs-feature-one .rs-feature-thumb img {
  width: 100%;
  border-radius: 12px;
}

.rs-feature-one .rs-feature-title {
  color: var(--rs-title-tertiary);
  margin-bottom: 15px;
}

.rs-feature-one .rs-feature-item {
  display: flex;
  align-items: start;
  gap: 20px;
}

@media only screen and (max-width: 480px) {
  .rs-feature-one .rs-feature-item {
    gap: 15px;
    flex-wrap: wrap;
  }
}

.rs-feature-one .rs-feature-list-title {
  color: var(--rs-title-tertiary);
}

.rs-feature-one .rs-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 35px;
  gap: 20px;
}

@media only screen and (max-width: 1199px) {
  .rs-feature-one .rs-feature-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  .rs-feature-one .rs-feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-feature-one .rs-feature-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-feature-one .rs-feature-desc {
  border-bottom: 1px solid var(--rs-border-primary);
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.rs-feature-two {
  padding-inline-start: 165px;
  padding-inline-end: 165px;
  margin-top: -120px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1366px) {
  .rs-feature-two {
    padding-inline-start: 0px;
    padding-inline-end: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-feature-two {
    margin-top: 0;
    background: var(--rs-bg-primary);
    padding-top: 80px;
  }
}

.rs-feature-two .rs-feature-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-feature-two .rs-feature-wrapper {
    gap: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-feature-two .rs-feature-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 575px) {
  .rs-feature-two .rs-feature-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.rs-feature-two .rs-feature-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  font-size: 24px;
  font-weight: 600;
  color: var(--rs-white);
  text-decoration: none;
  transition: 0.5s ease;
  background: #1F2226;
  font-family: var(--rs-ff-title);
}

.rs-feature-two .rs-feature-item a:hover {
  background: var(--rs-theme-red);
  color: var(--rs-white);
}

@media only screen and (max-width: 1600px) {
  .rs-feature-two .rs-feature-item a {
    font-size: 20px;
    padding: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-feature-two .rs-feature-item a {
    font-size: 16px;
    padding: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-feature-two .rs-feature-item a {
    font-size: 20px;
    padding: 20px;
  }
}

.rs-feature-three {
  position: relative;
  z-index: 2;
  background: var(--rs-bg-secondary);
}

.rs-feature-three .rs-feature-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -35px;
}

@media only screen and (max-width: 767px) {
  .rs-feature-three .rs-feature-wrapper {
    margin-top: 0;
    padding-top: 80px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-feature-three .rs-feature-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 25px 18px 25px;
  font-size: 18px;
  font-weight: 600;
  color: var(--rs-white);
  text-decoration: none;
  transition: 0.5s ease;
  background: #231F20;
  font-family: var(--rs-ff-title);
  border-radius: 20px;
  gap: 18px;
}

@media only screen and (max-width: 1199px) {
  .rs-feature-three .rs-feature-item a {
    padding: 18px 20px 18px 20px;
  }
}

.rs-feature-three .rs-feature-item a:hover {
  background: var(--rs-theme-red);
  color: var(--rs-white);
}

.rs-feature-three .rs-feature-item .feature-icon svg {
  width: 30px;
  height: 30px;
}

.rs-feature-three .rs-feature-item .feature-icon svg path {
  fill: var(--rs-white);
}

.rs-feature-three .rs-feature-item.is-active a {
  background: var(--rs-theme-red);
}

/*----------------------------------------*/
/*   4.20 filter css
/*----------------------------------------*/
.rs-filter-one {
  padding-top: 90px;
}

.rs-filter-one .rs-filter-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid var(--rs-border-primary);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.rs-filter-one .rs-filter-search {
  position: relative;
  width: 410px;
}

.rs-filter-one .rs-filter-search input {
  width: 100%;
  height: 50px;
  padding: 10px 50px 10px 20px;
  border: 1px solid var(--rs-border-primary);
  border-radius: 5px;
  font-size: 15px;
  color: var(--rs-title-primary);
  transition: all 0.3s ease;
  background: var(--rs-white);
}

.rs-filter-one .rs-filter-search input:focus {
  border-color: var(--rs-theme-yellow);
}

.rs-filter-one .rs-filter-search button {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  color: var(--rs-black);
  font-size: 16px;
  transform: translateY(-50%);
}

.rs-filter-two {
  background: var(--rs-white);
  padding: 30px;
  border-radius: 12px;
}

@media only screen and (max-width: 1366px) {
  .rs-filter-two {
    padding: 20px;
  }
}

.rs-filter-two .filter-main-title {
  font-size: 20px;
  border-bottom: 1px solid var(--rs-border-primary);
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
  color: var(--rs-title-tertiary);
}

.rs-filter-two .filter-main-title::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 1px;
  bottom: 0;
  inset-inline-start: 0;
  background: var(--rs-theme-blue);
}

.rs-filter-two input[type=checkbox]~label {
  color: var(--rs-text-primary);
  margin-bottom: 10px;
  font-size: 14px;
}

.rs-filter-two .filter-title {
  font-size: 15px;
  margin-bottom: 15px;
  color: var(--rs-title-tertiary);
}

.rs-filter-two input[type=checkbox]~label::after {
  border: 1px solid var(--rs-border-primary);
  z-index: 1;
  width: 15px;
  height: 15px;
  line-height: 15px;
}

.rs-filter-two input[type=checkbox]~label::before {
  z-index: 2;
  font-size: 12px;
  background: var(--rs-theme-blue);
  border-radius: 2px;
  color: var(--rs-white);
  width: 15px;
  height: 15px;
  line-height: 15px;
  top: 3px;
  inset-inline-start: 0px;
}

.rs-filter-two .show-more-btn {
  font-size: 14px;
  text-decoration: underline;
  color: var(--rs-title-tertiary);
}

.rs-filter-two .show-more-btn:hover {
  color: var(--rs-theme-yellow);
}

.rs-filter-two .filter-item:not(:last-child) {
  margin-bottom: 30px;
}

.rs-filter-three {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rs-filter-three .rs-filter-search {
  position: relative;
  width: 410px;
}

.rs-filter-three .rs-filter-search input {
  width: 100%;
  height: 50px;
  padding: 10px 50px 10px 20px;
  border: 1px solid var(--rs-border-primary);
  border-radius: 5px;
  font-size: 15px;
  color: var(--rs-title-primary);
  transition: all 0.3s ease;
  background: var(--rs-white);
}

.rs-filter-three .rs-filter-search input:focus {
  border-color: var(--rs-theme-yellow);
}

.rs-filter-three .rs-filter-search button {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  color: var(--rs-black);
  font-size: 16px;
  transform: translateY(-50%);
}

.rs-filter-three .rs-result-count {
  font-weight: 500;
  color: var(--rs-title-tertiary);
}

/*----------------------------------------*/
/*   4.21 funfact css
/*----------------------------------------*/
.rs-funfact-one .rs-funfact-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-funfact-one .rs-funfact-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-funfact-one .rs-funfact-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-funfact-one .rs-funfact-icon svg {
  width: 64px;
  height: 64px;
}

.rs-funfact-one .rs-funfact-title {
  margin-bottom: 10px;
}

.rs-funfact-one .rs-funfact-item {
  background: var(--rs-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: start;
  gap: 20px 20px;
  border-radius: 12px;
  padding-top: 30px;
  padding-inline: 25px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 1600px) {
  .rs-funfact-one .rs-funfact-item {
    padding-inline: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-funfact-one .rs-funfact-item {
    flex-wrap: wrap;
  }
}

.rs-funfact-one .rs-funfact-item.has-theme-red {
  background: var(--rs-theme-red);
}

.rs-funfact-one .rs-funfact-item.has-theme-red .rs-funfact-title {
  color: var(--rs-white);
}

.rs-funfact-one .rs-funfact-item.has-theme-red .rs-funfact-icon svg path {
  fill: var(--rs-white);
}

.rs-funfact-one .rs-funfact-item.has-theme-red .rs-funfact-desc {
  color: var(--rs-white);
}

@media only screen and (max-width: 991px) {
  .rs-funfact-one.has-theme-blue {
    padding-top: 80px;
  }
}

.rs-funfact-one.has-theme-blue .rs-funfact-wrapper {
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 991px) {
  .rs-funfact-one.has-theme-blue .rs-funfact-wrapper {
    margin-top: 0;
  }
}

.rs-funfact-one.has-theme-blue .rs-funfact-item {
  background: var(--rs-theme-blue-two);
}

.rs-funfact-one.has-theme-blue .rs-funfact-item:nth-child(2n) {
  background: var(--rs-theme-yellow);
}

.rs-funfact-one.has-theme-blue .rs-funfact-item:nth-child(2n) .rs-funfact-title {
  color: var(--rs-title-primary);
}

.rs-funfact-one.has-theme-blue .rs-funfact-item:nth-child(2n) .rs-funfact-desc {
  color: var(--rs-text-primary);
}

.rs-funfact-one.has-theme-blue .rs-funfact-item:nth-child(2n) .rs-funfact-icon svg path {
  fill: var(--rs-black);
}

.rs-funfact-one.has-theme-blue .rs-funfact-icon svg path {
  fill: var(--rs-white);
}

.rs-funfact-one.has-theme-blue .rs-funfact-title {
  color: var(--rs-white);
}

.rs-funfact-one.has-theme-blue .rs-funfact-desc {
  color: rgba(255, 255, 255, 0.7);
}

/*----------------------------------------*/
/*  4.22 gallery css
/*----------------------------------------*/
.rs-gallery-one {
  overflow-x: clip;
}

.rs-gallery-one .rs-gallery-wrapper {
  position: relative;
}

.rs-gallery-one .rs-gallery-item-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

@media only screen and (max-width: 991px) {
  .rs-gallery-one .rs-gallery-item-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 480px) {
  .rs-gallery-one .rs-gallery-item-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rs-gallery-one .rs-gallery-thumb img {
  width: 100%;
}

.rs-gallery-one .rs-gallery-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.rs-gallery-two .rs-gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

@media only screen and (max-width: 767px) {
  .rs-gallery-two .rs-gallery-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-gallery-two .rs-gallery-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 480px) {
  .rs-gallery-two .rs-gallery-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-gallery-two .rs-gallery-item:hover .rs-gallery-thumb:before {
  visibility: visible;
  opacity: 1;
}

.rs-gallery-two .rs-gallery-item:hover .rs-gallery-btn {
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
  opacity: 1;
}

.rs-gallery-two .rs-gallery-thumb {
  position: relative;
}

.rs-gallery-two .rs-gallery-thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 57, 68, 0.5);
  transition: all 0.4s ease-out;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
}

.rs-gallery-two .rs-gallery-thumb img {
  width: 100%;
  border-radius: 10px;
}

.rs-gallery-two .rs-gallery-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-out;
}

.rs-gallery-two .rs-gallery-btn .rs-btn-circle {
  background: var(--rs-white);
}

.rs-gallery-two .rs-gallery-btn .rs-btn-circle:hover {
  background: var(--rs-theme-yellow);
}

.rs-gallery-two .rs-gallery-btn .rs-btn-circle i {
  color: var(--rs-black);
}

.rs-gallery-two .rs-gallery-tab-wrapper .nav-pills {
  display: flex;
  justify-content: center;
  gap: 30px 10px;
  margin-bottom: 35px;
  margin-top: 35px;
}

@media only screen and (max-width: 991px) {
  .rs-gallery-two .rs-gallery-tab-wrapper .nav-pills {
    gap: 20px 10px;
  }
}

.rs-gallery-two .rs-gallery-tab-wrapper .nav-link {
  background: var(--rs-theme-blue);
  font-weight: 600;
  padding: 0;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border-radius: 8px;
  border-bottom: 0;
  color: var(--rs-white);
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  padding: 15px 35px;
}

@media only screen and (max-width: 991px) {
  .rs-gallery-two .rs-gallery-tab-wrapper .nav-link {
    padding: 15px 15px;
    font-size: 15px;
  }
}

.rs-gallery-two .rs-gallery-tab-wrapper .nav-link.active {
  color: var(--rs-title-tertiary);
  background: var(--rs-theme-yellow);
}

.rs-gallery-two .rs-gallery-tab-wrapper .nav-link:hover {
  color: var(--rs-title-tertiary);
  background: var(--rs-theme-yellow);
}

.rs-gallery-two .rs-gallery-tab-anim .tab-pane.active .rs-gallery-wrapper {
  -webkit-animation: slide-down 5s ease-out;
  animation: slide-down 5s ease-out;
}

@media only screen and (max-width: 767px) {
  .rs-gallery-two .rs-gallery-content-wrapper {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .rs-gallery-two .rs-gallery-tab-wrapper {
    display: none;
  }
}

.rs-gallery-two .rs-gallery-accordion {
  display: none;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .rs-gallery-two .rs-gallery-accordion {
    display: block;
  }
}

.rs-gallery-two .rs-gallery-accordion .rs-accordion-item {
  padding: 0;
  background: none;
}

.rs-gallery-two .rs-gallery-accordion .rs-accordion-item:not(:last-child) {
  margin-bottom: 15px;
}

.rs-gallery-two .rs-gallery-accordion .accordion-body {
  padding: 0;
  margin-top: 30px;
}

.rs-gallery-two .rs-gallery-accordion .accordion-button {
  padding: 15px 35px;
  background: var(--rs-theme-blue);
  color: var(--rs-white);
  font-size: 16px;
  border-radius: 8px;
  justify-content: center;
  font-weight: 600;
}

.rs-gallery-two .rs-gallery-accordion .accordion-button:hover {
  color: var(--rs-title-primary);
  background: var(--rs-theme-yellow);
}

.rs-gallery-two .rs-gallery-accordion .accordion-button :not(.collapsed) {
  background: var(--rs-theme-yellow);
  color: var(--rs-title-primary);
}

.rs-gallery-three .rs-gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-gallery-three .rs-gallery-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-gallery-three .rs-gallery-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-gallery-three .rs-gallery-thumb img {
  border-radius: 8px;
}

/*----------------------------------------*/
/*  4.23 history css
/*----------------------------------------*/
.rs-history-one .rs-history-list-item {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rs-history-one .rs-history-list-item::before {
  position: absolute;
  content: "";
  left: 8px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #d9d9d9;
}

.rs-history-one .rs-history-list-wrapper ul li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: start;
  position: relative;
  list-style: none;
}

@media only screen and (max-width: 575px) {
  .rs-history-one .rs-history-list-wrapper ul li {
    grid-template-columns: 120px 1fr;
  }
}

@media only screen and (max-width: 480px) {
  .rs-history-one .rs-history-list-wrapper ul li {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.rs-history-one .rs-history-list-wrapper ul li:not(:last-child) {
  margin-bottom: 15px;
}

.rs-history-one .rs-history-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--rs-theme-blue);
  margin: 5px;
  position: relative;
  transform: translateY(5px);
}

.rs-history-one .rs-history-dot::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: -4px;
  left: -4px;
  border-radius: 50%;
  border: 1px solid #c0ced9;
}

.rs-history-one .rs-history-month {
  font-weight: 600;
  text-align: end;
  color: var(--rs-theme-blue);
}

@media only screen and (max-width: 480px) {
  .rs-history-one .rs-history-month {
    text-align: start;
  }
}

.rs-history-one .rs-history-desc {
  position: relative;
  z-index: 1;
  padding-inline-start: 12px;
}

.rs-history-one .rs-history-desc::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rs-theme-blue);
  top: 10px;
  inset-inline-start: 0px;
}

.rs-history-one .rs-history-list-wrapper {
  display: flex;
  gap: 10px;
}

@media only screen and (max-width: 575px) {
  .rs-history-one .rs-history-list-wrapper {
    flex-wrap: wrap;
  }
}

/*----------------------------------------*/
/*  4.24 libraries css|
/*----------------------------------------*/
.rs-libraries-one {
  position: relative;
}

.rs-libraries-one .rs-libraries-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-libraries-one .rs-libraries-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-libraries-one .rs-libraries-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-libraries-one .rs-libraries-item {
  border-radius: 12px;
  background: var(--rs-white);
  padding-top: 12px;
  padding-bottom: 30px;
  padding-inline: 12px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.rs-libraries-one .rs-libraries-item:hover .rs-libraries-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}

.rs-libraries-one .rs-libraries-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.rs-libraries-one .rs-libraries-thumb img {
  width: 100%;
  transition: all 0.8s ease;
}

.rs-libraries-one .rs-libraries-title {
  margin-bottom: 8px;
  color: var(--rs-title-tertiary);
}

.rs-libraries-one .rs-libraries-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-libraries-one .rs-libraries-content {
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  padding-top: 27px;
}

.rs-libraries-one .rs-libraries-desc {
  margin-bottom: 28px;
}

/*----------------------------------------*/
/*  4.25 login
/*----------------------------------------*/
.rs-login-wrapper {
  background-color: var(--rs-white);
  box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.12);
  padding: 30px 30px;
  margin: 0 auto;
  border-radius: 8px 0 0px 8px;
}

@media only screen and (max-width: 480px) {
  .rs-login-wrapper {
    padding: 25px 25px;
  }
}

.rs-login-wrapper input[type=checkbox]~label {
  color: var(--rs-black);
}

.rs-login-wrapper input[type=checkbox]~label::after {
  border: 1px solid rgba(102, 102, 102, 0.278);
  z-index: 1;
}

.rs-login-wrapper input[type=checkbox]~label::before {
  color: var(--rs-white);
  z-index: 2;
  background: var(--rs-theme-blue);
}

.rs-login-wrapper .form-input-title label {
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 16px;
  text-align: left;
  display: block;
  font-weight: 500;
  color: var(--rs-black);
}

.rs-login-thumb {
  height: 100%;
}

.rs-login-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 6px 6px 0px;
}

@media only screen and (max-width: 991px) {
  .rs-login-thumb img {
    border-radius: 0 0px 6px 6px;
  }
}

.rs-login-link {
  color: var(--rs-theme-blue);
}

.rs-login-link:hover {
  color: var(--rs-theme-yellow);
}

.rs-login-btn .rs-btn {
  height: 50px;
}

.rs-login-meta-divider-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  margin: 0 -15px;
  margin-top: 30px;
}

.rs-login-meta-divider-line {
  position: relative;
  background-image: linear-gradient(90deg, #46494D, rgba(33, 38, 45, 0));
  width: 100%;
  height: 1px;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
}

.rs-login-meta-divider-line.left-line {
  background-image: linear-gradient(-90deg, #46494D, rgba(33, 38, 45, 0));
}

.rs-login-meta-divider-line-right-line {
  background-image: linear-gradient(90deg, #46494D, rgba(33, 38, 45, 0));
}

.rs-login-meta-divider-title {
  position: relative;
  padding: 0 15px;
  width: max-content;
  font-size: 17px;
  color: var(--rs-black);
}

.rs-login-label {
  color: var(--rs-black);
}

/*----------------------------------------*/
/*  4.26 mission
/*----------------------------------------*/
.rs-mission-one .rs-mission-wrapper {
  display: grid;
  grid-template-columns: 410px auto;
  gap: 30px 60px;
  align-items: start;
}

@media only screen and (max-width: 1600px) {
  .rs-mission-one .rs-mission-wrapper {
    grid-template-columns: 350px auto;
    gap: 30px 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-mission-one .rs-mission-wrapper {
    grid-template-columns: 300px auto;
  }
}

@media only screen and (max-width: 991px) {
  .rs-mission-one .rs-mission-wrapper {
    grid-template-columns: auto;
  }
}

.rs-mission-one .rs-counter-number,
.rs-mission-one .prefix {
  font-size: 48px;
  color: var(--rs-title-tertiary);
  font-weight: 600;
  line-height: 0.9;
  font-family: var(--rs-ff-title);
}

@media only screen and (max-width: 1600px) {

  .rs-mission-one .rs-counter-number,
  .rs-mission-one .prefix {
    font-size: 30px;
  }
}

.rs-mission-one .rs-counter-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.rs-mission-one .rs-mission-sec-icon img {
  width: 68px;
}

.rs-mission-one .rs-mission-desc-wrapper {
  position: relative;
  z-index: 1;
  border-inline-start: 1px solid var(--rs-border-primary);
  padding-inline-start: 35px;
}

@media only screen and (max-width: 480px) {
  .rs-mission-one .rs-mission-desc-wrapper {
    padding-inline-start: 25px;
  }
}

.rs-mission-one .rs-mission-desc-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: -8px;
  width: 16px;
  height: 16px;
  background-color: var(--rs-theme-blue);
  border: 3px solid rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.3);
}

.rs-mission-one .rs-mission-thumb {
  margin-top: 38px;
}

.rs-mission-one .rs-mission-thumb img {
  width: 100%;
  border-radius: 12px;
}

.rs-mission-one .rs-mission-title {
  color: var(--rs-title-tertiary);
  margin-bottom: 15px;
}

.rs-mission-one .desc-one {
  margin-bottom: 20px;
}

.rs-mission-one .section-title {
  color: var(--rs-title-tertiary);
  line-height: 1.2;
  margin-top: 32px;
  margin-bottom: 10px;
}

.rs-mission-one .section-desc {
  max-width: 290px;
}

/*----------------------------------------*/
/*  4.27 overview css
/*----------------------------------------*/
.rs-overview-one {
  background: var(--rs-theme-green);
  position: relative;
  z-index: 1;
}

.rs-overview-one .rs-overview-shape-one {
  position: absolute;
  top: 95px;
  inset-inline-start: 0;
}

[dir=rtl] .rs-overview-one .rs-overview-shape-one {
  transform: rotateY(180deg);
}

.rs-overview-one .rs-overview-shape-two {
  position: absolute;
  top: 160px;
  inset-inline-end: 215px;
}

@media only screen and (max-width: 1800px) {
  .rs-overview-one .rs-overview-shape-two {
    inset-inline-end: 30px;
  }
}

@media only screen and (max-width: 1366px) {
  .rs-overview-one .rs-overview-shape-two {
    display: none;
  }
}

.rs-overview-one .rs-overview-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 1600px) {
  .rs-overview-one .rs-overview-wrapper {
    grid-template-columns: auto 350px auto;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  .rs-overview-one .rs-overview-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-overview-one .rs-overview-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-overview-one .rs-overview-item {
  background-color: #346359;
  border: 1px solid var(--rs-border-tertiary);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.rs-overview-one .rs-overview-item.item-one {
  padding-top: 35px;
  padding-bottom: 25px;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-item.item-one {
    padding-top: 25px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
  }
}

.rs-overview-one .rs-overview-item.item-one .rs-overview-icon svg {
  width: 58px;
  height: 58px;
}

.rs-overview-one .rs-overview-item.item-one .rs-overview-icon svg path {
  fill: var(--rs-white);
}

.rs-overview-one .rs-overview-item.item-one .rs-overview-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 90px;
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-item.item-one .rs-overview-content {
    gap: 30px;
  }
}

.rs-overview-one .rs-overview-item.item-one .rs-overview-inner {
  display: grid;
  grid-template-columns: 130px auto;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-item.item-one .rs-overview-inner {
    grid-template-columns: auto;
    gap: 30px;
  }
}

.rs-overview-one .rs-overview-item.item-two {
  background: var(--rs-theme-yellow);
  border: 0;
  padding-top: 30px;
  padding-bottom: 0px;
  padding-inline-start: 30px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-item.item-two {
    padding-top: 25px;
    padding-inline-start: 25px;
  }
}

.rs-overview-one .rs-overview-item.item-two .rs-overview-inner {
  display: grid;
  grid-template-columns: 150px auto;
  gap: 15px;
  align-items: start;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .rs-overview-one .rs-overview-item.item-two .rs-overview-inner {
    grid-template-columns: auto auto;
  }
}

.rs-overview-one .rs-overview-item.item-two .rs-overview-inner .rs-overview-thumb {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 190px;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .rs-overview-one .rs-overview-item.item-two .rs-overview-inner .rs-overview-thumb {
    width: 170px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-item.item-two .rs-overview-inner .rs-overview-thumb {
    width: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-overview-one .rs-overview-item.item-two .rs-overview-inner .rs-overview-thumb {
    position: unset;
  }
}

@media only screen and (max-width: 575px) {
  .rs-overview-one .rs-overview-item.item-two .rs-overview-inner .rs-overview-thumb {
    width: 130px;
  }
}

.rs-overview-one .rs-overview-item.item-two .rs-overview-shape {
  position: absolute;
  inset-inline-end: -40px;
  bottom: 0;
}

@media only screen and (max-width: 1600px) {
  .rs-overview-one .rs-overview-item.item-two .rs-overview-shape {
    inset-inline-end: -70px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-item.item-two .rs-overview-shape {
    inset-inline-end: -100px;
  }
}

.rs-overview-one .rs-overview-item.item-two .rs-overview-title {
  color: var(--rs-title-primary);
}

@media only screen and (max-width: 575px) {
  .rs-overview-one .rs-overview-item.item-two .rs-overview-title {
    font-size: 16px;
  }
}

.rs-overview-one .rs-overview-item.item-two .rs-overview-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 115px;
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-item.item-two .rs-overview-content {
    gap: 25px;
  }
}

.rs-overview-one .rs-overview-item.item-two .rs-overview-thumb img {
  width: 100%;
}

.rs-overview-one .rs-overview-item.item-three {
  padding-top: 35px;
  padding-bottom: 25px;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-item.item-three {
    padding-top: 25px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
  }
}

.rs-overview-one .rs-overview-item.item-three .rs-overview-inner {
  display: grid;
  grid-template-columns: 150px auto;
  gap: 15px;
  align-items: start;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-item.item-three .rs-overview-inner {
    gap: 30px;
    grid-template-columns: auto;
  }
}

.rs-overview-one .rs-overview-item.item-three .rs-overview-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 115px;
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-item.item-three .rs-overview-content {
    gap: 25px;
  }
}

.rs-overview-one .rs-overview-item.item-three .rs-counter-number,
.rs-overview-one .rs-overview-item.item-three .prefix {
  color: var(--rs-white);
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-item.item-three .rs-overview-thumb {
    width: 135px;
  }
}

.rs-overview-one .rs-overview-title {
  color: var(--rs-white);
}

.rs-overview-one .rs-overview-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-list {
    align-items: start;
  }
}

.rs-overview-one .rs-overview-list .rs-overview-list-item {
  list-style: none;
  border-radius: 30px;
  background: var(--rs-theme-green);
  color: var(--rs-white);
  padding-inline: 12px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: 600;
  font-family: var(--rs-ff-title);
  display: inline-flex;
  justify-content: center;
}

.rs-overview-one .rs-overview-list .rs-overview-list-item:first-child {
  transform: rotate(10deg);
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-list .rs-overview-list-item:first-child {
    transform: rotate(0deg);
  }
}

.rs-overview-one .rs-overview-list .rs-overview-list-item:last-child {
  transform: rotate(-10deg);
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-list .rs-overview-list-item:last-child {
    transform: rotate(0deg);
  }
}

.rs-overview-one .rs-overview-list .rs-overview-list-item:not(:last-child) {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-overview-one .rs-overview-list .rs-overview-list-item:not(:last-child) {
    margin-bottom: 15px;
  }
}

.rs-overview-one .rs-counter-number-wrapper {
  display: flex;
  align-items: center;
}

.rs-overview-one .rs-counter-number,
.rs-overview-one .prefix {
  font-size: 48px;
  font-weight: 600;
  color: var(--rs-title-primary);
  line-height: 0.85;
  font-family: var(--rs-ff-title);
}

@media only screen and (max-width: 767px) {

  .rs-overview-one .rs-counter-number,
  .rs-overview-one .prefix {
    font-size: 40px;
  }
}

.rs-overview-one .rs-overview-more-btn {
  display: flex;
  justify-content: center;
}

.rs-overview-one .rs-overview-more-btn .rs-btn {
  font-size: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 0;
  margin-top: 40px;
  font-family: var(--rs-ff-title);
  color: var(--rs-white);
}

.rs-overview-one .rs-overview-more-btn .rs-btn.has-icon svg {
  width: 20px;
  height: 20px;
}

.rs-overview-one .rs-overview-more-btn .rs-btn.has-icon svg path {
  fill: var(--rs-white);
}

.rs-overview-one .rs-overview-more-btn .rs-btn:hover {
  color: var(--rs-theme-yellow);
}

.rs-overview-one .rs-overview-more-btn .rs-btn:hover.has-icon .icon-box svg path {
  fill: var(--rs-theme-yellow);
}

.rs-overview-two .rs-accordion-item {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.rs-overview-two .rs-overview-desc-wrapper {
  position: relative;
  padding-inline-start: 35px;
}

@media only screen and (max-width: 767px) {
  .rs-overview-two .rs-overview-desc-wrapper {
    padding-inline-start: 25px;
  }
}

.rs-overview-two .rs-overview-desc-wrapper::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: var(--rs-border-primary);
}

.rs-overview-two .rs-overview-desc-wrapper::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -8px;
  width: 16px;
  height: 16px;
  background-color: var(--rs-theme-blue);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.rs-overview-two .rs-overview-desc-list-item {
  position: relative;
  padding-inline-start: 15px;
}

.rs-overview-two .rs-overview-desc-list-item:not(:last-child) {
  margin-bottom: 3px;
}

.rs-overview-two .rs-overview-desc-list-item::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #4C4C4C;
  border-radius: 50%;
}

.rs-overview-two .accordion-body {
  padding-top: 20px;
  padding-inline-start: 35px;
  padding-inline-end: 30px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 1366px) {
  .rs-overview-two .accordion-body {
    padding-top: 25px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
    padding-bottom: 25px;
  }
}

.rs-overview-two .rs-overview-thumb {
  height: 100%;
}

.rs-overview-two .rs-overview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.rs-overview-two .rs-overview-wrapper {
  display: grid;
  grid-template-columns: 530px auto;
  gap: 30px 90px;
  margin-top: 40px;
}

@media only screen and (max-width: 1600px) {
  .rs-overview-two .rs-overview-wrapper {
    gap: 30px 60px;
  }
}

@media only screen and (max-width: 1366px) {
  .rs-overview-two .rs-overview-wrapper {
    gap: 30px 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-overview-two .rs-overview-wrapper {
    grid-template-columns: 400px auto;
  }
}

@media only screen and (max-width: 991px) {
  .rs-overview-two .rs-overview-wrapper {
    grid-template-columns: auto;
  }
}

.rs-overview-two .rs-overview-wrapper.rs-overview-grid {
  grid-template-columns: auto 510px;
  gap: 30px;
  margin-top: 0;
}

@media only screen and (max-width: 991px) {
  .rs-overview-two .rs-overview-wrapper.rs-overview-grid {
    grid-template-columns: auto;
  }
}

.rs-overview-two .rs-overview-wrapper.rs-overview-grid .rs-overview-desc-wrapper p {
  margin-bottom: 20px;
}

/*----------------------------------------*/
/*  4.28 page sidebar
/*----------------------------------------*/
.page-sidebar {
  background: var(--rs-white);
  border-radius: 12px;
  padding-top: 26px;
  padding-bottom: 28px;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
}

@media only screen and (max-width: 1600px) {
  .page-sidebar {
    padding-inline-start: 25px;
    padding-inline-end: 25px;
  }
}

.page-sidebar .page-sidebar-line {
  width: 100%;
  position: relative;
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 20px;
  border-color: var(--rs-border-primary);
  border-style: solid;
  border-width: 0px 0px 1px 0px;
}

.page-sidebar .page-sidebar-line::before {
  position: absolute;
  content: "";
  width: 70px;
  background: var(--rs-theme-yellow);
  inset-inline-start: 0;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.page-sidebar .page-sidebar-item ul li {
  list-style: none;
}

.page-sidebar .page-sidebar-item ul li:not(:last-child) {
  margin-bottom: 10px;
}

.page-sidebar .page-sidebar-item ul li a {
  display: flex;
  align-items: center;
  background: var(--rs-bg-primary);
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-inline: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: 0.5s;
  color: var(--rs-title-tertiary);
}

@media only screen and (max-width: 1199px) {
  .page-sidebar .page-sidebar-item ul li a {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-inline: 10px;
    font-size: 15px;
  }
}

.page-sidebar .page-sidebar-item ul li a:hover {
  color: var(--rs-white);
  background: var(--rs-theme-blue);
}

.page-sidebar .page-sidebar-item ul li a:hover span svg {
  fill: var(--rs-white);
}

.page-sidebar .page-sidebar-item ul li a span svg {
  width: 16px;
  height: 16px;
}

[dir=rtl] .page-sidebar .page-sidebar-item ul li a span svg {
  transform: rotateY(180deg);
}

@media only screen and (max-width: 1199px) {
  .page-sidebar .page-sidebar-item ul li a span svg {
    width: 14px;
    height: 14px;
  }
}

.page-sidebar .page-sidebar-item ul .page-sidebar-active a {
  background: var(--rs-theme-blue);
  color: var(--rs-white);
}

.page-sidebar .page-sidebar-item ul .page-sidebar-active a span svg path {
  fill: var(--rs-white);
}

.page-sidebar .rs-sidebar-page-thumb {
  margin-top: 20px;
}

.page-sidebar .rs-sidebar-page-thumb img {
  width: 100%;
  border-radius: 12px;
}

/*----------------------------------------*/
/*  4.29 price range CSS
/*----------------------------------------*/
.sidebar-widget-range .noUi-horizontal {
  height: 8px;
}

.sidebar-widget-range .noUi-target {
  background: #ddd;
  border: none;
  box-shadow: none;
}

.sidebar-widget-range .noUi-connect {
  background: var(--rs-theme-yellow);
}

.sidebar-widget-range .noUi-handle {
  border: none;
  background: var(--rs-theme-blue);
  cursor: default;
  box-shadow: none;
  border-radius: 0;
}

.sidebar-widget-range .noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  inset-inline-end: -15px;
  top: 4px;
  cursor: pointer;
  transform: translateY(-50%);
  border-radius: 50%;
}

.sidebar-widget-range .noUi-handle::after,
.sidebar-widget-range .noUi-handle::before {
  display: none;
}

.sidebar-widget-range .price-filter input {
  border: none;
  height: unset;
  padding: 0;
  color: var(--rs-text-primary);
  font-size: 16px;
  text-align: end;
}

.sidebar-widget-range .noUi-base .noUi-connects {
  border-radius: 0;
}

.sidebar-widget-range-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-widget-range-amount .rs-btn {
  background: var(--rs-theme-blue);
  height: 44px;
  font-size: 14px;
  color: var(--rs-white);
}

.sidebar-widget-range-amount .rs-btn:hover {
  background: var(--rs-theme-yellow);
  color: var(--rs-title-primary);
}

/*----------------------------------------*/
/*  4.30 privacy policy css
/*----------------------------------------*/
.policy-wrapper {
  padding: 50px 50px 50px 50px;
  background-color: var(--rs-white);
  box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.12);
}

@media only screen and (max-width: 767px) {
  .policy-wrapper {
    padding: 40px 40px;
  }
}

@media only screen and (max-width: 575px) {
  .policy-wrapper {
    padding: 30px 20px;
  }
}

.policy-meta {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.policy-title {
  margin-bottom: 10px;
  font-size: 28px;
}

@media only screen and (max-width: 575px) {
  .policy-title {
    font-size: 22px;
  }
}

.policy-item:not(:last-child) {
  margin-bottom: 25px;
}

.policy-item ul li {
  font-size: 16px;
  position: relative;
  padding-inline-start: 15px;
  list-style: none;
}

.policy-item ul li::after {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--rs-theme-blue);
  border-radius: 50%;
}

.policy-item ul li:not(:last-child) {
  margin-bottom: 5px;
}

.policy-item ul li b {
  color: var(--rs-black);
}

.policy-contact ul {
  margin-bottom: 10px;
}

.policy-contact ul li {
  list-style: none;
  font-size: 16px;
  color: var(--rs-black);
}

.policy-contact ul li a:hover {
  color: var(--rs-theme-primary);
}

.policy-address p {
  font-size: 16px;
  line-height: 1.5;
}

/*----------------------------------------*/
/*  4.31 process
/*----------------------------------------*/
.rs-process-one .rs-progress-wrapper {
  display: grid;
  grid-template-columns: 460px auto;
  gap: 30px 90px;
  align-items: start;
}

@media only screen and (max-width: 1199px) {
  .rs-process-one .rs-progress-wrapper {
    grid-template-columns: 400px auto;
    gap: 30px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-process-one .rs-progress-wrapper {
    grid-template-columns: auto;
  }
}

.rs-process-one .rs-process-thumb {
  margin-top: 50px;
  position: sticky;
  top: 160px;
}

@media only screen and (max-width: 991px) {
  .rs-process-one .rs-process-thumb {
    position: relative;
    top: unset;
  }
}

.rs-process-one .rs-process-thumb img {
  width: 100%;
  border-radius: 16px;
}

.rs-process-one .rs-process-badge {
  background: var(--rs-theme-blue);
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  position: absolute;
  left: 50%;
  z-index: 1;
  top: -50px;
  transform: translateX(-50%);
}

.rs-process-one .rs-process-title {
  background: var(--rs-theme-blue);
  padding-top: 17px;
  padding-bottom: 17px;
  padding-inline-start: 25px;
  padding-inline-end: 25px;
  border-radius: 6px 6px 0 0;
  color: var(--rs-white);
  font-size: 20px;
}

@media only screen and (max-width: 575px) {
  .rs-process-one .rs-process-title {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
    font-size: 18px;
  }
}

.rs-process-one .rs-process-inner {
  position: relative;
  padding-inline-start: 40px;
}

@media only screen and (max-width: 575px) {
  .rs-process-one .rs-process-inner {
    padding-inline-start: 30px;
  }
}

.rs-process-one .rs-process-inner::before {
  position: absolute;
  content: "";
  inset-inline-start: 0px;
  top: 0px;
  width: 16px;
  height: 16px;
  background-color: var(--rs-theme-blue);
  border: 3px solid rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.3);
}

.rs-process-one .rs-process-inner::after {
  position: absolute;
  content: "";
  inset-inline-start: 7px;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: var(--rs-border-primary);
}

.rs-process-one .rs-process-content {
  color: var(--rs-text-primary);
  padding-top: 20px;
  padding-inline-start: 25px;
  padding-inline-end: 25px;
  padding-bottom: 25px;
  background: var(--rs-white);
  border-radius: 0 0 6px 6px;
  position: relative;
}

@media only screen and (max-width: 575px) {
  .rs-process-one .rs-process-content {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    padding-bottom: 20px;
  }
}

.rs-process-one .rs-process-item:not(:last-child) {
  margin-bottom: 25px;
}

.rs-process-two .rs-process-table-inner {
  width: 100%;
  background-color: var(--rs-white);
  border: 1px solid var(--rs-border-primary);
}

@media only screen and (max-width: 1366px) {
  .rs-process-two .rs-process-table-inner {
    width: max-content;
    min-width: 100%;
  }
}

.rs-process-two .rs-process-table-inner thead {
  background-color: var(--rs-theme-blue);
  color: var(--rs-white);
}

.rs-process-two .rs-process-table-inner th {
  padding: 15px 24px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--rs-ff-title);
  border-inline-end: 1px solid var(--rs-border-tertiary);
}

@media only screen and (max-width: 1199px) {
  .rs-process-two .rs-process-table-inner th {
    padding: 15px 15px;
  }
}

.rs-process-two .rs-process-table-inner td {
  padding: 15px 24px;
  vertical-align: middle;
  border: 1px solid var(--rs-border-primary);
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 1199px) {
  .rs-process-two .rs-process-table-inner td {
    padding: 15px 15px;
  }
}

.rs-process-two .rs-process-table-inner td a:hover {
  color: var(--rs-theme-blue);
}

/*----------------------------------------*/
/*  4.32 program cost
/*----------------------------------------*/
.rs-program-cost-wrapper {
  display: grid;
  grid-template-columns: auto 575px;
  gap: 30px 60px;
}

@media only screen and (max-width: 1199px) {
  .rs-program-cost-wrapper {
    grid-template-columns: auto 450px;
    gap: 30px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-program-cost-wrapper {
    grid-template-columns: auto;
  }
}

.rs-program-cost-thumb img {
  width: 100%;
  border-radius: 8px;
}

.rs-program-cost-title {
  color: var(--rs-title-tertiary);
  margin-bottom: 20px;
}

/*----------------------------------------*/
/*  4.33 program css
/*----------------------------------------*/
.rs-program-one {
  position: relative;
}

.rs-program-one .rs-program-item {
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: var(--rs-white);
  margin-bottom: 20px;
  position: relative;
}

.rs-program-one .rs-program-shape {
  position: absolute;
  inset-inline-start: 0;
  top: 100px;
}

.rs-program-one .rs-program-shape-two {
  position: absolute;
  inset-inline-start: 150px;
  top: 125px;
  animation: updown 1.6s ease-in-out 1.6s infinite alternate;
}

@media only screen and (max-width: 767px) {
  .rs-program-one .rs-program-shape-two {
    display: none;
  }
}

.rs-program-one .rs-program-shape-three {
  position: absolute;
  inset-inline-end: 90px;
  bottom: 0px;
}

@media only screen and (max-width: 767px) {
  .rs-program-one .rs-program-shape-three {
    display: none;
  }
}

.rs-program-one .rs-program-info {
  display: flex;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 50px;
  padding-inline: 30px;
  position: relative;
}

@media only screen and (max-width: 1600px) {
  .rs-program-one .rs-program-info {
    padding-inline: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-program-one .rs-program-info {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 767px) {
  .rs-program-one .rs-program-info {
    flex-wrap: unset;
  }
}

@media only screen and (max-width: 575px) {
  .rs-program-one .rs-program-info {
    flex-wrap: wrap;
  }
}

.rs-program-one .rs-program-icon svg {
  width: 65px;
  height: 65px;
}

@media only screen and (max-width: 1600px) {
  .rs-program-one .rs-program-icon svg {
    width: 50px;
    height: 50px;
  }
}

.rs-program-one .rs-program-title {
  margin-bottom: 6px;
}

.rs-program-one .rs-program-desc {
  margin-bottom: 0;
}

.rs-program-one .rs-program-list {
  margin-top: 15px;
}

.rs-program-one .rs-program-list ul li {
  list-style: none;
}

.rs-program-one .rs-program-list ul li:not(:last-child) {
  margin-bottom: 12px;
}

.rs-program-one .rs-program-list ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: var(--rs-border-primary);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-inline: 16px;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
  color: var(--rs-title-tertiary);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  transition: 0.5s;
}

.rs-program-one .rs-program-list ul li a svg {
  width: 15px;
  height: 15px;
}

.rs-program-one .rs-program-list ul li a svg path {
  transition: 0.5s;
}

.rs-program-one .rs-program-list ul li a:hover {
  background: var(--rs-theme-blue);
  color: var(--rs-white);
  border-color: var(--rs-theme-blue);
}

.rs-program-one .rs-program-list ul li a:hover svg path {
  fill: var(--rs-theme-yellow);
}

.rs-program-one .accordion-button {
  width: 44px;
  height: 44px;
  border: 4px solid var(--rs-white);
  background: var(--rs-theme-yellow);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.rs-program-one .accordion-button:hover {
  background: var(--rs-theme-blue);
}

.rs-program-one .accordion-button:hover span svg path {
  fill: var(--rs-white);
}

.rs-program-one .accordion-button::after {
  content: none;
}

.rs-program-one .accordion-button span svg {
  width: 14px;
  height: 14px;
}

.rs-program-one .accordion-button span svg path {
  transition: 0.3s;
}

.rs-program-one .accordion-button .open-icon {
  display: flex;
}

.rs-program-one .accordion-button .close-icon {
  display: none;
}

.rs-program-one .accordion-button.collapsed .close-icon {
  display: flex;
}

.rs-program-one .accordion-button.collapsed .open-icon {
  display: none;
}

.rs-program-one.has-theme-red .has-space {
  margin-top: -110px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .rs-program-one.has-theme-red .has-space {
    margin-top: 0;
  }
}

.rs-program-one.has-theme-red .accordion-button {
  background: var(--rs-theme-red);
}

.rs-program-one.has-theme-red .accordion-button svg path {
  fill: var(--rs-white);
}

.rs-program-one.has-theme-red .rs-program-list ul li a:hover {
  background: var(--rs-theme-red);
  color: var(--rs-white);
  border-color: var(--rs-theme-red);
}

.rs-program-one.has-theme-red .rs-program-list ul li a:hover svg path {
  fill: var(--rs-white);
}

.rs-program-two {
  background: #21252D;
  position: relative;
  overflow-x: clip;
}

.rs-program-two .rs-program-shape {
  position: absolute;
  top: 200px;
  inset-inline-start: 95px;
  animation: rs-rotate-anim 3s linear 0s infinite alternate;
}

@media only screen and (max-width: 1800px) {
  .rs-program-two .rs-program-shape {
    inset-inline-start: 30px;
  }
}

@media only screen and (max-width: 1600px) {
  .rs-program-two .rs-program-shape {
    display: none;
  }
}

.rs-program-two .rs-program-shape-two {
  position: absolute;
  bottom: 75px;
  inset-inline-end: -80px;
}

.rs-program-two .rs-program-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .rs-program-two .rs-program-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-program-two .rs-program-item {
  display: grid;
  grid-template-columns: 260px auto;
  background: #272B35;
  border-radius: 12px;
  padding: 12px;
  gap: 30px;
  align-items: center;
  position: relative;
  border: 1px solid var(--rs-border-tertiary);
  transition: 0.6s;
}

@media only screen and (max-width: 1600px) {
  .rs-program-two .rs-program-item {
    grid-template-columns: 200px auto;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-program-two .rs-program-item {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
  }
}

.rs-program-two .rs-program-item:hover {
  background: var(--rs-theme-red);
  border-color: var(--rs-theme-red);
}

.rs-program-two .rs-program-item:hover .rs-program-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}

@media only screen and (max-width: 1199px) {
  .rs-program-two .rs-program-content {
    padding-inline: 15px;
    padding-bottom: 20px;
  }
}

.rs-program-two .rs-program-thumb {
  overflow: hidden;
  border-radius: 12px;
}

.rs-program-two .rs-program-thumb img {
  width: 100%;
  height: 335px;
  object-fit: cover;
  transition: all 0.8s ease;
  transform: scale(1.02);
}

@media only screen and (max-width: 1199px) {
  .rs-program-two .rs-program-thumb img {
    height: 100%;
  }
}

.rs-program-two .rs-program-list-icon svg {
  width: 15px;
  height: 15px;
}

.rs-program-two .rs-program-list-icon svg path {
  fill: var(--rs-white);
}

.rs-program-two .rs-program-list-item {
  display: flex;
  align-items: start;
  gap: 10px;
}

.rs-program-two .rs-program-list-item p {
  color: var(--rs-white);
}

.rs-program-two .rs-program-title {
  color: var(--rs-white);
}

.rs-program-two .rs-program-desc {
  color: var(--rs-white);
  margin-top: 15px;
  margin-bottom: 15px;
}

.rs-program-two .rs-program-btn {
  margin-top: 25px;
}

.rs-program-three {
  position: relative;
}

.rs-program-three .rs-program-shape {
  position: absolute;
  top: 210px;
  inset-inline-end: 70px;
}

@media only screen and (max-width: 1600px) {
  .rs-program-three .rs-program-shape {
    top: 150px;
    inset-inline-end: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-program-three .rs-program-shape {
    top: 120px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-program-three .rs-program-shape {
    display: none;
  }
}

.rs-program-three .rs-program-item {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  background: var(--rs-bg-secondary);
  padding-top: 12px;
  padding-bottom: 35px;
  padding-inline: 12px;
}

.rs-program-three .rs-program-item:hover .rs-program-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}

.rs-program-three .rs-program-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.rs-program-three .rs-program-thumb img {
  width: 100%;
  transition: all 0.8s ease;
  transform: scale(1.02);
  height: 250px;
  object-fit: cover;
  object-position: top center;
}

@media only screen and (max-width: 480px) {
  .rs-program-three .rs-program-thumb img {
    height: 100%;
  }
}

.rs-program-three .rs-program-icon img {
  min-width: 52px;
  width: 52px;
}

@media only screen and (max-width: 1600px) {
  .rs-program-three .rs-program-icon img {
    min-width: 40px;
    width: 40px;
  }
}

.rs-program-three .rs-program-list-icon svg {
  width: 16px;
  height: 16px;
}

.rs-program-three .rs-program-list-icon svg path {
  fill: var(--rs-theme-red);
}

.rs-program-three .rs-program-list-item {
  display: flex;
  align-items: start;
  gap: 10px;
}

.rs-program-three .rs-program-title {
  margin-bottom: 10px;
}

.rs-program-three .rs-program-title a:hover {
  color: var(--rs-theme-red);
}

.rs-program-three .rs-program-content {
  display: flex;
  align-items: start;
  gap: 30px 30px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  padding-top: 30px;
}

@media only screen and (max-width: 1600px) {
  .rs-program-three .rs-program-content {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-program-three .rs-program-content {
    flex-wrap: wrap;
    gap: 20px 30px;
  }
}

.rs-program-three .rs-program-desc {
  margin-bottom: 15px;
}

.rs-program-three .rs-program-feature {
  margin-bottom: 30px;
}

.rs-program-three .rs-program-pagination {
  margin-top: 45px;
}

.rs-program-three.has-theme-green::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 600px;
  top: 0;
  left: 0;
  background: var(--rs-theme-green);
  z-index: 1;
}

.rs-program-three.has-theme-green .rs-program-sec-icon img {
  width: 65px;
}

.rs-program-three.has-theme-green .rs-counter-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.rs-program-three.has-theme-green .rs-counter-number,
.rs-program-three.has-theme-green .prefix {
  font-size: 16px;
  font-weight: 400;
  color: var(--rs-white);
  line-height: 1;
}

.rs-program-three.has-theme-green .rs-counter-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--rs-white);
}

.rs-program-three.has-theme-green .rs-program-sec-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rs-program-three.has-theme-green .rs-program-sec-meta-thumb {
  margin-bottom: 13px;
}

.rs-program-three.has-theme-green .rs-program-sec-meta {
  display: flex;
  align-items: start;
  gap: 30px;
  justify-content: end;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

@media only screen and (max-width: 991px) {
  .rs-program-three.has-theme-green .rs-program-sec-meta {
    justify-content: start;
  }
}

.rs-program-three.has-theme-green .rs-program-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-program-three.has-theme-green .rs-program-list-icon svg path {
  fill: var(--rs-theme-yellow);
}

.rs-program-three.has-theme-green .rs-program-list-item p {
  color: var(--rs-title-primary);
  font-weight: 500;
}

.rs-program-three.has-theme-green .section-title-wrapper {
  position: relative;
  z-index: 1;
}

.rs-program-three.has-theme-green .rs-program-more-btn {
  display: flex;
  justify-content: center;
}

.rs-program-three.has-theme-green .rs-program-more-btn .rs-btn {
  font-size: 20px;
  border-bottom: 1px solid rgba(3, 3, 3, 0.2);
  border-radius: 0;
  margin-top: 30px;
  font-family: var(--rs-ff-title);
}

.rs-program-three.has-theme-green .rs-program-more-btn .rs-btn.has-icon svg {
  width: 20px;
  height: 20px;
}

.rs-program-three.has-theme-green .rs-program-more-btn .rs-btn:hover {
  color: var(--rs-theme-yellow);
}

.rs-program-three.has-theme-green .rs-program-more-btn .rs-btn:hover.has-icon .icon-box svg path {
  fill: var(--rs-theme-yellow);
}

.rs-program-three.has-theme-cyan .rs-program-item {
  background: var(--rs-white);
}

.rs-program-three.has-theme-cyan .rs-program-title a:hover {
  color: var(--rs-theme-light-cyan);
}

.rs-program-three.has-theme-cyan .rs-program-desc {
  margin-bottom: 33px;
}

.rs-program-three.has-theme-blue::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 600px;
  top: 0;
  left: 0;
  background: var(--rs-theme-blue);
  z-index: 1;
}

.rs-program-three.has-theme-blue .rs-program-sec-icon img {
  width: 65px;
}

.rs-program-three.has-theme-blue .rs-counter-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.rs-program-three.has-theme-blue .rs-counter-number,
.rs-program-three.has-theme-blue .prefix {
  font-size: 16px;
  font-weight: 400;
  color: var(--rs-white);
  line-height: 1;
}

.rs-program-three.has-theme-blue .rs-counter-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--rs-white);
}

.rs-program-three.has-theme-blue .rs-program-sec-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rs-program-three.has-theme-blue .rs-program-sec-meta-thumb {
  margin-bottom: 13px;
}

.rs-program-three.has-theme-blue .rs-program-sec-meta {
  display: flex;
  align-items: start;
  gap: 30px;
  justify-content: end;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .rs-program-three.has-theme-blue .rs-program-sec-meta {
    justify-content: start;
  }
}

.rs-program-three.has-theme-blue .rs-program-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-program-three.has-theme-blue .rs-program-list-icon svg path {
  fill: var(--rs-theme-yellow);
}

.rs-program-three.has-theme-blue .rs-program-list-item p {
  color: var(--rs-title-primary);
  font-weight: 500;
}

.rs-program-three.has-theme-blue .section-title-wrapper {
  position: relative;
  z-index: 1;
}

.rs-program-three.has-theme-blue .rs-program-more-btn {
  display: flex;
  justify-content: center;
}

.rs-program-three.has-theme-blue .rs-program-more-btn .rs-btn {
  font-size: 20px;
  border-bottom: 1px solid rgba(3, 3, 3, 0.2);
  border-radius: 0;
  margin-top: 30px;
  font-family: var(--rs-ff-title);
}

.rs-program-three.has-theme-blue .rs-program-more-btn .rs-btn.has-icon svg {
  width: 20px;
  height: 20px;
}

.rs-program-three.has-theme-blue .rs-program-more-btn .rs-btn:hover {
  color: var(--rs-theme-yellow);
}

.rs-program-three.has-theme-blue .rs-program-more-btn .rs-btn:hover.has-icon .icon-box svg path {
  fill: var(--rs-theme-yellow);
}

.rs-program-four {
  position: relative;
}

.rs-program-four .rs-program-bg {
  margin-inline-start: 45px;
  margin-inline-end: 45px;
  border-radius: 16px;
  padding-top: 120px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .rs-program-four .rs-program-bg {
    margin-inline-start: 0px;
    margin-inline-end: 0px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-program-four .rs-program-bg {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-program-four .rs-program-bg {
    padding-top: 80px;
  }
}

.rs-program-four .rs-program-bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 580px;
  top: 0;
  left: 0;
  background: var(--rs-theme-green-two);
  border-radius: 16px;
  z-index: -1;
}

.rs-program-four .rs-program-shape {
  position: absolute;
  top: 50%;
  inset-inline-start: 60px;
}

@media only screen and (max-width: 1600px) {
  .rs-program-four .rs-program-shape {
    display: none;
  }
}

.rs-program-four .rs-program-item {
  border-radius: 12px;
  background: var(--rs-white);
  padding-top: 28px;
  padding-bottom: 12px;
  padding-inline: 12px;
  text-align: center;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.rs-program-four .rs-program-item:hover .rs-program-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}

.rs-program-four .rs-program-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.rs-program-four .rs-program-thumb img {
  width: 100%;
  transition: all 0.8s ease;
  transform: scale(1.02);
  height: 250px;
  object-fit: cover;
  object-position: top center;
}

@media only screen and (max-width: 480px) {
  .rs-program-four .rs-program-thumb img {
    height: 100%;
  }
}

.rs-program-four .rs-program-title {
  margin-bottom: 10px;
}

.rs-program-four .rs-program-title a:hover {
  color: var(--rs-theme-red);
}

.rs-program-four .rs-program-content {
  margin-bottom: -25px;
}

.rs-program-four .rs-program-desc {
  margin-bottom: 30px;
}

.rs-program-four .rs-program-feature {
  margin-bottom: 30px;
}

.rs-program-four .rs-program-pagination {
  margin-top: 45px;
}

.rs-program-four .rs-counter-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.rs-program-four .rs-counter-number,
.rs-program-four .prefix {
  font-size: 16px;
  font-weight: 400;
  color: var(--rs-white);
  line-height: 1;
}

.rs-program-four .rs-program-sec-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rs-program-four .rs-program-sec-icon img {
  width: 65px;
}

.rs-program-four .rs-counter-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--rs-white);
}

.rs-program-four .rs-program-sec-meta {
  display: flex;
  align-items: start;
  gap: 30px;
  justify-content: end;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .rs-program-four .rs-program-sec-meta {
    justify-content: start;
  }
}

.rs-program-four .rs-program-sec-meta-thumb {
  margin-bottom: 13px;
}

.rs-program-four .rs-program-title a:hover {
  color: var(--rs-theme-green-two);
}

.rs-program-four .rs-program-more-btn {
  display: flex;
  justify-content: center;
}

.rs-program-four .rs-program-more-btn .rs-btn {
  font-size: 20px;
  border-bottom: 1px solid rgba(3, 3, 3, 0.2);
  border-radius: 0;
  margin-top: 30px;
  font-family: var(--rs-ff-title);
}

.rs-program-four .rs-program-more-btn .rs-btn.has-icon svg {
  width: 20px;
  height: 20px;
}

.rs-program-four .rs-program-more-btn .rs-btn:hover {
  color: var(--rs-theme-green-two);
}

.rs-program-four .rs-program-more-btn .rs-btn:hover.has-icon .icon-box svg path {
  fill: var(--rs-theme-green-two);
}

.rs-program-five .rs-program-item-wrapper {
  margin-top: 30px;
}

.rs-program-five .rs-program-item {
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
  background: var(--rs-white);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 270px;
  align-items: center;
  gap: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-program-five .rs-program-item {
    grid-template-columns: auto auto;
    align-items: start;
  }
}

@media only screen and (max-width: 991px) {
  .rs-program-five .rs-program-item {
    align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  .rs-program-five .rs-program-item {
    display: flex;
    flex-direction: column-reverse;
    gap: 25px;
  }
}

.rs-program-five .rs-program-item:not(:last-child) {
  margin-bottom: 25px;
}

.rs-program-five .rs-program-item:hover .rs-program-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}

.rs-program-five .rs-program-tag {
  padding: 5px 12px;
  border: 1px solid var(--rs-border-primary);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.rs-program-five .rs-program-tag-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.rs-program-five .rs-program-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

@media only screen and (max-width: 1199px) {
  .rs-program-five .rs-program-thumb {
    position: sticky;
    top: 110px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-program-five .rs-program-thumb {
    position: relative;
    top: unset;
  }
}

.rs-program-five .rs-program-thumb img {
  width: 100%;
  transition: all 0.8s ease;
  transform: scale(1.02);
}

.rs-program-five .rs-program-content {
  padding-inline-start: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-program-five .rs-program-content {
    padding-inline-start: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-program-five .rs-program-content {
    padding: 0px 10px 15px 10px;
  }
}

.rs-program-five .rs-program-desc {
  margin-bottom: 15px;
  max-width: 555px;
}

.rs-program-five .rs-program-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-program-five .rs-program-btn .rs-btn {
  border-radius: 0;
}

.rs-program-five .rs-program-btn .rs-btn .btn-text-wrap span {
  text-decoration: underline;
}

.rs-program-five.has-theme-blue .filter-main-title {
  font-family: "Prata", serif;
}

.rs-program-five.has-theme-blue .filter-title {
  font-family: "Prata", serif;
  font-size: 16px;
  font-weight: 500;
}

.rs-program-five.has-theme-blue .rs-program-title {
  font-family: "Prata", serif;
  color: #021E40;
  font-size: 22px;
}

@media only screen and (max-width: 575px) {
  .rs-program-five.has-theme-blue .rs-program-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-program-five.has-theme-blue .rs-program-title {
    font-size: 18px;
  }
}

.rs-program-five.has-theme-blue input[type=checkbox]~label {
  font-size: 16px;
}

.rs-program-details .rs-program-details-tab-wrapper .nav-pills {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--rs-border-primary);
  gap: 10px 5px;
}

@media only screen and (max-width: 991px) {
  .rs-program-details .rs-program-details-tab-wrapper .nav-pills {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-program-details .rs-program-details-tab-wrapper .nav-pills {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 575px) {
  .rs-program-details .rs-program-details-tab-wrapper .nav-pills {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 480px) {
  .rs-program-details .rs-program-details-tab-wrapper .nav-pills {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-program-details .rs-program-details-tab-wrapper .nav-item:not(:last-child) {
  border-inline-end: 1px solid var(--rs-border-primary);
}

@media only screen and (max-width: 991px) {
  .rs-program-details .rs-program-details-tab-wrapper .nav-item:not(:last-child) {
    border-inline-end: none;
  }
}

.rs-program-details .rs-program-details-tab-wrapper .nav-link {
  background: var(--rs-white);
  font-weight: 600;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border-radius: 0px;
  color: var(--rs-title-tertiary);
  font-size: 17px;
  transition: all 0.3s ease-in-out;
  padding: 15px 35px;
  width: 100%;
}

@media only screen and (max-width: 1600px) {
  .rs-program-details .rs-program-details-tab-wrapper .nav-link {
    padding: 15px 25px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-program-details .rs-program-details-tab-wrapper .nav-link {
    padding: 15px 15px;
  }
}

.rs-program-details .rs-program-details-tab-wrapper .nav-link.active {
  color: var(--rs-white);
  background: var(--rs-theme-blue);
}

.rs-program-details .rs-program-details-tab-wrapper .nav-link:hover {
  color: var(--rs-white);
  background: var(--rs-theme-blue);
  border-color: var(--rs-theme-blue);
}

.rs-program-details .rs-program-details-tab-wrapper .nav-link:hover .rs-faculty-tab-icon svg path {
  fill: var(--rs-theme-blue);
  transition: all 0.3s ease-in-out;
}

.rs-program-details .rs-program-details-tab-icon svg {
  width: 30px;
  height: 30px;
}

.rs-program-details .rs-program-details-tab-icon svg path {
  fill: var(--rs-white);
}

.rs-program-details .rs-program-details-tab-anim .tab-pane.active .rs-program-details-tab-item {
  -webkit-animation: slide-down 5s ease-out;
  animation: slide-down 5s ease-out;
}

.rs-program-details .rs-program-details-feature {
  margin-bottom: 40px;
}

.rs-program-details .rs-program-details-feature-item-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-program-details .rs-program-details-feature-item-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  .rs-program-details .rs-program-details-feature-item-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 575px) {
  .rs-program-details .rs-program-details-feature-item-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-program-details .rs-program-details-feature-item {
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--rs-white);
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .rs-program-details .rs-program-details-feature-item {
    padding: 20px;
  }
}

.rs-program-details .rs-program-details-feature-icon {
  width: 84px;
  height: 84px;
  background: var(--rs-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

@media only screen and (max-width: 767px) {
  .rs-program-details .rs-program-details-feature-icon {
    width: 70px;
    height: 70px;
  }
}

.rs-program-details .rs-program-details-feature-icon svg {
  width: 46px;
  height: 46px;
}

.rs-program-details .rs-program-details-feature-title {
  margin-bottom: 5px;
}

.rs-program-details .rs-program-details-feature-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotateY(180deg);
  z-index: -1;
}

.rs-program-details .rs-program-details-about-desc {
  max-width: 585px;
}

.rs-program-details .rs-program-details-about-list li {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
  padding-inline-start: 12px;
}

.rs-program-details .rs-program-details-about-list li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rs-theme-blue);
  inset-inline-start: 0;
  top: 10px;
}

.rs-program-details .rs-program-details-about-list li:not(:last-child) {
  margin-bottom: 7px;
}

.rs-program-details .rs-program-details-about-list li span {
  font-weight: 500;
  color: var(--rs-title-tertiary);
}

.rs-program-details .rs-program-details-about-wrapper .curriculum-wrapper {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  margin-top: 40px;
}

.rs-program-details .rs-program-details-about-wrapper .curriculum-sec-title {
  background: var(--rs-theme-blue);
  padding-top: 23px;
  padding-bottom: 20px;
  padding-inline-start: 25px;
  padding-inline-end: 25px;
  border-radius: 6px 6px 0 0;
  color: var(--rs-white);
}

.rs-program-details .rs-program-details-about-wrapper .curriculum-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 10px 20px;
}

@media only screen and (max-width: 767px) {
  .rs-program-details .rs-program-details-about-wrapper .curriculum-item {
    grid-template-columns: 150px 1fr;
  }
}

@media only screen and (max-width: 480px) {
  .rs-program-details .rs-program-details-about-wrapper .curriculum-item {
    grid-template-columns: 1fr;
  }
}

.rs-program-details .rs-program-details-about-wrapper .curriculum-item:not(:last-child) {
  margin-bottom: 10px;
}

.rs-program-details .rs-program-details-about-wrapper .curriculum-item-wrapper {
  background: var(--rs-white);
  padding-top: 30px;
  padding-bottom: 25px;
  padding-inline: 30px;
  border-radius: 0px 0px 6px 6px;
}

@media only screen and (max-width: 1199px) {
  .rs-program-details .rs-program-details-about-wrapper .curriculum-item-wrapper {
    padding-inline: 25px;
    padding-top: 25px;
  }
}

.rs-program-details .rs-program-details-about-wrapper .curriculum-title {
  font-size: 16px;
  font-weight: 500;
}

/*----------------------------------------*/
/*  4.34 quantity css
/*----------------------------------------*/
.rs-product-quantity {
  width: 156px;
  position: relative;
}

.rs-cart-plus,
.rs-cart-minus {
  width: 50px;
  height: 50px;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--rs-black);
  position: absolute;
  top: 50%;
  left: 0px;
  border: 2px solid var(--rs-border-primary);
  cursor: pointer;
  transform: translateY(-50%);
}

.rs-cart-input[type=text] {
  width: 100%;
  height: 50px;
  text-align: center;
  font-size: 20px;
  background-color: var(--rs-bg-secondary);
  padding: 0 45px;
  line-height: 1.5;
  color: var(--rs-black);
  border: 2px solid var(--rs-border-primary);
}

.rs-cart-plus.rs-cart-plus,
.rs-cart-minus.rs-cart-plus {
  left: auto;
  right: 0px;
}

.product-details-info p,
.product-details-categories p,
.product-details-tags p,
.product-details-id p,
.product-details-share p {
  display: inline-block;
  font-size: 15px;
}

.product-details-name span {
  font-size: 15px;
  color: var(--rs-title-primary);
}

.product-details-checkout-card p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--rs-black);
  margin-bottom: 10px;
}

/*----------------------------------------*/
/*  4.35 quote css
/*----------------------------------------*/
.rs-quote-wrapper {
  border-radius: 6px;
  background: var(--rs-white);
  padding-top: 34px;
  padding-bottom: 30px;
  padding-inline-start: 40px;
  padding-inline-end: 40px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1600px) {
  .rs-quote-wrapper {
    padding-top: 30px;
    padding-inline-start: 30px;
    padding-inline-end: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-quote-wrapper {
    padding-top: 25px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
    padding-bottom: 25px;
  }
}

.rs-quote-wrapper .rs-quote-icon {
  margin-bottom: 20px;
}

.rs-quote-wrapper .rs-quote-icon svg {
  width: 40px;
  height: 40px;
}

.rs-quote-wrapper .rs-quote-icon svg path {
  fill: var(--rs-theme-yellow);
}

.rs-quote-wrapper .rs-quote-desc {
  font-size: 18px;
  font-style: italic;
  color: var(--rs-title-primary);
  line-height: 1.8;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .rs-quote-wrapper .rs-quote-desc {
    font-size: 16px;
  }
}

.rs-quote-wrapper .rs-quote-author {
  font-size: 18px;
}

/*----------------------------------------*/
/*  4.36 requirement css
/*----------------------------------------*/
.rs-requirement-one .rs-requirement-thumb img {
  width: 100%;
  border-radius: 16px;
}

.rs-requirement-one .rs-requirement-badge {
  background: var(--rs-theme-blue);
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  width: 132px;
  height: 132px;
  position: absolute;
  left: 50%;
  z-index: 1;
  top: 50%;
  transform: translate(-50%, -50%);
}

.rs-requirement-one .rs-requirement-badge img {
  width: 90px;
}

.rs-requirement-one .rs-requirement-thumb-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px 35px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .rs-requirement-one .rs-requirement-thumb-wrapper {
    flex-wrap: wrap;
  }
}

/*----------------------------------------*/
/*  4.37 research css
/*----------------------------------------*/
.rs-research-one .rs-research-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-research-one .rs-research-meta {
  font-size: 15px;
  display: flex;
  gap: 5px;
}

.rs-research-one .rs-research-author {
  font-size: 15px;
}

.rs-research-one .rs-research-title {
  margin-top: 15px;
  margin-bottom: 10px;
}

.rs-research-one .rs-research-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.rs-research-one .rs-research-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: all 0.8s ease;
  transform: scale(1.02);
}

@media only screen and (max-width: 991px) {
  .rs-research-one .rs-research-thumb img {
    height: 300px;
  }
}

.rs-research-one .rs-research-item {
  display: grid;
  grid-template-columns: auto 520px;
  gap: 30px 100px;
}

@media only screen and (max-width: 1600px) {
  .rs-research-one .rs-research-item {
    grid-template-columns: auto 350px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-research-one .rs-research-item {
    gap: 30px 30px;
    grid-template-columns: auto 300px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-research-one .rs-research-item {
    grid-template-columns: auto;
  }
}

.rs-research-one .rs-research-item:not(:last-child) {
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.rs-research-one .rs-research-item:first-child {
  border-top: 1px solid var(--rs-border-primary);
  padding-top: 20px;
}

.rs-research-one .rs-research-item:last-child {
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 20px;
}

.rs-research-one .rs-research-item:hover .rs-research-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}

.rs-research-one .rs-research-content-wrapper {
  display: grid;
  grid-template-columns: 440px auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media only screen and (max-width: 1600px) {
  .rs-research-one .rs-research-content-wrapper {
    grid-template-columns: 400px auto;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-research-one .rs-research-content-wrapper {
    grid-template-columns: 350px auto;
  }
}

@media only screen and (max-width: 991px) {
  .rs-research-one .rs-research-content-wrapper {
    grid-template-columns: auto auto;
  }
}

@media only screen and (max-width: 767px) {
  .rs-research-one .rs-research-content-wrapper {
    grid-template-columns: auto;
  }
}

.rs-research-one.has-theme-blue .rs-research-title {
  color: var(--rs-title-tertiary);
}

.rs-research-one.has-theme-blue .rs-research-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-research-two .rs-research-wrapper {
  background: var(--rs-white);
  padding-top: 40px;
  padding-bottom: 30px;
  padding-inline: 50px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-research-two .rs-research-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-inline: 30px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-research-two .rs-research-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-inline: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-research-two .rs-research-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-research-two .rs-research-wrapper.no-bg {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-top: 20px;
}

.rs-research-two .rs-research-title {
  font-size: 16px;
  color: var(--rs-theme-blue);
  margin-bottom: 8px;
}

.rs-research-two .rs-research-list {
  position: relative;
  padding-inline-start: 12px;
}

.rs-research-two .rs-research-list:not(:last-child) {
  margin-bottom: 5px;
}

.rs-research-two .rs-research-list::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #4C4C4C;
  border-radius: 50%;
  top: 12px;
  inset-inline-start: 0;
  transform: translateY(-50%);
}

.rs-research-three {
  position: relative;
}

.rs-research-three .rs-research-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-research-three .rs-research-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-research-three .rs-research-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-research-three .rs-research-item {
  background: var(--rs-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  padding-bottom: 40px;
  padding-inline: 30px;
  text-align: center;
  border-radius: 12px;
  margin-top: 50px;
}

@media only screen and (max-width: 1199px) {
  .rs-research-three .rs-research-item {
    padding-bottom: 30px;
  }
}

.rs-research-three .rs-research-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  background: var(--rs-white);
  margin: -50px auto 35px;
}

.rs-research-three .rs-research-icon svg {
  width: 50px;
  height: 50px;
}

.rs-research-three .rs-research-icon svg path {
  fill: var(--rs-theme-blue);
}

.rs-research-three .rs-research-title {
  margin-bottom: 10px;
  color: var(--rs-title-tertiary);
}

@media only screen and (max-width: 575px) {
  .rs-research-three .rs-research-desc {
    font-size: 15px;
  }
}

.rs-research-four .rs-research-wrapper {
  display: grid;
  grid-template-columns: 822px auto;
  gap: 30px 50px;
  margin-top: 35px;
}

@media only screen and (max-width: 1600px) {
  .rs-research-four .rs-research-wrapper {
    grid-template-columns: 700px auto;
    gap: 30px 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-research-four .rs-research-wrapper {
    grid-template-columns: 550px auto;
  }
}

@media only screen and (max-width: 991px) {
  .rs-research-four .rs-research-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-research-four .rs-research-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-research-four .rs-research-thumb {
  height: 100%;
}

.rs-research-four .rs-research-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.rs-research-four .rs-research-item.item-two {
  border-radius: 12px;
  background: var(--rs-white);
  padding-top: 28px;
  padding-bottom: 12px;
  padding-inline: 12px;
  text-align: center;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.rs-research-four .rs-research-item.item-two .rs-research-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.rs-research-four .rs-research-content {
  margin-bottom: -25px;
}

.rs-research-four .rs-research-title {
  margin-bottom: 10px;
}

/*----------------------------------------*/
/*  4.38 scholarships css
/*----------------------------------------*/
.rs-scholarships-one .rs-scholarships-thumb {
  margin-top: 30px;
}

.rs-scholarships-one .rs-scholarships-thumb img {
  border-radius: 12px;
}

.rs-scholarships-two .rs-scholarships-item-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-scholarships-two .rs-scholarships-item-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-scholarships-two .rs-scholarships-item-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-scholarships-two .rs-scholarships-content {
  background: var(--rs-white);
  padding-inline: 40px;
  padding-top: 30px;
  padding-bottom: 33px;
  border-radius: 0px 0px 12px 12px;
}

@media only screen and (max-width: 1600px) {
  .rs-scholarships-two .rs-scholarships-content {
    padding-inline: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-scholarships-two .rs-scholarships-content {
    padding-inline: 20px;
    padding-top: 20px;
    padding-bottom: 23px;
  }
}

.rs-scholarships-two .rs-tuition-list .rs-tuition-list-item {
  list-style: none;
}

.rs-scholarships-two .rs-tuition-list .rs-tuition-list-item:not(:last-child) {
  margin-bottom: 4px;
}

.rs-scholarships-two .rs-tuition-inner-title {
  color: var(--rs-title-tertiary);
  font-size: 17px;
}

.rs-scholarships-two .rs-scholarships-title {
  color: var(--rs-title-tertiary);
  margin-bottom: 20px;
}

.rs-scholarships-two .rs-tuition-info-item:first-child {
  margin-bottom: 22px;
}

.rs-scholarships-two .rs-tuition-inner-title {
  font-size: 17px;
  margin-bottom: 6px;
  text-decoration: underline;
}

.rs-scholarships-two .rs-tuition-label {
  font-size: 15px;
}

.rs-scholarships-two .rs-scholarships-thumb {
  position: relative;
}

.rs-scholarships-two .rs-scholarships-thumb img {
  border-radius: 12px 12px 0px 0px;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top center;
}

.rs-scholarships-two .rs-scholarships-icon {
  width: 76px;
  height: 76px;
  background: var(--rs-theme-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50px;
  inset-inline-start: 40px;
}

.rs-scholarships-two .rs-scholarships-icon svg {
  width: 40px;
  height: 40px;
}

.rs-scholarships-two .rs-scholarships-icon svg path {
  fill: var(--rs-white);
}

@media only screen and (max-width: 767px) {
  .rs-scholarships-two .rs-scholarships-tab-wrapper {
    display: none;
  }
}

.rs-scholarships-two .rs-scholarships-tab-wrapper .nav-pills {
  display: flex;
  justify-content: center;
  gap: 30px 5px;
  margin-bottom: 30px;
  margin-top: 35px;
}

@media only screen and (max-width: 1199px) {
  .rs-scholarships-two .rs-scholarships-tab-wrapper .nav-pills {
    gap: 20px 5px;
  }
}

.rs-scholarships-two .rs-scholarships-tab-wrapper .nav-link {
  background: var(--rs-white);
  font-weight: 500;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border-radius: 0px;
  border-bottom: 2px solid var(--rs-white);
  color: var(--rs-text-primary);
  font-size: 17px;
  transition: all 0.3s ease-in-out;
  padding: 15px 35px;
}

@media only screen and (max-width: 1600px) {
  .rs-scholarships-two .rs-scholarships-tab-wrapper .nav-link {
    padding: 15px 25px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-scholarships-two .rs-scholarships-tab-wrapper .nav-link {
    padding: 15px 15px;
  }
}

.rs-scholarships-two .rs-scholarships-tab-wrapper .nav-link.active {
  color: var(--rs-theme-blue);
  border-color: var(--rs-theme-blue);
}

.rs-scholarships-two .rs-scholarships-tab-wrapper .nav-link.active .rs-faculty-tab-icon svg path {
  fill: var(--rs-theme-blue);
}

.rs-scholarships-two .rs-scholarships-tab-wrapper .nav-link:hover {
  color: var(--rs-theme-blue);
  border-color: var(--rs-theme-blue);
}

.rs-scholarships-two .rs-scholarships-tab-wrapper .nav-link:hover .rs-faculty-tab-icon svg path {
  fill: var(--rs-theme-blue);
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .rs-scholarships-two .rs-scholarships-tab-content-wrapper {
    display: none;
  }
}

.rs-scholarships-two .rs-scholarships-tab-icon svg {
  width: 30px;
  height: 30px;
}

.rs-scholarships-two .rs-scholarships-tab-icon svg path {
  fill: var(--rs-white);
}

.rs-scholarships-two .rs-scholarships-tab-anim .tab-pane.active .rs-scholarships-item-wrapper {
  -webkit-animation: slide-down 5s ease-out;
  animation: slide-down 5s ease-out;
}

.rs-scholarships-two .rs-scholarships-accordion {
  display: none;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .rs-scholarships-two .rs-scholarships-accordion {
    display: block;
  }
}

.rs-scholarships-two .rs-accordion-one .rs-accordion-item {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
}

.rs-scholarships-two .rs-accordion-one .rs-accordion-item:not(:last-child) {
  margin-bottom: 10px;
}

.rs-scholarships-two .rs-accordion-one .accordion-button {
  gap: 10px;
  padding-inline-end: 0;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .rs-scholarships-two .rs-accordion-one .accordion-button {
    font-size: 18px;
  }
}

.rs-scholarships-two .rs-accordion-one .accordion-button:not(.collapsed) {
  color: var(--rs-theme-blue);
}

.rs-scholarships-two .rs-accordion-one .accordion-button:not(.collapsed) .rs-scholarships-accordion-icon svg path {
  fill: var(--rs-theme-blue);
}

.rs-scholarships-two .rs-accordion-one .accordion-body {
  padding: 0;
  margin-top: 30px;
}

.rs-scholarships-two .rs-accordion-one .rs-scholarships-content {
  padding-inline: 0;
  padding-top: 20px;
  padding-bottom: 0;
}

.rs-scholarships-two .rs-accordion-one .rs-scholarships-thumb img {
  border-radius: 12px;
}

.rs-scholarships-two .rs-accordion-one .rs-scholarships-icon {
  top: 10px;
  inset-inline-start: 10px;
  width: 60px;
  height: 60px;
}

.rs-scholarships-two .rs-accordion-one .rs-scholarships-icon svg {
  width: 30px;
  height: 30px;
}

.rs-scholarships-three .rs-scholarships-wrapper {
  background: var(--rs-white);
  padding-top: 35px;
  padding-bottom: 30px;
  padding-inline: 40px;
  border-radius: 12px;
}

@media only screen and (max-width: 1600px) {
  .rs-scholarships-three .rs-scholarships-wrapper {
    padding-inline: 30px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-scholarships-three .rs-scholarships-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-inline: 20px;
  }
}

.rs-scholarships-three .rs-scholarships-item-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .rs-scholarships-three .rs-scholarships-item-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-scholarships-three .rs-scholarships-title {
  font-size: 16px;
  color: var(--rs-theme-blue);
  margin-bottom: 8px;
}

.rs-scholarships-three .rs-scholarships-list {
  position: relative;
  padding-inline-start: 12px;
}

.rs-scholarships-three .rs-scholarships-list:not(:last-child) {
  margin-bottom: 5px;
}

.rs-scholarships-three .rs-scholarships-list::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #4C4C4C;
  border-radius: 50%;
  top: 12px;
  inset-inline-start: 0;
  transform: translateY(-50%);
}

/*----------------------------------------*/
/*  4.39 Team css
/*----------------------------------------*/
.rs-team-one {
  position: relative;
}

.rs-team-one .rs-team-life {
  position: absolute;
  bottom: 150px;
  inset-inline-start: 50px;
  animation: rs-rotate-anim 3s linear 0s infinite alternate;
}

@media only screen and (max-width: 1800px) {
  .rs-team-one .rs-team-life {
    inset-inline-start: 10px;
  }
}

@media only screen and (max-width: 1600px) {
  .rs-team-one .rs-team-life {
    display: none;
  }
}

.rs-team-one .rs-team-life-two {
  position: absolute;
  top: 200px;
  inset-inline-end: 40px;
}

@media only screen and (max-width: 1800px) {
  .rs-team-one .rs-team-life-two {
    inset-inline-end: 10px;
  }
}

@media only screen and (max-width: 1600px) {
  .rs-team-one .rs-team-life-two {
    display: none;
  }
}

.rs-team-one .rs-team-item {
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  background: var(--rs-white);
  padding-top: 30px;
  padding-inline: 30px;
  padding-bottom: 35px;
  border: 1px solid var(--rs-border-primary);
  position: relative;
}

.rs-team-one .rs-team-item:hover .rs-team-social a {
  opacity: 1;
  visibility: visible;
}

.rs-team-one .rs-team-item:hover .rs-team-social a:nth-child(2) {
  bottom: 44px;
}

.rs-team-one .rs-team-item:hover .rs-team-social a:nth-child(3) {
  bottom: 88px;
}

.rs-team-one .rs-team-item:hover .rs-team-social a:nth-child(4) {
  bottom: 132px;
}

.rs-team-one .rs-team-item:hover .rs-team-social a:nth-child(5) {
  bottom: 176px;
}

.rs-team-one .rs-team-thumb {
  margin-bottom: 40px;
  position: relative;
}

.rs-team-one .rs-team-thumb img {
  width: 346px;
  height: 346px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}

@media only screen and (max-width: 1600px) {
  .rs-team-one .rs-team-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
  }
}

.rs-team-one .rs-team-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.rs-team-one .rs-team-title {
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}

.rs-team-one .rs-team-title:hover {
  color: var(--rs-theme-yellow);
}

.rs-team-one .rs-team-designation {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.rs-team-one .rs-team-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-direction: column-reverse;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 18px);
}

.rs-team-one .rs-team-social .social-icon {
  width: 36px;
  height: 36px;
  background: var(--rs-theme-yellow);
  color: var(--rs-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.rs-team-one .rs-team-social a {
  position: absolute;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.rs-team-one .rs-team-pagination {
  margin-top: 45px;
}

.rs-team-one.has-theme-red .rs-team-social .social-icon {
  background: var(--rs-theme-red);
  color: var(--rs-white);
}

.rs-team-one.has-theme-red .rs-team-title a:hover {
  color: var(--rs-theme-red);
}

.rs-team-one.has-theme-red-two .rs-team-item {
  transition: 0.5s;
}

.rs-team-one.has-theme-red-two .rs-team-item:hover {
  background: var(--rs-theme-red);
}

.rs-team-one.has-theme-red-two .rs-team-item:hover .rs-team-shape-one {
  opacity: 0;
  visibility: hidden;
}

.rs-team-one.has-theme-red-two .rs-team-item:hover .rs-team-shape-two {
  opacity: 1;
  visibility: visible;
}

.rs-team-one.has-theme-red-two .rs-team-item:hover .rs-team-title {
  color: var(--rs-white);
}

.rs-team-one.has-theme-red-two .rs-team-item:hover .rs-team-title a:hover {
  color: var(--rs-white);
}

.rs-team-one.has-theme-red-two .rs-team-item:hover .rs-team-designation {
  color: var(--rs-white);
}

.rs-team-one.has-theme-red-two .rs-team-item:hover .rs-team-social .social-icon {
  background: var(--rs-black);
  color: var(--rs-white);
}

.rs-team-one.has-theme-red-two .rs-team-shape-one {
  position: absolute;
  inset-inline-start: 0;
  top: 35px;
  transition: 0.3s;
}

.rs-team-one.has-theme-red-two .rs-team-shape-two {
  position: absolute;
  inset-inline-start: 0;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

@media only screen and (max-width: 1600px) {
  .rs-team-one.has-theme-red-two .rs-team-shape-two {
    top: 0;
  }
}

@media only screen and (max-width: 991px) {
  .rs-team-one.has-theme-red-two .rs-team-shape-two {
    top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rs-team-one.has-theme-red-two .rs-team-shape-two {
    top: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-team-one.has-theme-red-two .rs-team-shape-two {
    top: 0;
  }
}

.rs-team-one.has-theme-red-two .rs-team-social .social-icon {
  background: var(--rs-theme-red);
  color: var(--rs-white);
}

.rs-team-one.has-theme-cyan .rs-team-item {
  border-radius: 15px;
  background: var(--rs-white);
  padding-top: 12px;
  padding-inline: 12px;
  padding-bottom: 35px;
  border: 1px solid var(--rs-border-primary);
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}

.rs-team-one.has-theme-cyan .rs-team-item:hover {
  background: var(--rs-theme-cyan);
}

.rs-team-one.has-theme-cyan .rs-team-item:hover .rs-team-title {
  color: var(--rs-white);
}

.rs-team-one.has-theme-cyan .rs-team-item:hover .rs-team-title a:hover {
  color: var(--rs-white);
}

.rs-team-one.has-theme-cyan .rs-team-item:hover .rs-team-designation {
  color: var(--rs-white);
}

.rs-team-one.has-theme-cyan .rs-team-item .rs-team-social .social-icon {
  background: var(--rs-theme-light-cyan);
  color: var(--rs-white);
}

.rs-team-one.has-theme-cyan .rs-team-thumb img {
  border-radius: 8px;
  width: 100%;
}

.rs-team-one.has-theme-blue .rs-team-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-team-one.has-theme-blue .rs-team-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-team-one.has-theme-blue .rs-team-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-team-one.has-theme-blue .rs-team-item {
  transition: 0.5s;
}

.rs-team-one.has-theme-blue .rs-team-item:hover {
  background: var(--rs-theme-blue);
}

.rs-team-one.has-theme-blue .rs-team-item:hover .rs-team-shape-one {
  opacity: 0;
  visibility: hidden;
}

.rs-team-one.has-theme-blue .rs-team-item:hover .rs-team-shape-two {
  opacity: 1;
  visibility: visible;
}

.rs-team-one.has-theme-blue .rs-team-item:hover .rs-team-title {
  color: var(--rs-white);
}

.rs-team-one.has-theme-blue .rs-team-item:hover .rs-team-title a:hover {
  color: var(--rs-white);
}

.rs-team-one.has-theme-blue .rs-team-item:hover .rs-team-designation {
  color: var(--rs-white);
}

.rs-team-one.has-theme-blue .rs-team-shape-one {
  position: absolute;
  inset-inline-start: 0;
  top: 35px;
  transition: 0.3s;
}

.rs-team-one.has-theme-blue .rs-team-shape-two {
  position: absolute;
  inset-inline-start: 0;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

@media only screen and (max-width: 1600px) {
  .rs-team-one.has-theme-blue .rs-team-shape-two {
    top: 0;
  }
}

@media only screen and (max-width: 991px) {
  .rs-team-one.has-theme-blue .rs-team-shape-two {
    top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rs-team-one.has-theme-blue .rs-team-shape-two {
    top: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-team-one.has-theme-blue .rs-team-shape-two {
    top: 0;
  }
}

.rs-team-one.has-theme-blue .rs-team-social .social-icon {
  background: var(--rs-theme-yellow);
  color: var(--rs-black);
}

.rs-team-two {
  position: relative;
}

.rs-team-two .rs-team-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-team-two .rs-team-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 575px) {
  .rs-team-two .rs-team-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-team-two .rs-team-item:hover .rs-team-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}

.rs-team-two .rs-team-sec-title {
  color: var(--rs-title-tertiary);
}

.rs-team-two .rs-team-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}

.rs-team-two .rs-team-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  transform: scale(1.02);
  transition: all 0.8s ease;
  object-fit: cover;
  object-position: top center;
}

.rs-team-two .rs-team-content {
  background: var(--rs-white);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
  border-radius: 0px 0px 10px 10px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-inline: 15px;
  text-align: center;
}

.rs-team-two .rs-team-title {
  margin-bottom: 5px;
  color: var(--rs-title-tertiary);
  font-size: 20px;
}

.rs-team-two .rs-team-title:hover {
  color: var(--rs-theme-yellow);
}

.rs-team-two .rs-team-designation {
  font-size: 15px;
}

.rs-team-three .rs-team-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-team-three .rs-team-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-team-three .rs-team-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-team-three .rs-team-item {
  background: var(--rs-bg-primary);
  border-radius: 16px;
  padding-top: 12px;
  padding-inline: 12px;
  padding-bottom: 30px;
}

.rs-team-three .rs-team-item:hover .rs-team-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}

.rs-team-three .rs-team-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.rs-team-three .rs-team-thumb img {
  width: 100%;
  transition: all 0.8s ease;
}

.rs-team-three .rs-team-title {
  margin-bottom: 12px;
  color: var(--rs-title-tertiary);
}

.rs-team-three .rs-team-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-team-three .rs-team-content {
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  padding-top: 27px;
}

.rs-team-three .rs-team-desc {
  margin-bottom: 28px;
}

.rs-team-three .rs-team-desig {
  margin-bottom: 10px;
  display: inline-block;
}

.rs-team-three .rs-team-bio {
  margin-bottom: 22px;
}

.rs-team-four {
  position: relative;
}

.rs-team-four .rs-team-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.rs-team-four .rs-team-item {
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: var(--rs-white);
  padding-top: 12px;
  padding-inline: 12px;
  padding-bottom: 30px;
  position: relative;
  transition: 0.5s;
}

.rs-team-four .rs-team-item:hover {
  background: var(--rs-theme-blue);
}

.rs-team-four .rs-team-item:hover .rs-team-social {
  opacity: 1;
  visibility: visible;
  inset-inline-start: 30px;
}

.rs-team-four .rs-team-item:hover .rs-team-title {
  color: var(--rs-white);
}

.rs-team-four .rs-team-item:hover .rs-team-title a:hover {
  color: var(--rs-white);
}

.rs-team-four .rs-team-item:hover .rs-team-designation {
  color: var(--rs-white);
}

.rs-team-four .rs-team-thumb {
  margin-bottom: 35px;
  position: relative;
}

.rs-team-four .rs-team-thumb img {
  width: 100%;
  transform: scale(1.02);
  transition: all 0.8s ease;
  height: 346px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
}

@media only screen and (max-width: 480px) {
  .rs-team-four .rs-team-thumb img {
    height: 100%;
  }
}

.rs-team-four .rs-team-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.rs-team-four .rs-team-title {
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}

.rs-team-four .rs-team-title:hover {
  color: var(--rs-theme-yellow);
}

.rs-team-four .rs-team-designation {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.rs-team-four .rs-team-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-direction: column;
  position: absolute;
  bottom: 30px;
  inset-inline-start: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.rs-team-four .rs-team-social .social-icon {
  width: 36px;
  height: 36px;
  background: var(--rs-theme-yellow);
  color: var(--rs-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.rs-team-four .rs-team-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-team-four .rs-team-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-team-four .rs-team-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-team-four .rs-team-social .social-icon {
  background: var(--rs-theme-yellow);
  color: var(--rs-black);
}

.rs-team-four .rs-team-life {
  position: absolute;
  bottom: 150px;
  inset-inline-start: 50px;
  animation: rs-rotate-anim 3s linear 0s infinite alternate;
}

@media only screen and (max-width: 1800px) {
  .rs-team-four .rs-team-life {
    inset-inline-start: 10px;
  }
}

@media only screen and (max-width: 1600px) {
  .rs-team-four .rs-team-life {
    display: none;
  }
}

.rs-team-four .rs-team-life-two {
  position: absolute;
  top: 200px;
  inset-inline-end: 40px;
}

@media only screen and (max-width: 1800px) {
  .rs-team-four .rs-team-life-two {
    inset-inline-end: 10px;
  }
}

@media only screen and (max-width: 1600px) {
  .rs-team-four .rs-team-life-two {
    display: none;
  }
}

.rs-team-four .rs-team-pagination {
  margin-top: 45px;
}

.rs-team-details .rs-team-details-wrapper {
  display: grid;
  grid-template-columns: 400px auto;
  gap: 30px 50px;
  align-items: start;
}

@media only screen and (max-width: 1600px) {
  .rs-team-details .rs-team-details-wrapper {
    grid-template-columns: 350px auto;
    gap: 30px 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-team-details .rs-team-details-wrapper {
    grid-template-columns: 300px auto;
  }
}

@media only screen and (max-width: 991px) {
  .rs-team-details .rs-team-details-wrapper {
    grid-template-columns: auto;
  }
}

.rs-team-details .rs-team-details-thumb-wrapper {
  background: var(--rs-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding-top: 12px;
  padding-inline: 12px;
  padding-bottom: 25px;
}

@media only screen and (max-width: 1600px) {
  .rs-team-details .rs-team-details-thumb-wrapper {
    position: sticky;
    top: 110px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-team-details .rs-team-details-thumb-wrapper {
    position: relative;
    top: unset;
  }
}

.rs-team-details .rs-team-details-author-thumb img {
  width: 100%;
  border-radius: 12px;
}

.rs-team-details .rs-team-details-author-info {
  padding-top: 20px;
}

.rs-team-details .rs-team-details-author-name {
  margin-bottom: 5px;
}

.rs-team-details .rs-team-details-details-title {
  margin-bottom: 15px;
}

.rs-team-details .rs-team-details-desc {
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 30px;
  margin-bottom: 33px;
}

.rs-team-details .rs-team-details-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 30px;
  margin-bottom: 33px;
}

@media only screen and (max-width: 767px) {
  .rs-team-details .rs-team-details-info {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-team-details .rs-info-list li {
  list-style: none;
  position: relative;
  padding-inline-start: 12px;
}

.rs-team-details .rs-info-list li:not(:last-child) {
  margin-bottom: 8px;
}

.rs-team-details .rs-info-list li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #4C4C4C;
  border-radius: 50%;
  top: 9px;
  inset-inline-start: 0;
}

.rs-team-details .rs-team-details-info-title {
  margin-bottom: 20px;
}

.rs-team-details .rs-contact-info-item {
  background-color: var(--rs-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 14px;
  border-radius: 100px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  transition: 0.5s;
}

.rs-team-details .rs-contact-info-item svg {
  width: 20px;
  height: 20px;
}

.rs-team-details .rs-contact-info-item svg path {
  transition: 0.5s;
}

.rs-team-details .rs-contact-info-item:hover {
  color: var(--rs-title-primary);
  background: var(--rs-theme-yellow);
}

.rs-team-details .rs-contact-info-item:hover svg path {
  fill: var(--rs-black);
}

.rs-team-details .rs-contact-wrapper {
  gap: 20px 30px;
  display: flex;
  flex-wrap: wrap;
}

.rs-team-details .rs-team-details-title {
  margin-bottom: 16px;
}

.rs-team-details .rs-team-details .rs-contact-wrapper {
  gap: 30px;
  display: flex;
  align-items: center;
}

.rs-team-details .rs-team-details-contact-title {
  margin-bottom: 25px;
}

/*----------------------------------------*/
/*  4.40 testimonial
/*----------------------------------------*/
.rs-testimonial-one {
  position: relative;
  z-index: 1;
  margin-bottom: 160px;
  overflow-x: clip;
}

@media only screen and (max-width: 1199px) {
  .rs-testimonial-one {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-testimonial-one {
    margin-bottom: 80px;
  }
}

.rs-testimonial-one .rs-testimonial-bg-thumb {
  position: absolute;
  width: 100%;
  height: 345px;
  bottom: -160px;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 1199px) {
  .rs-testimonial-one .rs-testimonial-bg-thumb {
    bottom: -100px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-testimonial-one .rs-testimonial-bg-thumb {
    bottom: -80px;
  }
}

.rs-testimonial-one .rs-testimonial-wrapper {
  background: var(--rs-theme-blue);
  padding: 20px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 425px 710px;
  align-items: center;
  gap: 30px 60px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .rs-testimonial-one .rs-testimonial-wrapper {
    grid-template-columns: 400px 630px;
    gap: 30px 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-testimonial-one .rs-testimonial-wrapper {
    grid-template-columns: auto 480px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-testimonial-one .rs-testimonial-wrapper {
    grid-template-columns: auto;
  }
}

.rs-testimonial-one .rs-testimonial-thumb {
  position: relative;
}

.rs-testimonial-one .rs-testimonial-thumb img {
  width: 100%;
  border-radius: 16px;
}

.rs-testimonial-one .rs-testimonial-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rs-testimonial-one .rs-testimonial-desc {
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1199px) {
  .rs-testimonial-one .rs-testimonial-desc {
    font-size: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-testimonial-one .rs-testimonial-desc {
    font-size: 16px;
  }
}

.rs-testimonial-one .rs-testimonial-avater-wrapper {
  display: flex;
  align-items: center;
  gap: 18px 50px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .rs-testimonial-one .rs-testimonial-avater-wrapper {
    gap: 18px 30px;
  }
}

.rs-testimonial-one .rs-testimonial-avater-thumb img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.rs-testimonial-one .rs-testimonial-avater-designation {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.rs-testimonial-one .rs-testimonial-avater-title {
  margin-bottom: 5px;
  color: var(--rs-white);
}

.rs-testimonial-one .rs-testimonial-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.rs-testimonial-two .rs-testimonial-item {
  background: var(--rs-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding-top: 8px;
  padding-inline-end: 8px;
  padding-inline-start: 8px;
  padding-bottom: 30px;
}

.rs-testimonial-two .rs-testimonial-content {
  padding-inline-start: 22px;
  padding-inline-end: 30px;
}

.rs-testimonial-two .rs-testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-inline-start: -28px;
  margin-bottom: 20px;
  margin-inline-start: 0;
  margin-top: 0;
}

.rs-testimonial-two .rs-testimonial-avater-thumb img {
  border-radius: 12px 0px 100px 0px;
  width: 110px;
  height: 110px;
  min-width: 110px;
}

.rs-testimonial-two .rs-testimonial-rating i {
  font-size: 16px;
  color: #F55B1F;
}

.rs-testimonial-two .rs-testimonial-desc {
  font-size: 18px;
  letter-spacing: 0.02em;
  font-style: italic;
  font-weight: 500;
}

@media only screen and (max-width: 575px) {
  .rs-testimonial-two .rs-testimonial-desc {
    font-size: 16px;
  }
}

.rs-testimonial-two .rs-testimonial-avater-title {
  margin-bottom: 3px;
}

.rs-testimonial-two .rs-testimonial-pagination {
  margin-top: 45px;
}

.rs-testimonial-three {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: #322E2F;
}

.rs-testimonial-three .rs-testimonial-shape {
  position: absolute;
  inset-inline-start: 0;
  top: 230px;
}

[dir=rtl] .rs-testimonial-three .rs-testimonial-shape {
  transform: rotateY(180deg);
}

.rs-testimonial-three .rs-testimonial-item {
  background: var(--rs-bg-black);
  border-radius: 6px;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-inline-start: 40px;
  padding-inline-end: 40px;
  box-shadow: 20px 20px 0px 0px rgba(28, 23, 25, 0.88);
  margin-inline-end: 20px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1600px) {
  .rs-testimonial-three .rs-testimonial-item {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
  }
}

.rs-testimonial-three .rs-testimonial-icon svg {
  width: 60px;
}

.rs-testimonial-three .rs-testimonial-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .rs-testimonial-three .rs-testimonial-desc {
    font-size: 16px;
  }
}

.rs-testimonial-three .rs-testimonial-avater-title {
  font-size: 20px;
  color: var(--rs-white);
  font-weight: 600;
  letter-spacing: 0.16px;
  margin-bottom: 5px;
}

.rs-testimonial-three .rs-testimonial-avater-designation {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.16px;
}

.rs-testimonial-three .rs-testimonial-rating {
  font-size: 60px;
  font-weight: 600;
  color: var(--rs-white);
  line-height: 0.9;
}

@media only screen and (max-width: 1199px) {
  .rs-testimonial-three .rs-testimonial-rating {
    font-size: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-testimonial-three .rs-testimonial-rating {
    font-size: 40px;
  }
}

.rs-testimonial-three .rs-testimonial-rating-icon i {
  color: #FF8E2B;
  font-size: 17px;
}

.rs-testimonial-three .rs-testimonial-rating-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 55px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 1199px) {
  .rs-testimonial-three .rs-testimonial-rating-wrapper {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-testimonial-three .rs-testimonial-rating-wrapper {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

.rs-testimonial-three .rs-testimonial-avater-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 10px;
  flex-wrap: wrap;
}

.rs-testimonial-three.has-theme-green {
  background: var(--rs-theme-green);
}

.rs-testimonial-three.has-theme-green .rs-testimonial-item {
  background: #346359;
  box-shadow: none;
  margin: 0;
  border: 1px solid var(--rs-border-tertiary);
}

.rs-testimonial-three.has-theme-green .rs-testimonial-pagination {
  margin-top: 45px;
}

.rs-testimonial-three.has-theme-green .rs-testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--rs-theme-yellow);
  border-color: var(--rs-theme-yellow);
}

.rs-testimonial-three.has-theme-green .rs-testimonial-pagination .swiper-pagination-bullet:hover {
  background: var(--rs-theme-yellow);
  border-color: var(--rs-theme-yellow);
}

.rs-testimonial-three.has-theme-green-two {
  background: var(--rs-white);
}

.rs-testimonial-three.has-theme-green-two .rs-testimonial-item {
  background: var(--rs-bg-primary);
  box-shadow: none;
  margin: 0;
}

.rs-testimonial-three.has-theme-green-two .rs-testimonial-pagination {
  margin-top: 45px;
}

.rs-testimonial-three.has-theme-green-two .rs-testimonial-avater-title {
  color: var(--rs-title-primary);
}

.rs-testimonial-three.has-theme-green-two .rs-testimonial-avater-designation {
  color: var(--rs-text-primary);
}

.rs-testimonial-three.has-theme-green-two .rs-testimonial-rating {
  color: var(--rs-title-primary);
}

.rs-testimonial-three.has-theme-green-two .rs-testimonial-desc {
  color: var(--rs-text-primary);
}

.rs-testimonial-three.has-theme-cyan {
  background: var(--rs-theme-cyan);
}

.rs-testimonial-three.has-theme-cyan .rs-testimonial-item {
  margin-inline-end: 0px;
  margin-bottom: 0px;
  box-shadow: 20px 20px 0px 0px rgba(28, 23, 25, 0.88);
  box-shadow: none;
  background: #0F6487;
  border: 1px solid var(--rs-border-tertiary);
}

.rs-testimonial-three.has-theme-cyan .rs-testimonial-pagination {
  margin-top: 40px;
}

.rs-testimonial-three.has-bg-white {
  background: transparent;
}

.rs-testimonial-three.has-bg-white .rs-testimonial-item {
  background: var(--rs-white);
  box-shadow: none;
  margin: 0;
}

.rs-testimonial-three.has-bg-white .rs-testimonial-avater-title {
  color: var(--rs-title-primary);
}

.rs-testimonial-three.has-bg-white .rs-testimonial-avater-designation {
  color: var(--rs-text-primary);
}

.rs-testimonial-three.has-bg-white .rs-testimonial-icon svg path {
  fill: var(--rs-theme-yellow);
}

.rs-testimonial-three.has-bg-white .rs-testimonial-rating {
  color: var(--rs-title-primary);
}

.rs-testimonial-three.has-bg-white .rs-testimonial-desc {
  color: var(--rs-text-primary);
  font-size: 18px;
}

@media only screen and (max-width: 1199px) {
  .rs-testimonial-three.has-bg-white .rs-testimonial-desc {
    font-size: 16px;
  }
}

.rs-testimonial-three.has-bg-white .rs-testimonial-pagination {
  margin-top: 40px;
}

.rs-testimonial-three.has-theme-red {
  background: var(--rs-bg-primary);
}

.rs-testimonial-three.has-theme-red .rs-testimonial-item {
  background: var(--rs-white);
  box-shadow: none;
  margin: 0;
}

.rs-testimonial-three.has-theme-red .rs-testimonial-avater-title {
  color: var(--rs-title-primary);
}

.rs-testimonial-three.has-theme-red .rs-testimonial-avater-designation {
  color: var(--rs-text-primary);
}

.rs-testimonial-three.has-theme-red .rs-testimonial-desc {
  color: var(--rs-text-primary);
}

.rs-testimonial-three.has-theme-red .rs-testimonial-rating {
  color: var(--rs-title-primary);
}

.rs-testimonial-three.has-theme-red .rs-testimonial-icon svg path {
  fill: rgba(150, 11, 39, 0.1294117647);
}

.rs-testimonial-three.has-theme-red .rs-testimonial-pagination {
  margin-top: 45px;
}

.rs-testimonial-three.has-theme-blue-two .rs-testimonial-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.rs-testimonial-three.has-theme-blue-two .rs-testimonial-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  background: var(--rs-theme-blue-two);
}

.rs-testimonial-three.has-theme-blue-two .rs-testimonial-item {
  background: var(--rs-theme-blue-two);
  box-shadow: none;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
}

.rs-testimonial-three.has-theme-blue-two .rs-testimonial-pagination {
  margin-top: 45px;
}

.rs-testimonial-three.has-theme-blue-two .rs-testimonial-pagination .swiper-pagination-bullet {
  border-color: var(--rs-white);
}

.rs-testimonial-three.has-theme-blue-two .rs-testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--rs-theme-yellow);
  border-color: var(--rs-theme-yellow);
}

.rs-testimonial-three.has-theme-blue-two .rs-testimonial-pagination .swiper-pagination-bullet:hover {
  background: var(--rs-theme-yellow);
  border-color: var(--rs-theme-yellow);
}

.rs-testimonial-three.has-theme-blue-two .rs-testimonial-icon svg path {
  fill: var(--rs-theme-yellow);
}

/*----------------------------------------*/
/*  4.41 text slide css
/*----------------------------------------*/
.rs-text-slide-one {
  overflow-x: clip;
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .rs-text-slide-one {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 480px) {
  .rs-text-slide-one {
    padding-bottom: 60px;
  }
}

.rs-text-slide-one .rs-text-slide-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.rs-text-slide-one .rs-text-slide-inner {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 0px 40px;
}

.rs-text-slide-one .rs-text-slide-item {
  display: inline-flex;
  align-items: center;
  gap: 0px 30px;
}

.rs-text-slide-one .rs-text-slide-item:nth-child(2n) .rs-text-slide-title {
  color: var(--rs-theme-yellow);
}

.rs-text-slide-one .rs-text-slide-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rs-title-tertiary);
  font-size: 70px;
  text-transform: uppercase;
  line-height: 0.9;
}

@media only screen and (max-width: 1199px) {
  .rs-text-slide-one .rs-text-slide-title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-text-slide-one .rs-text-slide-title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-text-slide-one .rs-text-slide-title {
    font-size: 40px;
  }
}

.rs-text-slide-one .rs-text-slide-thumb img {
  width: 60px;
}

.rs-text-slide-one.has-section-space {
  padding-top: 120px;
  padding-bottom: 60px;
}

@media only screen and (max-width: 1199px) {
  .rs-text-slide-one.has-section-space {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-text-slide-one.has-section-space {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.rs-text-slide-one.has-theme-green {
  background: var(--rs-theme-green);
}

.rs-text-slide-one.has-theme-green .rs-text-slide-title {
  color: var(--rs-white);
}

.rs-text-slide-one.has-theme-red .rs-text-slide-item:nth-child(2n) .rs-text-slide-title {
  color: var(--rs-theme-red);
}

.rs-text-slide-one.has-theme-red-two {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .rs-text-slide-one.has-theme-red-two {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-text-slide-one.has-theme-red-two {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.rs-text-slide-one.has-theme-red-two .rs-text-slide-title {
  color: var(--rs-title-primary);
}

.rs-text-slide-one.has-theme-red-two .rs-text-slide-item:nth-child(2n) .rs-text-slide-title {
  color: var(--rs-title-primary);
}

.rs-text-slide-one.has-theme-red-two .rs-text-slide-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -60px;
  left: 0;
  background-position: bottom right;
  background-repeat: no-repeat;
  opacity: 0.5;
}

/*----------------------------------------*/
/*  4.42 thumb css
/*----------------------------------------*/
.rs-thumb-one {
  padding-top: 40px;
  padding-bottom: 50px;
}

.rs-thumb-one .rs-thumb img {
  width: 100%;
  border-radius: 12px;
}

/*----------------------------------------*/
/*  4.43 tuition
/*----------------------------------------*/
.rs-tuition-one {
  position: relative;
  z-index: 1;
}

.rs-tuition-one .rs-tuition-shape-one {
  position: absolute;
  top: 130px;
  inset-inline-end: 80px;
  animation: rs-rotate-anim 3s linear 0s infinite alternate;
}

@media only screen and (max-width: 1600px) {
  .rs-tuition-one .rs-tuition-shape-one {
    display: none;
  }
}

.rs-tuition-one .rs-tuition-shape-two {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0px;
}

@media only screen and (max-width: 1199px) {
  .rs-tuition-one .rs-tuition-shape-two {
    display: none;
  }
}

.rs-tuition-one .section-desc {
  margin-bottom: 20px;
}

.rs-tuition-one .rs-tuition-thumb img {
  width: 100%;
  border-radius: 20px;
}

.rs-tuition-one .rs-tuition-wrapper {
  display: grid;
  grid-template-columns: 420px auto;
  gap: 30px 80px;
}

@media only screen and (max-width: 1600px) {
  .rs-tuition-one .rs-tuition-wrapper {
    gap: 30px 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-tuition-one .rs-tuition-wrapper {
    grid-template-columns: 280px auto;
  }
}

@media only screen and (max-width: 991px) {
  .rs-tuition-one .rs-tuition-wrapper {
    grid-template-columns: auto;
  }
}

.rs-tuition-one .rs-tuition-item {
  background: var(--rs-white);
  border-radius: 12px;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-inline-start: 35px;
  padding-inline-end: 35px;
}

@media only screen and (max-width: 767px) {
  .rs-tuition-one .rs-tuition-item:nth-child(3) {
    order: 4;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-tuition-one .rs-tuition-item {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
  }
}

.rs-tuition-one .rs-tuition-item.has-theme-red {
  background: var(--rs-theme-red-two);
}

.rs-tuition-one .rs-tuition-item.has-theme-red .rs-tuition-title {
  color: var(--rs-white);
  border-color: rgba(255, 255, 255, 0.1);
}

.rs-tuition-one .rs-tuition-item.has-theme-red .rs-tuition-inner-title {
  color: var(--rs-white);
}

.rs-tuition-one .rs-tuition-item.has-theme-red .rs-tuition-label {
  color: rgba(255, 255, 255, 0.8);
}

.rs-tuition-one .rs-tuition-item.has-theme-red .rs-tuition-price {
  color: rgba(255, 255, 255, 0.8);
}

.rs-tuition-one .rs-tuition-item.has-theme-cyan {
  background: var(--rs-theme-cyan);
}

.rs-tuition-one .rs-tuition-item.has-theme-cyan .rs-tuition-title {
  color: var(--rs-white);
  border-color: rgba(255, 255, 255, 0.1);
}

.rs-tuition-one .rs-tuition-item.has-theme-cyan .rs-tuition-inner-title {
  color: var(--rs-white);
}

.rs-tuition-one .rs-tuition-item.has-theme-cyan .rs-tuition-label {
  color: rgba(255, 255, 255, 0.8);
}

.rs-tuition-one .rs-tuition-item.has-theme-cyan .rs-tuition-price {
  color: rgba(255, 255, 255, 0.8);
}

.rs-tuition-one .rs-tuition-item.has-theme-blue-two {
  background: var(--rs-theme-blue-two);
}

.rs-tuition-one .rs-tuition-item.has-theme-blue-two .rs-tuition-title {
  color: var(--rs-white);
  border-color: rgba(255, 255, 255, 0.1);
}

.rs-tuition-one .rs-tuition-item.has-theme-blue-two .rs-tuition-inner-title {
  color: var(--rs-white);
}

.rs-tuition-one .rs-tuition-item.has-theme-blue-two .rs-tuition-label {
  color: rgba(255, 255, 255, 0.8);
}

.rs-tuition-one .rs-tuition-item.has-theme-blue-two .rs-tuition-price {
  color: rgba(255, 255, 255, 0.8);
}

.rs-tuition-one .rs-tuition-info-item:first-child {
  margin-top: 27px;
  margin-bottom: 22px;
}

.rs-tuition-one .rs-tuition-list .rs-tuition-list-item {
  list-style: none;
}

.rs-tuition-one .rs-tuition-title {
  display: inline-block;
  border-bottom: 1px solid var(--rs-border-primary);
}

.rs-tuition-one .rs-tuition-inner-title {
  font-size: 17px;
  margin-bottom: 6px;
}

.rs-tuition-one .rs-tuition-label {
  font-size: 13px;
}

.rs-tuition-one .rs-tuition-price {
  font-size: 13px;
}

.rs-tuition-one .rs-tuition-content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .rs-tuition-one .rs-tuition-content-wrapper {
    display: flex;
    flex-direction: column;
  }
}

.rs-tuition-one .rs-tuition-btn {
  margin-bottom: 50px;
}

.rs-tuition-one.has-theme-green-two .rs-tuition-shape {
  position: absolute;
  bottom: 0;
  inset-inline-end: 110px;
}

@media only screen and (max-width: 1800px) {
  .rs-tuition-one.has-theme-green-two .rs-tuition-shape {
    inset-inline-end: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-tuition-one.has-theme-green-two .rs-tuition-shape {
    inset-inline-end: 0px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-tuition-one.has-theme-green-two .rs-tuition-shape {
    display: none;
  }
}

.rs-tuition-one.has-theme-green-two .rs-tuition-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-tuition-one.has-theme-green-two .rs-tuition-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-tuition-one.has-theme-green-two .rs-tuition-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-tuition-one.has-theme-green-two .rs-tuition-item {
  background: var(--rs-bg-primary);
}

.rs-tuition-one.has-theme-green-two .rs-tuition-item.has-theme-green-two {
  background: var(--rs-theme-green-two);
}

.rs-tuition-one.has-theme-green-two .rs-tuition-item.has-theme-green-two .rs-tuition-title {
  color: var(--rs-white);
  border-color: rgba(255, 255, 255, 0.1);
}

.rs-tuition-one.has-theme-green-two .rs-tuition-item.has-theme-green-two .rs-tuition-inner-title {
  color: var(--rs-white);
}

.rs-tuition-one.has-theme-green-two .rs-tuition-item.has-theme-green-two .rs-tuition-label {
  color: rgba(255, 255, 255, 0.8);
}

.rs-tuition-one.has-theme-green-two .rs-tuition-item.has-theme-green-two .rs-tuition-price {
  color: rgba(255, 255, 255, 0.8);
}

.rs-tuition-two .rs-tuition-wrapper {
  background: var(--rs-white);
  border-radius: 12px;
  padding: 30px;
  display: grid;
  grid-template-columns: 525px auto;
  gap: 30px 50px;
  align-items: center;
}

@media only screen and (max-width: 1366px) {
  .rs-tuition-two .rs-tuition-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-tuition-two .rs-tuition-wrapper {
    align-items: start;
  }
}

@media only screen and (max-width: 991px) {
  .rs-tuition-two .rs-tuition-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 575px) {
  .rs-tuition-two .rs-tuition-wrapper {
    padding: 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-tuition-two .rs-tuition-thumb {
    position: sticky;
    top: 110px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-tuition-two .rs-tuition-thumb {
    position: relative;
    top: unset;
  }
}

.rs-tuition-two .rs-tuition-thumb img {
  width: 100%;
  border-radius: 8px;
}

.rs-tuition-two .rs-tuition-desc {
  margin-top: 20px;
  margin-bottom: 30px;
  max-width: 622px;
}

.rs-tuition-three .rs-tuition-tab-wrapper .nav-pills {
  display: flex;
  justify-content: start;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 35px;
}

@media only screen and (max-width: 991px) {
  .rs-tuition-three .rs-tuition-tab-wrapper .nav-pills {
    justify-content: center;
    gap: 10px;
  }
}

.rs-tuition-three .rs-tuition-tab-wrapper .nav-link {
  background: var(--rs-white);
  font-weight: 500;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border-radius: 0px;
  border-bottom: 2px solid var(--rs-white);
  color: var(--rs-text-primary);
  font-size: 17px;
  transition: all 0.3s ease-in-out;
  padding: 15px 20px;
}

@media only screen and (max-width: 991px) {
  .rs-tuition-three .rs-tuition-tab-wrapper .nav-link {
    padding: 15px 15px;
    font-size: 15px;
  }
}

.rs-tuition-three .rs-tuition-tab-wrapper .nav-link.active {
  color: var(--rs-theme-blue);
  border-color: var(--rs-theme-blue);
}

.rs-tuition-three .rs-tuition-tab-wrapper .nav-link.active .rs-tuition-tab-icon svg path {
  fill: var(--rs-theme-blue);
}

.rs-tuition-three .rs-tuition-tab-wrapper .nav-link:hover {
  color: var(--rs-theme-blue);
  border-color: var(--rs-theme-blue);
}

.rs-tuition-three .rs-tuition-tab-wrapper .nav-link:hover .rs-tuition-tab-icon svg path {
  fill: var(--rs-theme-blue);
}

.rs-tuition-three .rs-tuition-desc {
  margin-top: 20px;
}

.rs-tuition-three .rs-tuition-tab-icon svg path {
  transition: 0.3s;
}

.rs-tuition-three .rs-tuition-tab-anim .tab-pane.active .rs-tuition-table-item {
  -webkit-animation: slide-down 5s ease-out;
  animation: slide-down 5s ease-out;
}

.rs-tuition-three .rs-tuition-table-inner {
  background-color: var(--rs-white);
  border: 1px solid var(--rs-border-primary);
  width: max-content;
  min-width: 100%;
}

.rs-tuition-three .rs-tuition-table-inner thead {
  background-color: var(--rs-theme-blue);
  color: var(--rs-white);
}

.rs-tuition-three .rs-tuition-table-inner th {
  padding: 15px 24px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--rs-ff-title);
  border-inline-end: 1px solid var(--rs-border-tertiary);
}

@media only screen and (max-width: 1199px) {
  .rs-tuition-three .rs-tuition-table-inner th {
    padding: 15px 15px;
  }
}

.rs-tuition-three .rs-tuition-table-inner td {
  padding: 15px 24px;
  vertical-align: middle;
  border: 1px solid var(--rs-border-primary);
  font-size: 15px;
}

@media only screen and (max-width: 1199px) {
  .rs-tuition-three .rs-tuition-table-inner td {
    padding: 15px 15px;
  }
}

.rs-tuition-three .rs-tuition-table-inner td a:hover {
  color: var(--rs-theme-blue);
}

/*----------------------------------------*/
/*  4.44 video css
/*----------------------------------------*/
.rs-video-one {
  position: relative;
  z-index: 2;
  padding-top: 170px;
  padding-bottom: 170px;
  overflow-x: clip;
}

@media only screen and (max-width: 1199px) {
  .rs-video-one {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-video-one {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.rs-video-one .rs-video-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 12px;
}

.rs-video-one .has-bg-gradient.rs-play-btn {
  background: radial-gradient(at center center, rgba(71, 74, 74, 0.1215686275) 0%, rgba(226, 237, 237, 0.1215686275) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(21px);
  color: var(--rs-white);
}

.rs-video-one .has-bg-gradient.rs-play-btn::before {
  content: none;
}

.rs-video-two {
  overflow-x: hidden;
}

.rs-video-two .rs-video-wrapper {
  position: relative;
  z-index: 1;
  height: 458px;
}

@media only screen and (max-width: 1366px) {
  .rs-video-two .rs-video-wrapper {
    height: 400px;
  }
}

@media only screen and (max-width: 991px) {
  .rs-video-two .rs-video-wrapper {
    height: 350px;
  }
}

.rs-video-two .rs-video-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 12px;
}

.rs-video-two .rs-video-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(16, 14, 18, 0) 29.69%, #100E12 100%);
  border-radius: 12px;
}

.rs-video-two .rs-video-content-wrapper {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.rs-video-two .rs-video-title {
  color: var(--rs-white);
  margin-top: 20px;
}

@media only screen and (max-width: 575px) {
  .rs-video-two .rs-video-title {
    font-size: 18px;
  }
}

/*----------------------------------------*/
/*  4.45 why choose css
/*----------------------------------------*/
.rs-why-choose-one {
  position: relative;
}

.rs-why-choose-one .rs-why-choose-shape {
  position: absolute;
  top: 260px;
  inset-inline-end: 60px;
}

@media only screen and (max-width: 1366px) {
  .rs-why-choose-one .rs-why-choose-shape {
    top: 230px;
    inset-inline-end: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-why-choose-one .rs-why-choose-shape {
    top: 180px;
    inset-inline-end: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-why-choose-one .rs-why-choose-shape {
    display: none;
  }
}

.rs-why-choose-one .rs-why-choose-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .rs-why-choose-one .rs-why-choose-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-why-choose-one .rs-why-choose-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rs-why-choose-one .rs-why-choose-item {
  background: var(--rs-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  padding-bottom: 40px;
  padding-inline: 50px;
  text-align: center;
  border-radius: 12px;
  margin-top: 50px;
}

@media only screen and (max-width: 1600px) {
  .rs-why-choose-one .rs-why-choose-item {
    padding-bottom: 30px;
    padding-inline: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .rs-why-choose-one .rs-why-choose-item {
    padding-bottom: 20px;
    padding-inline: 30px;
  }
}

.rs-why-choose-one .rs-why-choose-item.has-theme-red {
  background: var(--rs-bg-black);
}

.rs-why-choose-one .rs-why-choose-item.has-theme-red .rs-why-choose-icon {
  background: var(--rs-theme-red);
}

.rs-why-choose-one .rs-why-choose-item.has-theme-red .rs-why-choose-icon svg path {
  fill: var(--rs-white);
}

.rs-why-choose-one .rs-why-choose-item.has-theme-red .rs-why-choose-title {
  color: var(--rs-white);
}

.rs-why-choose-one .rs-why-choose-item.has-theme-red .rs-why-choose-desc {
  color: rgba(255, 255, 255, 0.76);
}

.rs-why-choose-one .rs-why-choose-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  background: var(--rs-white);
  margin: -50px auto 35px;
}

@media only screen and (max-width: 1199px) {
  .rs-why-choose-one .rs-why-choose-icon {
    width: 80px;
    height: 80px;
    margin: -50px auto 25px;
  }
}

.rs-why-choose-one .rs-why-choose-icon svg {
  width: 50px;
  height: 50px;
}

@media only screen and (max-width: 1199px) {
  .rs-why-choose-one .rs-why-choose-icon svg {
    width: 40px;
    height: 40px;
  }
}

.rs-why-choose-one .rs-why-choose-icon svg path {
  fill: var(--rs-theme-red);
}

.rs-why-choose-one .rs-why-choose-title {
  margin-bottom: 10px;
}

.rs-why-choose-one.has-theme-cyan .rs-why-choose-icon {
  border-radius: 100px;
  width: 110px;
  height: 110px;
}

@media only screen and (max-width: 1199px) {
  .rs-why-choose-one.has-theme-cyan .rs-why-choose-icon {
    width: 80px;
    height: 80px;
  }
}

.rs-why-choose-one.has-theme-cyan .rs-why-choose-icon svg path {
  fill: var(--rs-black);
}

.rs-why-choose-one.has-theme-cyan .rs-why-choose-item {
  padding-bottom: 45px;
  padding-inline: 45px;
  margin-top: 45px;
}

@media only screen and (max-width: 1600px) {
  .rs-why-choose-one.has-theme-cyan .rs-why-choose-item {
    padding-bottom: 25px;
    padding-inline: 30px;
  }
}

.rs-why-choose-one.has-theme-blue .rs-why-choose-title {
  color: var(--rs-title-tertiary);
}

.rs-why-choose-one.has-theme-blue .rs-why-choose-item {
  padding-inline: 30px;
}

@media only screen and (max-width: 1600px) {
  .rs-why-choose-one.has-theme-blue .rs-why-choose-item {
    padding-inline: 20px;
  }
}

.rs-why-choose-one.has-theme-blue .rs-why-choose-icon {
  border-radius: 100px;
  width: 105px;
  height: 105px;
}

@media only screen and (max-width: 1600px) {
  .rs-why-choose-one.has-theme-blue .rs-why-choose-icon {
    width: 90px;
    height: 90px;
  }
}

.rs-why-choose-one.has-theme-blue .rs-why-choose-icon svg path {
  fill: var(--rs-theme-blue);
}

.rs-why-choose-one.has-theme-blue.rs-why-choose-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
  .rs-why-choose-one.has-theme-blue.rs-why-choose-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .rs-why-choose-one.has-theme-blue.rs-why-choose-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*----------------------------------------*/
/*  3.3.2 Shop Style
/*----------------------------------------*/
.product-details-wrapper.shop-details {
  margin-inline-start: 40px;
}

@media only screen and (max-width: 1199px) {
  .product-details-wrapper.shop-details {
    margin-inline-start: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .product-details-wrapper.shop-details {
    margin-inline-start: 0px;
  }
}

.rs-shop-meta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.rs-shorting-select .nice-select {
  height: 52px;
  display: flex;
  align-items: center;
  background: transparent;
  min-width: 220px;
}

.rs-shorting-select .nice-select::after {
  font-size: 18px;
}

.rs-shorting-select .nice-select .list {
  margin-top: 0;
  border-radius: 0 0 4px 4px;
  width: 100%;
  padding-bottom: 5px;
  padding-top: 5px;
}

.rs-shorting-select .nice-select .list .option:hover {
  color: var(--rs-theme-primary);
}

.rs-product-item {
  background: var(--rs-white);
  padding-top: 12px;
  padding-inline: 12px;
  padding-bottom: 22px;
  border-radius: 6px;
}

.rs-product-item:hover .rs-product-thumb::before {
  opacity: 1;
  visibility: visible;
}

.rs-product-item:hover .rs-product-thumb img {
  transform: scale(1.1);
}

.rs-product-item:hover .rs-product-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.rs-product-tag {
  font-size: 14px;
}

.rs-product-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 6px;
}

.rs-product-thumb img {
  width: 100%;
  transition: all 0.3s ease-out 0s;
}

.rs-product-btn {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  bottom: 0px;
  transition: 0.5s;
  transform: translateY(40px);
  width: 100%;
  z-index: 1;
}

.rs-product-btn .product-btn {
  background: var(--rs-theme-yellow);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-inline-end: 30px;
  padding-inline-start: 30px;
  font-weight: 500;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
  color: var(--rs-title-primary);
  z-index: 1;
}

.rs-product-btn .product-btn:hover {
  background: var(--rs-theme-blue);
  color: var(--rs-white);
}

.rs-product-content {
  text-align: center;
  margin-top: 15px;
}

.rs-product-title {
  margin-bottom: 5px;
  margin-top: 3px;
}

.rs-product-title a:hover {
  color: var(--rs-theme-yellow);
}

.rs-product-price .rs-current-price {
  font-size: 16px;
  color: var(--rs-title-primary);
}

.rs-product-price .rs-product-discount-price {
  color: #5d5d5d;
  opacity: 0.5;
}

.rs-product-badge {
  position: absolute;
  inset-inline-start: 10px;
  top: 10px;
  z-index: 1;
}

.rs-product-badge span {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  text-transform: uppercase;
  color: var(--rs-white);
  border-radius: 4px;
}

.rs-product-badge span.new {
  background: #5EA9B4;
}

.rs-product-badge span.hot {
  background: #E34A36;
}

.rs-product-badge span.off {
  background: #FECE00;
  color: var(--rs-title-primary);
}

.item-details-reviews-wrapper {
  margin-bottom: 50px;
}

.item-details-wrapper {
  margin-inline-start: 50px;
}

@media only screen and (max-width: 1199px) {
  .item-details-wrapper {
    margin-inline-start: 0px;
  }
}

.item-details-active {
  overflow: hidden;
}

.item-details-thumb {
  position: relative;
  width: 186px;
  flex: 0 0 auto;
  border-radius: 4px;
  width: 100%;
  flex: 0 0 auto;
  text-align: center;
  position: relative;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  .item-details-thumb {
    margin: 0 auto 20px;
  }
}

.item-details-thumb img {
  width: 100%;
  border-radius: 4px;
}

.item-details-nav .swiper-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.item-details-nav .swiper-wrapper .custom-button {
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
  width: 115px;
  height: 115px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: transparent;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.item-details-nav .swiper-wrapper .custom-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-details-nav .swiper-wrapper .swiper-slide {
  width: auto !important;
}

.item-details-nav .swiper-slide-thumb-active .custom-button {
  background: var(--rs-white);
  border-color: var(--rs-theme-yellow);
}

.item-details-rating-count span {
  font-size: 14px;
}

.item-details-price {
  display: flex;
  align-items: end;
  gap: 5px;
}

.item-details-old-price {
  font-size: 16px;
  color: var(--rs-text-primary);
  text-decoration-line: line-through;
}

.item-details-current-price {
  font-size: 24px;
}

.item-details-count-wrap {
  border-bottom: 1px solid rgba(62, 62, 62, 0.1);
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.item-details-action .rs-btn {
  background: var(--rs-theme-blue);
  display: flex;
  gap: 10px;
  height: 48px;
}

.item-details-action .rs-btn:hover {
  background: var(--rs-theme-yellow);
}

.item-details-more a {
  font-size: 16px;
}

.item-details-more a:hover {
  color: var(--rs-theme-primary);
}

.item-details-tags a {
  font-size: 16px;
}

.item-details-tags a:hover {
  color: var(--rs-theme-primary);
}

@media only screen and (max-width: 991px) {
  .item-details-title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .item-details-title {
    font-size: 26px;
  }
}

.product-rating {
  position: relative;
  padding-inline-end: 10px;
  margin-inline-end: 10px;
}

.product-rating::before {
  position: absolute;
  content: "";
  inset-inline-end: 0;
  top: 0px;
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.1);
}

.product-rating i {
  font-size: 14px;
}

.product-information-tab .nav-link {
  background: var(--rs-white);
  color: var(--rs-title-primary);
  padding: 0 40px;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  border-radius: 0px;
  height: 60px;
  transition: 0.3s;
}

.product-information-tab .nav-link:hover {
  background-color: var(--rs-theme-yellow);
  color: var(--rs-title-primary);
}

@media only screen and (max-width: 575px) {
  .product-information-tab .nav-link {
    padding: 0 20px;
    height: 50px;
    font-size: 16px;
  }
}

.product-information-tab .nav-link.active {
  background-color: var(--rs-theme-blue);
  border-color: var(--rs-theme-blue);
  color: var(--rs-white);
}

.product-information-tab .has-border {
  border-bottom: 1px solid var(--rs-border-primary);
}

.product-review-form {
  background: var(--rs-white);
  padding: 30px;
  border-radius: 12px;
}

.product-review-avater {
  display: flex;
  align-items: center;
  gap: 13px;
}

.product-review-avater-thumb img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.product-review-item:not(:last-child) {
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.product-review-input input {
  height: 60px;
}

.product-review-input.is-textarea textarea {
  height: 180px;
}

.product-review-btn .rs-btn:hover {
  background: var(--rs-theme-yellow);
}

.product-details-social .product-details-social-title {
  font-size: 15px;
  color: var(--rs-title-primary);
}

.product-details-social a {
  background: transparent;
  border: 1px solid var(--rs-border-primary);
  border-radius: 50%;
}

.product-details-social a svg path {
  fill: var(--rs-black);
}

/*----------------------------------------*/
/*  3.3.1 Checkout Style
/*----------------------------------------*/
.checkout-verify-item button {
  font-weight: 600;
}

.coupon-info .rs-btn:hover {
  background: rgb(255, 92, 0);
}

.checkout-verify-reveal {
  margin-bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  gap: 10px;
  border-top: 3px solid var(--rs-theme-primary);
  color: #515151;
  padding-top: 16px;
  padding-inline-start: 50px;
  padding-bottom: 16px;
  padding-inline-end: 16px;
  position: relative;
  flex-wrap: wrap;
}

.checkout-verify-reveal .checkout-login-form-reveal-btn:hover {
  color: var(--rs-theme-yellow);
}

.checkout-verify-reveal::before {
  content: "\ed53";
  inset-inline-start: 15px;
  top: 13px;
  position: absolute;
  color: var(--rs-theme-yellow);
  font-family: var(--rs-ff-remixicon);
  font-weight: 700;
}

.coupon-content {
  display: none;
  margin-top: 14px;
  padding: 30px 30px;
  background-color: var(--rs-white);
  border: 1px solid rgba(54, 54, 54, 0.1);
  border-radius: 5px;
}

.coupon-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.checkout-coupon-form input {
  margin-bottom: 20px;
  height: 60px;
  border-radius: 2px;
}

.checkout-form {
  margin-bottom: 20px;
}

.checkout-form input {
  height: 60px;
  border-radius: 0;
  border-radius: 2px;
}

.checkout-form label {
  font-weight: 500;
  margin-bottom: 5px;
}

.checkout-form .required {
  color: var(--rs-theme-primary);
}

.checkout-bill-area {
  margin-top: 35px;
}

.checkout-bill-title {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1199px) {
  .checkout-bill-title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .checkout-bill-title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .checkout-bill-title {
    font-size: 24px;
  }
}

.checkout-bill-inner .checkout-input {
  margin-bottom: 20px;
}

.checkout-bill-inner .checkout-input input {
  height: 55px;
  border-radius: 0;
  border-radius: 2px;
}

.checkout-bill-inner .checkout-input label {
  margin-bottom: 5px;
  font-weight: 600;
}

.checkout-bill-inner .checkout-input span {
  color: var(--rs-theme-primary);
}

.checkout-bill-inner .checkout-input .nice-select {
  height: 50px;
  line-height: 48px;
  border-radius: 0;
  border: 1px solid var(--rs-border-primary);
  color: var(--rs-black);
  float: none;
  padding: 0 26px;
}

.checkout-bill-inner .checkout-input .nice-select .current {
  color: var(--rs-text-primary);
}

.checkout-bill-inner .checkout-input .nice-select .list {
  width: 100%;
}

.checkout-bill-inner .checkout-input .nice-select .list li:hover {
  color: var(--rs-theme-primary);
}

.checkout-bill-inner textarea {
  height: 70px;
  background: var(--rs-white);
  border: 1px solid var(--rs-border-primary);
  border-radius: 2px;
}

.checkout-place-total ul {
  border: 1px solid var(--rs-border-primary);
}

.checkout-place-total ul li {
  list-style: none;
  color: var(--rs-black);
  padding: 10px 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .checkout-place-total ul li {
    padding: 10px 20px;
  }
}

@media only screen and (max-width: 480px) {
  .checkout-place-total ul li {
    padding: 10px 15px;
  }
}

.checkout-place-total ul li:not(:last-child) {
  border-bottom: 1px solid var(--rs-border-primary);
}

.checkout-place-total ul li:nth-child(2) {
  padding: 20px 30px;
  color: var(--rs-text-primary);
}

@media only screen and (max-width: 767px) {
  .checkout-place-total ul li:nth-child(2) {
    padding: 10px 20px;
  }
}

@media only screen and (max-width: 480px) {
  .checkout-place-total ul li:nth-child(2) {
    padding: 10px 15px;
  }
}

.checkout-place-total .rs-btn:hover {
  background: var(--rs-theme-yellow);
  color: var(--rs-title-primary);
}

@media only screen and (max-width: 1199px) {
  .checkout-place-total .checkout-place-order-title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .checkout-place-total .checkout-place-order-title {
    font-size: 26px;
  }
}

/*# sourceMappingURL=../maps/main.css.map */



.logo-white-bg {
  filter: brightness(0) invert(1);
}

/* 
@media (min-width: 1200px) { 

  .header-menu{
  margin-left: 145px;
  }

} */



.main-menu>ul {
  align-items: center;
}


.rotary-new-header {
  width: 100%;
  background: #fff;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
}

/* Top Strip */
.rotary-top-strip {
  background: linear-gradient(90deg, #001d58, #003d9d);
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  align-items: center;
  padding: 0 42px;
  color: #fff;
}

.rotary-top-left {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 600;
}

.rotary-top-left i {
  font-size: 24px;
}

.rotary-top-center {
  display: flex;
  justify-content: center;
}

.rotary-search-box {
  width: 390px;
  height: 32px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.rotary-search-box input {
  width: 100%;
  border: none;
  outline: none;
  padding: 0 24px;
  font-size: 16px;
}

.rotary-search-box button {
  width: 60px;
  border: none;
  background: #fff;
  color: #001d58;
  font-size: 20px;
  cursor: pointer;
}

.rotary-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.follow-us {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.follow-us a {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #002970;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
}

.login-btn {
  height: 38px;
  padding: 0 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.login-btn:hover {
  color: #fff;
  text-decoration: none;
}

.award-login {
  background: #ff5b0a;
  border-color: #ff5b0a;
}

/* Main Banner */
.rotary-main-banner {
  position: relative;
  /* min-height: 560px; */
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 52%, #004bd5 52%, #003bb3 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(170px, 0.42fr) minmax(0, 1.08fr);
  align-items: center;
  padding: 18px 70px 100px;
}

.rotary-main-banner::before {
  content: "";
  position: absolute;
  left: -100px;
  top: 0;
  width: 58%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 61, 157, 0.08), transparent 35%),
    linear-gradient(135deg, rgba(0, 61, 157, 0.08), transparent 55%);
  border-bottom-right-radius: 60%;
}

.rotary-main-banner::after {
  content: "";
  position: absolute;
  left: 44%;
  top: 0;
  width: 160px;
  height: 100%;
  background: #fff;
  border-top-right-radius: 70%;
  border-bottom-right-radius: 70%;
  z-index: 1;
}

.rotary-banner-left,
.rotary-theme-block,
.rotary-leader-wrap {
  position: relative;
  z-index: 2;
}

.rotary-banner-left {
  padding-right: 18px;
}

.rotary-logo-block img {
  max-width: 290px;
  width: 100%;
}

.rotary-tagline {
  margin-top: 28px;
  padding-left: 5px;
}

.rotary-tagline span {
  width: 65px;
  height: 4px;
  background: #ff5b0a;
  display: block;
  margin-bottom: 18px;
}

.rotary-tagline h5 {
  color: #001d58;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.rotary-tagline p {
  color: #333;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.rotary-theme-block {
  text-align: center;
  border-left: 1px solid rgba(0, 0, 0, 0.25);
  padding-left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotary-theme-block img {
  max-width: 240px;
  width: 100%;
}

.rotary-leader-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rotary-leader-card {
  background: #fff;
  border-radius: 14px;
  padding: 48px 22px 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.leader-top-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  top: -31px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 5px solid #fff;
}

.blue-icon {
  background: #0056d8;
}

.orange-icon {
  background: #ff5b0a;
}

.green-icon {
  background: #4c9d0b;
}

.rotary-leader-card h4 {
  color: #001d58;
  font-size: 20px;
  line-height: 1.35;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 20px;
}

.rotary-leader-card img {
  /* width: 100%;  */
  /* height: 235px; */
  /* object-fit: cover; */
  border-radius: 7px;
}

.leader-line {
  width: 46px;
  height: 3px;
  background: #ff5b0a;
  margin: 16px auto 12px;
}

.rotary-leader-card h5 {
  color: #001d58;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}

/* Navigation */
.rotary-main-nav {
  position: relative;
  z-index: 9;
  margin: -72px 18px 0;
  background: #001f5d;
  border-radius: 10px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  border-bottom: 5px solid #ff5b0a;
}

.rotary-main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 125px repeat(13, 1fr);
}

.rotary-main-nav li {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.rotary-main-nav li:last-child {
  border-right: none;
}

.rotary-main-nav a {
  min-height: 0px;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  transition: 0.3s ease;
}

.rotary-main-nav a i {
  font-size: 30px;
}

.rotary-main-nav li.active {
  background: #ff5b0a;
  border-radius: 8px 8px 0 0;
  margin-top: -4px;
}

.rotary-main-nav li.active::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 17px solid #ff5b0a;
}

.rotary-main-nav li:hover a {
  background: #ff5b0a;
}

/* Feature Strip */
.rotary-feature-strip {
  max-width: 1780px;
  margin: 42px auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 26px 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
}

.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px;
  width: 1px;
  height: 70px;
  background: #d9d9d9;
}

.feature-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.feature-icon.blue {
  background: #0047bd;
}

.feature-icon.orange {
  background: #ff5b0a;
}

.feature-icon.green {
  background: #4c9d0b;
}

.feature-icon.purple {
  background: #7c3bd8;
}

.feature-item h4 {
  margin: 0 0 8px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 900;
  color: #0047bd;
}

.feature-item:nth-child(2) h4 {
  color: #ff5b0a;
}

.feature-item:nth-child(3) h4 {
  color: #4c9d0b;
}

.feature-item:nth-child(4) h4 {
  color: #7c3bd8;
}

.feature-item p {
  margin: 0;
  color: #333;
  line-height: 1.5;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 1399px) {
  .rotary-main-banner {
    padding-left: 35px;
    padding-right: 35px;
  }

  .rotary-main-nav ul {
    grid-template-columns: repeat(7, 1fr);
  }

  .rotary-main-nav a {
    min-height: 100px;
  }
}

@media (max-width: 1199px) {
  .rotary-top-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    text-align: center;
  }

  .rotary-top-left,
  .rotary-top-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .rotary-main-banner {
    grid-template-columns: 1fr;
    background: #fff;
    gap: 35px;
    text-align: center;
  }

  .rotary-main-banner::after {
    display: none;
  }

  .rotary-theme-block {
    border-left: none;
    padding-left: 0;
  }

  .rotary-leader-wrap {
    max-width: 850px;
    margin: auto;
  }

  .rotary-feature-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .rotary-search-box {
    width: 100%;
  }

  .rotary-top-right {
    gap: 12px;
  }

  .rotary-main-banner {
    padding: 35px 18px 100px;
  }

  .rotary-leader-wrap {
    grid-template-columns: 1fr;
  }

  .rotary-main-nav ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .rotary-main-nav {
    margin-left: 10px;
    margin-right: 10px;
  }

  .rotary-feature-strip {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .feature-item:not(:last-child)::after {
    display: none;
  }
}

/* Reference header proportions */
@media (min-width: 1200px) {
  .rotary-top-strip {
    min-height: 84px;
    padding: 0 38px;
    grid-template-columns: minmax(310px, 1fr) minmax(300px, 345px) minmax(560px, 1.25fr);
  }

  .rotary-search-box {
    height: 46px;
  }

  .rotary-top-left,
  .follow-us,
  .login-btn {
    font-size: 16px;
  }

  .follow-us a {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .login-btn {
    height: 50px;
    padding: 0 18px;
  }

  .rotary-main-banner {
    /* min-height: 570px; */
    /* height: 570px; */
    grid-template-columns: minmax(0, 36fr) minmax(220px, 20fr) minmax(0, 44fr);
    padding: 44px 70px 108px;
  }

  .rotary-main-banner::after {
    left: 49%;
    width: 150px;
  }

  .rotary-logo-block img {
    max-width: 290px;
  }

  .rotary-tagline {
    margin-top: 10px;
  }

  .rotary-theme-block img {
    max-width: 236px;
  }

  .rotary-leader-wrap {
    gap: 20px;
  }

  .rotary-leader-card {
    /* height: 190px; */
    /* min-height: 382px; */
    padding: 18px 16px 8px;
    border-radius: 14px;
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
  }

  .leader-top-icon {
    width: 58px;
    height: 58px;
    top: -29px;
  }

  .rotary-leader-card h4,
  .rotary-leader-card h5,
  .feature-item h4 {
    font-family: Arial, sans-serif;
  }

  .rotary-leader-card h4 {
    /* min-height: 34px; */
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.1;
  }

  .rotary-leader-card img {
    height: 94px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }

  /* .rotary-leader-card:nth-child(1) img {
        object-position: 14% center;
    } */

  .rotary-leader-card:nth-child(2) img {
    object-position: 66% center;
  }

  /* .rotary-leader-card:nth-child(3) img {
        content: url("../imgs/rotary-banner-1.jpg");
        object-position: 88% center;
    } */

  .leader-line {
    margin: 11px auto 8px;
  }

  .rotary-leader-card h5 {
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .rotary-main-nav {
    margin-top: -72px;
    border-bottom-width: 4px;
  }

  .rotary-main-nav li {
    flex-basis: 112px;
  }

  .rotary-main-nav a {
    min-height: 134px;
    padding: 14px 8px;
    font-size: 12px;
  }

  .rotary-main-nav a i {
    font-size: 14px;
  }

  .rotary-feature-strip {
    margin-top: 34px;
    min-height: 132px;
    padding: 22px 45px;
  }
}

/* Rotary leadership messages */

.rotary-message-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.rotary-message-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  border-top: 4px solid #f7a81b;
  box-shadow: 0 12px 35px rgba(0, 45, 98, 0.1);
}

.rotary-message-author {
  padding: 24px 18px;
  color: #fff;
  text-align: center;
  background: linear-gradient(155deg, #0050a4, #002f6c);
}

.rotary-message-author img {
  width: 145px;
  height: 170px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 10px;
  background: #fff;
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.rotary-message-author h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.rotary-message-author span {
  color: #f7c65a;
  font-size: 13px;
  font-weight: 700;
}

.rotary-message-content {
  position: relative;
  padding: 30px 28px;
}

.rotary-message-content>i {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(0, 80, 164, 0.1);
  font-size: 48px;
}

.rotary-message-content h4 {
  position: relative;
  margin: 0 45px 16px 0;
  color: #002f6c;
  font-size: 22px;
  line-height: 1.25;
}

.rotary-message-content p {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.rotary-message-content p:last-child {
  margin-bottom: 0;
}

.rotary-message-content .rs-btn.is-transparent {
  margin-top: 8px;
  color: #fff;
  background: #0050a4;
  border-color: #0050a4;
}

.rotary-message-content .rs-btn.is-transparent .icon-box svg path {
  fill: #fff;
}

.rotary-message-content .rs-btn.is-transparent:hover {
  color: #fff;
  background: #003f82;
  border-color: #003f82;
}

.rotary-message-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 11px 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  background: #0050a4;
  border: 0;
  border-radius: 6px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.rotary-message-read-more:hover,
.rotary-message-read-more:focus-visible {
  color: #fff;
  background: #f7a81b;
  transform: translateY(-2px);
}

.rotary-message-read-more:focus-visible {
  outline: 3px solid rgba(247, 168, 27, 0.35);
  outline-offset: 3px;
}

/* Rotary recent events */
.rotary-events-section {
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%); */
}

.rotary-events-section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  top: -170px;
  right: -120px;
  border-radius: 50%;
  background: rgba(247, 168, 27, 0.1);
}

.rotary-events-heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.rotary-events-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  color: #f05a28;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.rotary-events-heading h2 {
  margin: 0 0 10px;
  color: #000000;
  font-size: 30px;
  line-height: 1.08;
}

.rotary-events-heading p {
  max-width: 650px;
  margin: 0;
  color: #5d6673;
  font-size: 16px;
}

.rotary-events-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  border-radius: 8px;
  background: #0050a4;
  font-size: 14px;
  font-weight: 700;
}

.rotary-events-all:hover {
  color: #fff;
  background: #f05a28;
}

.rotary-events-slider {
  position: relative;
}

.rotary-event-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 47, 108, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rotary-event-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(0, 47, 108, 0.17);
}

.rotary-event-image {
  position: relative;
  display: block;
  /* height: 270px; */
  overflow: hidden;
}

.rotary-event-image::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(0, 34, 78, 0.55));
}

.rotary-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rotary-event-card:hover .rotary-event-image img {
  transform: scale(1.06);
}

.rotary-event-tag {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  padding: 7px 13px;
  color: #fff;
  border-radius: 5px;
  background: #f05a28;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.rotary-event-body {
  padding: 22px 22px 24px;
}

.rotary-event-meta {
  margin-bottom: 9px;
  color: #697586;
  font-size: 13px;
}

.rotary-event-meta i {
  margin-right: 6px;
  color: #f05a28;
}

.rotary-event-body h3 {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 1.3;
}

.rotary-event-body h3 a {
  color: #002f6c;
}

.rotary-event-body h3 a:hover,
.rotary-event-link:hover {
  color: #f05a28;
}

.rotary-event-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0050a4;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rotary-events-pagination {
  margin-top: 32px;
  text-align: center;
}

.rotary-events-pagination .swiper-pagination-bullet-active {
  background: #f05a28;
}

@media (max-width: 1199px) {
  .rotary-message-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .rotary-events-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .rotary-events-heading h2 {
    font-size: 34px;
  }

  .rotary-event-image {
    height: 235px;
  }

  .rotary-message-card {
    grid-template-columns: 1fr;
  }

  .rotary-message-author img {
    width: 135px;
    height: 155px;
  }

  .rotary-message-content {
    padding: 25px 20px;
  }

  .rotary-message-content h4 {
    font-size: 19px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .rotary-top-strip {
    grid-template-columns: minmax(245px, 1fr) minmax(280px, 330px) minmax(480px, 1.25fr);
    padding: 0 28px;
  }

  .rotary-main-banner {
    grid-template-columns: minmax(0, 34fr) minmax(185px, 18fr) minmax(0, 48fr);
    padding-left: 36px;
    padding-right: 36px;
  }

  .rotary-logo-block img {
    max-width: 430px;
  }

  .rotary-theme-block img {
    max-width: 205px;
  }

  .rotary-leader-wrap {
    gap: 12px;
  }

  .rotary-leader-card {
    padding-left: 11px;
    padding-right: 11px;
  }

  .rotary-leader-card h4 {
    font-size: 15px;
  }

  .rotary-leader-card h5 {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .rotary-main-banner {
    grid-template-columns: 1fr;
    padding-bottom: 84px;
  }

  .rotary-leader-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .rotary-main-nav ul {
    flex-wrap: wrap;
    width: 100%;
  }

  .rotary-main-nav li {
    flex: 1 1 25%;
    min-width: 160px;
  }

  .rotary-feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-item {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .rotary-top-strip {
    padding: 14px 12px;
  }

  .rotary-top-left {
    font-size: 14px;
    gap: 8px;
  }

  .rotary-top-left i {
    font-size: 18px;
  }

  .follow-us {
    width: 100%;
    justify-content: center;
  }

  .rotary-top-right {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .login-btn {
    width: 100%;
    justify-content: center;
  }

  .rotary-main-banner {
    padding: 24px 12px 76px;
  }

  .rotary-tagline {
    padding-left: 0;
  }

  .rotary-tagline h5 {
    font-size: 16px;
  }

  .rotary-tagline p {
    font-size: 15px;
  }

  .rotary-theme-block img {
    max-width: 180px;
  }

  .rotary-leader-wrap {
    grid-template-columns: 1fr;
  }

  .rotary-main-nav li {
    flex: 1 1 50%;
    min-width: 140px;
  }

  .rotary-main-nav a {
    min-height: 84px;
    padding: 10px 8px;
    font-size: 11px;
  }

  .rotary-main-nav a i {
    font-size: 22px;
  }

  .rotary-feature-strip {
    margin-left: 12px;
    margin-right: 12px;
    padding: 16px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 22px;
  }

  .feature-item h4 {
    font-size: 15px;
  }

  .feature-item p {
    font-size: 14px;
  }
}

/* Header layout fixes */
.rotary-new-header,
.rotary-new-header * {
  box-sizing: border-box;
}

.rotary-bg-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  background:
    radial-gradient(circle at 10% 12%, rgba(25, 90, 210, 0.10) 0 1px, transparent 2px) 0 0 / 18px 18px,
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px) 0 0 / 18px 18px;
}

.rotary-top-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px) minmax(0, 1.35fr);
  align-items: center;
  gap: 16px 24px;
}

.rotary-top-left,
.rotary-top-right {
  min-width: 0;
}

.rotary-top-center {
  justify-self: center;
}

.rotary-search-box {
  width: min(390px, 100%);
}

.rotary-top-right {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 12px;
  white-space: nowrap;
}

.login-btn {
  white-space: nowrap;
  flex: 0 0 auto;
  height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.rotary-main-banner {
  grid-template-columns: minmax(0, 1.45fr) minmax(170px, 0.42fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  align-items: center;
}

.rotary-main-banner::before {
  left: -140px;
  width: 62%;
}

.rotary-main-banner::after {
  left: 47%;
  width: 120px;
}

.rotary-banner-left,
.rotary-theme-block,
.rotary-leader-wrap {
  min-width: 0;
}

.rotary-theme-block {
  padding-left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotary-leader-wrap {
  align-items: stretch;
}

.rotary-leader-card {
  min-height: 100%;
}

.rotary-leader-card img {
  /* height: clamp(180px, 18vw, 235px); */
  /* object-fit: cover; */
  /* background: #eef3fb; */
}

.rotary-main-nav {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rotary-main-nav::-webkit-scrollbar {
  display: none;
}

.rotary-main-nav ul {
  display: flex;
  width: max-content;
  min-width: 100%;
}

.rotary-main-nav li {
  flex: 1 0 30px;
}

.rotary-main-nav a {
  min-height: 112px;
  padding: 8px 2px;
}

.rotary-feature-strip {
  width: min(100%, 1780px);
}

@media (max-width: 1199px) {
  .rotary-top-strip {
    grid-template-columns: 1fr;
    padding: 18px 20px;
    justify-items: center;
    text-align: center;
  }

  .rotary-top-right {
    justify-content: center;
    white-space: normal;
  }

  .rotary-main-banner {
    gap: 32px;
    padding-bottom: 90px;
  }

  .rotary-main-banner::after {
    display: none;
  }

  .rotary-theme-block {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .rotary-top-strip {
    padding: 16px;
    gap: 12px;
  }

  .rotary-top-right {
    gap: 10px;
  }

  .follow-us {
    flex-wrap: wrap;
    justify-content: center;
  }

  .rotary-main-banner {
    padding: 28px 16px 92px;
    gap: 24px;
  }

  .rotary-logo-block img {
    max-width: 100%;
  }

  .rotary-main-nav a {
    min-height: 96px;
    gap: 8px;
    font-size: 12px;
  }

  .rotary-main-nav a i {
    font-size: 24px;
  }

  .rotary-feature-strip {
    margin-left: 16px;
    margin-right: 16px;
    padding: 22px;
  }

}

/* Final desktop alignment: keep after all responsive compatibility rules. */
@media (min-width: 1200px) {
  .rotary-main-banner {
    grid-template-columns: 36% 20% 44%;
    gap: 0;
  }

  .rotary-leader-card {
    min-width: 0;
  }

  .rotary-main-nav a {
    min-height: 74px;
  }

  .rotary-feature-strip {
    margin-top: 34px;
    min-height: 132px;
    padding: 22px 45px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .rotary-main-banner {
    grid-template-columns: 34% 18% 48%;
  }
}

/* Compact three-row header, matched to the reference site's proportions. */
@media (min-width: 1200px) {
  .rotary-top-strip {
    min-height: 48px;
    padding: 0 30px;
  }

  .rotary-search-box {
    height: 34px;
  }

  .rotary-top-left,
  .follow-us,
  .login-btn {
    font-size: 14px;
  }

  .rotary-top-left i {
    font-size: 18px;
  }

  .follow-us a {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .login-btn {
    height: 34px;
    padding: 0 13px;
  }

  .rotary-main-banner {
    padding: 10px 50px 10px;
  }

  .rotary-logo-block img {
    max-width: 290px;
  }

  .rotary-tagline {
    margin-top: 12px;
  }

  .rotary-tagline span {
    margin-bottom: 10px;
  }

  .rotary-theme-block img {
    max-width: 200px;
  }

  .rotary-leader-wrap {
    gap: 14px;
  }

  .rotary-leader-card {
    padding: 7px 5px 7px;
    border-radius: 10px;
    width: 98%;
  }

  .rotary-leader-card h4 {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 5px;
  }

  .rotary-leader-card img {
    width: auto;
    max-width: 100%;
    height: 95px;
    object-fit: contain;
  }

  .leader-line {
    margin: 8px auto 6px;
  }

  .rotary-leader-card h5 {
    font-size: 10px;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .rotary-main-nav {
    margin-top: -38px;
  }

  .rotary-main-nav a {
    min-height: 62px;
    gap: 6px;
    padding: 6px 2px;
    font-size: 11px;
  }

  .rotary-main-nav a i {
    font-size: 20px;
  }

  .rotary-leader-wrap {
    margin-left: 45px;
  }
}


.bg-grey {
  background-color: #8080801a;
}


.ser-projects-wpr {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  /* margin-top: -120px; */
}


@media (min-width: 1200px) {

  .ser-projects-wpr {

    margin-top: -120px;
  }

}

.ser-projects-title {
  text-align: center;
  font-size: 30px;
}

.ser-projects-title-space {
  margin-bottom: 28px;
}


.padding-section-spacing {
  padding: 40px 0 40px;
}

.bg-white {
  background-color: #ffffff;
}


.rs-program-item {
    /* display: grid; */
    grid-template-columns: 260px auto;
    background: #272B35;
    border-radius: 12px;
    padding: 12px;
    gap: 30px;
    align-items: center;
    position: relative;
    border: 1px solid var(--rs-border-tertiary);
    transition: 0.6s;
}

/* Rotary District 3211 footer */
.rs-footer-one {
  background: linear-gradient(145deg, #003b7a, #0050a4) !important;
}

.rs-footer-one .rs-footer-widget-logo img {
  max-width: 210px;
  height: auto;
}

.rs-footer-one .footer-1-col-2 > .rs-footer-widget-title:not(.footer-district-title),
.rs-footer-one .rs-footer-copyright p.underline {
  display: none;
}

.rs-footer-one .footer-rotary-link {
  display: inline-flex;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
}

.rs-footer-one .footer-rotary-link:hover,
.rs-footer-one .rs-footer-widget-link a:hover,
.rs-footer-one .rs-footer-copyright-link a:hover {
  border-color: #f05a28;
  color: #f05a28;
}

.rs-footer-one .rs-square-btn {
  background: #f05a28 !important;
}

.rs-footer-one .rs-footer-content-item p,
.rs-footer-one .footer-rotary-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.rs-footer-one .rs-footer-widget-title::after {
  background: #f05a28;
}

.rs-footer-one .rs-footer-copyright-area {
  border-top-color: rgba(255, 255, 255, 0.15);
}

/* Rendering and accessibility optimizations */
.celebrations-section,
.rs-gallery-area,
.rs-footer-area {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

img {
  max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #f05a28;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Responsive primary navigation */
.rotary-nav-toggle {
  display: none;
}

@media (min-width: 1200px) {
  .rotary-main-nav {
    position: relative;
    z-index: 20;
    width: 100%;
    margin: 0;
    overflow: visible;
    border: 0;
    border-bottom: 4px solid #f05a28;
    border-radius: 0;
    background: #0050a4;
    box-shadow: 0 8px 24px rgba(0, 52, 107, 0.16);
  }

  .rotary-main-nav ul {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }

  .rotary-main-nav li {
    min-width: 0;
    flex: none;
  }

  .rotary-main-nav a {
    min-height: 72px;
    padding: 9px 4px;
    gap: 6px;
    font-size: 10px;
  }

  .rotary-main-nav a i {
    font-size: 18px;
  }

  .rotary-main-nav li.active {
    margin: 0;
    border-radius: 0;
    background: #f05a28;
  }

  .rotary-main-nav li.active::after {
    display: none;
  }
}

@media (max-width: 1199px) {
  .rotary-nav-toggle {
    position: relative;
    z-index: 22;
    display: flex;
    width: calc(100% - 24px);
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    margin: 0 12px;
    padding: 12px 18px;
    border: 0;
    border-bottom: 3px solid #f05a28;
    border-radius: 10px 10px 0 0;
    color: #fff;
    background: #0050a4;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(0, 52, 107, 0.18);
  }

  .rotary-nav-toggle-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
  }

  .rotary-main-nav {
    position: relative;
    z-index: 21;
    width: calc(100% - 24px);
    margin: 0 12px;
    overflow: hidden;
    border: 0;
    border-radius: 0 0 10px 10px;
    background: #003f82;
    box-shadow: 0 12px 25px rgba(0, 52, 107, 0.2);
  }

  .rotary-main-nav ul {
    display: grid;
    width: 100%;
    min-width: 0;
    max-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.25s ease;
  }

  .rotary-main-nav.is-open ul {
    max-height: 1000px;
    opacity: 1;
  }

  .rotary-main-nav li {
    min-width: 0;
    flex: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .rotary-main-nav li.active {
    margin: 0;
    border-radius: 0;
    background: #f05a28;
  }

  .rotary-main-nav li.active::after {
    display: none;
  }

  .rotary-main-nav a {
    min-height: 64px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 16px;
    font-size: 12px;
  }

  .rotary-main-nav a i {
    width: 25px;
    font-size: 18px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .rotary-main-nav ul {
    grid-template-columns: 1fr;
  }

  .rotary-main-nav.is-open ul {
    max-height: 1400px;
  }
}

/* Mobile arrangement for the second header row */
@media (max-width: 767px) {
  .rotary-main-banner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 14px 28px;
    text-align: center;
    background: #fff;
  }

  .rotary-main-banner::before,
  .rotary-main-banner::after,
  .rotary-theme-block {
    display: none;
  }

  .rotary-banner-left {
    width: 100%;
    padding: 0;
  }

  .rotary-logo-block img {
    width: min(100%, 430px);
    max-width: 430px;
  }

  .rotary-leader-wrap {
    display: grid;
    width: 100%;
    max-width: 540px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 auto;
  }

  .rotary-leader-card {
    min-width: 0;
    padding: 14px 5px 12px;
  }

  .rotary-leader-card h4 {
    min-height: 48px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .rotary-leader-card img {
    width: 76px;
    height: 88px;
    max-width: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .rotary-leader-card .leader-line {
    width: 32px;
    margin: 8px auto 6px;
  }

  .rotary-leader-card h5 {
    overflow-wrap: anywhere;
    font-size: 11px;
    line-height: 1.35;
  }
}

@media (max-width: 380px) {
  .rotary-leader-wrap {
    gap: 6px;
  }

  .rotary-leader-card {
    padding-inline: 3px;
  }

  .rotary-leader-card img {
    width: 68px;
    height: 80px;
  }
}

.white-logo {
    filter: brightness(0) invert(1);
}


.gl-spacing{
  padding: 40px 0;
}

.three-sec-spacing{
  padding: 60px 0;
}


.four-spacing{
  padding-bottom: 60px;
}


@media (min-width: 1200px) { 

  .ser-projects-wpr {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  margin-top: -120px;
}

 }
 
 /* ===========================
   Horizontal Navigation
=========================== */

.hm-navbar{
    position:relative;
    z-index:9999;
}

.hm-menu{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    align-items:center;
}

.hm-menu > li{
    position:relative;
}

.hm-menu > li > a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:20px 18px;
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.hm-menu > li:hover > a{
    color:#0056b3;
}

/* ===========================
   Dropdown
=========================== */

.hm-submenu{

    position:absolute;

    top:100%;
    left:0;

    min-width:240px;

    background:#fff;

    list-style:none;

    padding:10px 0;

    margin:0;

    border-radius:6px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    display:none;

    z-index:99999;

}

.hm-dropdown:hover > .hm-submenu{

    display:block;

}

.hm-submenu li{

    width:100%;

}

.hm-submenu li a{

    display:block;

    padding:12px 20px;

    color:#333;

    text-decoration:none;

    transition:.3s;

}

.hm-submenu li a:hover{

    background:#0056b3;

    color:#fff;

}

/* ===========================
   Mobile
=========================== */

.hm-toggle{

    display:none;

}

@media(max-width:991px){

.hm-toggle{

    display:block;

    border:none;

    background:#0056b3;

    color:#fff;

    padding:12px 15px;

    cursor:pointer;

}

.hm-navbar{

    width:100%;

}

.hm-menu{

    display:none;

    flex-direction:column;

    width:100%;

}

.hm-menu.show{

    display:flex;

}

.hm-menu>li{

    width:100%;

}

.hm-menu>li>a{

    justify-content:space-between;

}

.hm-submenu{

    position:static;

    display:none;

    width:100%;

    box-shadow:none;

    border-radius:0;

}

.hm-dropdown.active>.hm-submenu{

    display:block;

}

}

/*=========================================
 HORIZONTAL MENU FIX
=========================================*/

.hm-navbar{
    position:relative !important;
    overflow:visible !important;
    z-index:999999 !important;
}

.hm-menu{
    display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #0050a4;
  border-bottom: 4px solid #ff5b0a;
}

.hm-menu > li{
    position:relative;
}

.hm-menu > li > a{

    display:flex;
    align-items:center;
    gap:8px;

    padding:18px 20px;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    white-space:nowrap;

}

.hm-menu > li:hover > a{

    color:#ff5b0a;

}

/* Dropdown */

.hm-submenu{

    position:absolute;

    top:100%;

    left:0;

    width:240px;

    margin:0;

    padding:10px 0;

    list-style:none;

    background:#fff;

    border-radius:8px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    display:none;

    z-index:9999999;

}

.hm-dropdown:hover > .hm-submenu{

    display:block;

}

.hm-submenu li{

    width:100%;

}

.hm-submenu li a{

    display:block;

    padding:13px 22px;

    color:#333;

    text-decoration:none;

}

.hm-submenu li:hover>a{

    background:#0056d8;

    color:#fff;

}

/* IMPORTANT */

header,
.hm-header,
.hm-navbar,
.header-wrapper,
.rs-header-two,
.rs-header-area,
.container,
.container-fluid{

    overflow:visible !important;

}

@media(max-width:991px){

.hm-toggle{

display:block;

}

.hm-navbar{

width:100%;

}

.hm-menu{

display:none !important;

flex-direction:column;

width:100%;

}

.hm-menu.show{

display:flex !important;

}

.hm-submenu{

position:static;

display:none;

width:100%;

box-shadow:none;

border-radius:0;

}

.hm-dropdown.active>.hm-submenu{

display:block;

}

}


/*==================================================
    DISTRICT PROJECTS SECTION
==================================================*/

.dpx-project-section{
    position:relative;
    padding:60px 0;
    background:#fff;
    overflow:hidden;
}

.dpx-project-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#005daa15;
    border-radius:50%;
    top:-220px;
    left:-220px;
}

.dpx-project-section::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#ff5b0a12;
    border-radius:50%;
    right:-180px;
    bottom:-180px;
}

/*==================================================
    SECTION TITLE
==================================================*/

.dpx-section-title{
    position:relative;
    text-align:center;
    margin-bottom:30px;
    z-index:2;
}

.dpx-section-title span{

    display:inline-block;

    padding:8px 22px;

    border-radius:30px;

    background:#005daa;

    color:#fff;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:18px;

}

.dpx-section-title h2{

    font-size:46px;

    font-weight:700;

    color:#003366;

    margin-bottom:18px;

    line-height:1.2;

}

.dpx-section-title p{


    margin:auto;

    color:#666;

    font-size:17px;

    line-height:30px;

}

/*==================================================
    SWIPER
==================================================*/

.dpxProjectSlider{

    position:relative;

    padding:15px 8px 80px;

}

.dpxProjectSlider .swiper-slide{

    height:auto;

    display:flex;

}

/*==================================================
    PROJECT CARD
==================================================*/

.dpx-card{

    width:100%;

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.45s;

    display:flex;

    flex-direction:column;

    position:relative;

}

.dpx-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.16);

}

/*==================================================
    IMAGE
==================================================*/

.dpx-image{

    position:relative;

    overflow:hidden;

    height:250px;

}

.dpx-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.dpx-card:hover .dpx-image img{

    transform:scale(1.10);

}

/*==================================================
    PROJECT NUMBER
==================================================*/

.dpx-count{

    position:absolute;

    top:18px;

    right:18px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:#ff5b0a;

    color:#fff;

    font-size:22px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

}

/*==================================================
    CONTENT
==================================================*/

.dpx-content{

    padding:30px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.dpx-category{

    display:inline-block;

    color:#005daa;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:12px;

}

.dpx-content h3{

    font-size:20px;

    color:#1a1a1a;

    font-weight:700;

    margin-bottom:15px;

}

.dpx-content p{

    color:#666;

    font-size:16px;

    line-height:28px;

    margin-bottom:30px;

    flex:1;

}

/*==================================================
    BUTTON
==================================================*/

.dpx-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:14px 28px;

    background:#005daa;
    color:#fff;

    text-decoration:none;
    font-size:15px;
    font-weight:600;

    border-radius:50px;

    transition:all .35s ease;

    overflow:hidden;
}

.dpx-btn i{
    transition:.35s;
}

.dpx-btn:hover{
    background:#ff5b0a;
    color:#fff;
    transform:translateY(-3px);
}

.dpx-btn:hover i{
    transform:translateX(6px);
}

/*==================================================
    CARD HOVER EFFECT
==================================================*/

.dpx-card::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#005daa,#ff5b0a);

    transition:.45s;

}

.dpx-card:hover::before{

    left:0;

}

.dpx-card::after{

    content:"";

    position:absolute;

    bottom:0;
    left:0;

    width:0;

    height:4px;

    background:#ff5b0a;

    transition:.4s;

}

.dpx-card:hover::after{

    width:100%;

}

/*==================================================
    IMAGE OVERLAY
==================================================*/

.dpx-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
        rgba(0,0,0,.35),
        rgba(0,0,0,0));

    opacity:0;

    transition:.4s;

    z-index:1;

}

.dpx-card:hover .dpx-image::before{

    opacity:1;

}

.dpx-count{

    z-index:5;

}

/*==================================================
    NAVIGATION BUTTONS
==================================================*/

.dpx-prev,
.dpx-next{

    width:58px;
    height:58px;

    border-radius:50%;

    background:#fff;

    color:#005daa;

    display:flex;
    align-items:center;
    justify-content:center;

    position:absolute;

    top:45%;

    transform:translateY(-50%);

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    transition:.35s;

    z-index:20;

}

.dpx-prev{

    left:-17px;

}

.dpx-next{

    right:-17px;

}

.dpx-prev:hover,
.dpx-next:hover{

    background:#005daa;

    color:#fff;

    transform:translateY(-50%) scale(1.08);

}

/*==================================================
    PAGINATION
==================================================*/

.dpx-pagination{

    position:absolute;

    bottom:10px !important;

    width:100%;

    text-align:center;

}

.dpx-pagination .swiper-pagination-bullet{

    width:12px;

    height:12px;

    margin:0 6px !important;

    background:#005daa;

    opacity:.3;

    transition:.3s;

}

.dpx-pagination .swiper-pagination-bullet-active{

    width:34px;

    border-radius:30px;

    background:#ff5b0a;

    opacity:1;

}

/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width:1200px){

.dpx-section-title h2{

    font-size:40px;

}

.dpx-image{

    height:220px;

}

}

@media (max-width:991px){

.dpx-project-section{

    padding:90px 0;

}

.dpx-section-title{

    margin-bottom:55px;

}

.dpx-section-title h2{

    font-size:34px;

}

.dpx-content{

    padding:25px;

}

.dpx-content h3{

    font-size:24px;

}

.dpx-prev,
.dpx-next{

    display:none;

}

}

@media (max-width:767px){

.dpx-project-section{

    padding:70px 0;

}

.dpx-section-title span{

    font-size:12px;

}

.dpx-section-title h2{

    font-size:28px;

}

.dpx-section-title p{

    font-size:15px;

    line-height:26px;

}

.dpx-image{

    height:200px;

}

.dpx-content{

    padding:22px;

}

.dpx-content h3{

    font-size:22px;

}

.dpx-content p{

    font-size:15px;

    line-height:25px;

}

.dpx-btn{

    width:100%;

}

}

@media (max-width:480px){

.dpx-project-section{

    padding:60px 0;

}

.dpx-image{

    height:180px;

}

.dpx-count{

    width:46px;

    height:46px;

    font-size:18px;

}

.dpx-content{

    padding:20px;

}

.dpx-content h3{

    font-size:20px;

}

}

/*==========================
Quick Contact
==========================*/

.rs-footer-contact-list{

    display:flex;
    flex-direction:column;
    gap:22px;

}

.rs-footer-contact-item{

    display:flex;
    align-items:flex-start;
    gap:15px;

}

.rs-footer-contact-icon{

    width:48px;
    height:48px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#f9bd31;

    font-size:18px;

    flex-shrink:0;

    transition:.35s;

}

.rs-footer-contact-item:hover .rs-footer-contact-icon{

    background:#f9bd31;

    color:#003b7a;

}

.rs-footer-contact-content span{

    display:block;

    color:rgba(255,255,255,.65);

    font-size:13px;

    margin-bottom:4px;

}

.rs-footer-contact-content p,
.rs-footer-contact-content a{

    margin:0;

    color:#fff;

    font-size:15px;

    line-height:26px;

    text-decoration:none;

    transition:.3s;

}

.rs-footer-contact-content a:hover{

    color:#f9bd31;

}


/*=====================================================
    ROTARY DISTRICT CONTACT PAGE CSS
======================================================*/

.rd-contact-hero{

    position:relative;

    padding:60px 0;

    background:linear-gradient(rgba(0,58,112,.82),rgba(0,58,112,.82)),
    url("../images/contact-banner.jpg") center center/cover no-repeat;

    text-align:center;

}

.rd-contact-hero-content{

    max-width:800px;

    margin:auto;

}

.rd-contact-hero-content span{

    display:inline-block;

    padding:8px 22px;

    background:#f7a600;

    color:#fff;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.rd-contact-hero-content h1{

    color:#fff;

    font-size:56px;

    font-weight:700;

    margin-bottom:20px;

    line-height:1.2;

}

.rd-contact-hero-content p{

    color:#ffffffd9;

    font-size:18px;

    line-height:32px;

}

/*==================================
CONTACT INFO
==================================*/

.rd-contact-info{

    padding:90px 0 20px;

    background:#f8fbff;

}

.rd-contact-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.rd-contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.rd-contact-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#005daa;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    transition:.4s;

}

.rd-contact-card:hover .rd-contact-icon{

    background:#f7a600;

    transform:rotate(360deg);

}

.rd-contact-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    color:#003b70;

}

.rd-contact-card p{

    color:#666;

    line-height:28px;

    margin:0;

}

.rd-contact-card a{

    color:#005daa;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.rd-contact-card a:hover{

    color:#f7a600;

}

/*==================================
CONTACT FORM
==================================*/

.rd-contact-form-area{

    padding:90px 0;

}

.rd-contact-form-box{

    background:#fff;

    border-radius:25px;

    padding:45px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.rd-title span{

    display:inline-block;

    color:#f7a600;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:10px;

}

.rd-title h2{

    font-size:42px;

    color:#003b70;

    margin-bottom:35px;

}

.rd-input-box{

    margin-bottom:25px;

}

.rd-input-box input,

.rd-input-box textarea{

    width:100%;

    border:1px solid #d9e3ee;

    border-radius:12px;

    padding:18px 20px;

    outline:none;

    font-size:16px;

    transition:.3s;

    background:#fff;

}

.rd-input-box textarea{

    resize:none;

}

.rd-input-box input:focus,

.rd-input-box textarea:focus{

    border-color:#005daa;

    box-shadow:0 0 0 3px rgba(0,93,170,.08);

}

.rd-submit-btn{

    border:none;

    background:#005daa;

    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.rd-submit-btn:hover{

    background:#f7a600;

    transform:translateY(-3px);

}

/*==================================
OFFICE BOX
==================================*/

.rd-office-box{

    background:#003b70;

    color:#fff;

    border-radius:25px;

    padding:45px;

    height:100%;

}

.rd-office-box span{

    color:#f7a600;

    text-transform:uppercase;

    font-weight:600;

    letter-spacing:1px;

}

.rd-office-box h3{

    margin:15px 0 20px;

    font-size:34px;

}

.rd-office-box p{

    color:#ffffffcc;

    line-height:30px;

}

.rd-office-box ul{

    list-style:none;

    padding:0;

    margin:40px 0 0;

}

.rd-office-box ul li{

    display:flex;

    gap:18px;

    margin-bottom:30px;

}

.rd-office-box ul li i{

    width:55px;

    height:55px;

    background:#f7a600;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:20px;

    flex-shrink:0;

}

.rd-office-box strong{

    display:block;

    margin-bottom:6px;

}

.rd-office-box a{

    color:#fff;

    text-decoration:none;

}

.rd-office-box a:hover{

    color:#f7a600;

}

/*====================================================
    ROTARY ZONE PAGE CSS
====================================================*/

.rz-page-banner{

    position:relative;

    padding:70px 0;

    background:linear-gradient(rgba(0,67,122,.85),rgba(0,67,122,.85)),
    url("../images/banner/zones-banner.jpg") center/cover no-repeat;

    text-align:center;

    overflow:hidden;

}

.rz-banner-content{

    max-width:760px;

    margin:auto;

}

.rz-banner-content span{

    display:inline-block;

    padding:8px 24px;

    background:#f7a600;

    color:#fff;

    border-radius:50px;

    text-transform:uppercase;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.rz-banner-content h1{

    font-size:58px;

    font-weight:700;

    color:#fff;

    margin-bottom:20px;

}

.rz-banner-content p{

    color:#ffffffd8;

    font-size:18px;

    line-height:32px;

}

/*=========================================
SEARCH
=========================================*/

.rz-search-area{

    padding:70px 0 30px;

    background:#f6f8fc;

}

.rz-search-box{

    position:relative;

    max-width:650px;

    margin:auto;

}

.rz-search-box i{

    position:absolute;

    left:28px;

    top:50%;

    transform:translateY(-50%);

    color:#005daa;

    font-size:18px;

}

.rz-search-box input{

    width:100%;

    height:65px;

    border:none;

    background:#fff;

    border-radius:60px;

    padding-left:70px;

    padding-right:30px;

    font-size:16px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.rz-search-box input:focus{

    outline:none;

    box-shadow:0 18px 45px rgba(0,93,170,.15);

}

/*=========================================
ZONE SECTION
=========================================*/

.rz-zone-section{

    padding:50px 0 100px;

    background:#f6f8fc;

}

.rz-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    position:relative;

}

.rz-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 55px rgba(0,0,0,.16);

}

/*=========================================
IMAGE
=========================================*/

.rz-image{

    position:relative;

    overflow:hidden;

    height:330px;

}

.rz-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.rz-card:hover .rz-image img{

    transform:scale(1.08);

}

/*=========================================
ZONE BADGE
=========================================*/

.rz-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#005daa;

    color:#fff;

    padding:8px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

}

/*=========================================
CONTENT
=========================================*/

.rz-content{

    padding:28px;

    text-align:center;

}

.rz-content h4{

    font-size:22px;

    font-weight:700;

    color:#003b70;

    margin-bottom:8px;

}

.rz-content p{

    color:#777;

    font-size:15px;

    margin-bottom:25px;

}

/*=========================================
BUTTON
=========================================*/

.rz-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 30px;

    border-radius:40px;

    background:#005daa;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.rz-btn:hover{

    background:#f7a600;

    color:#fff;

}

/*=========================================
HOVER BORDER
=========================================*/

.rz-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#005daa,#f7a600);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.rz-card:hover::before{

    transform:scaleX(1);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.rz-banner-content h1{

font-size:48px;

}

.rz-image{

height:300px;

}

}

@media(max-width:992px){

.rz-page-banner{

padding:90px 0;

}

.rz-banner-content h1{

font-size:40px;

}

.rz-image{

height:280px;

}

}

@media(max-width:768px){

.rz-page-banner{

padding:70px 0;

}

.rz-banner-content h1{

font-size:32px;

}

.rz-banner-content p{

font-size:16px;

line-height:28px;

}

.rz-search-area{

padding:50px 0 20px;

}

.rz-search-box input{

height:58px;

}

.rz-image{

height:260px;

}

.rz-content{

padding:22px;

}

.rz-content h4{

font-size:20px;

}

}

@media(max-width:576px){

.rz-image{

height:320px;

}

.rz-banner-content h1{

font-size:28px;

}

.rz-btn{

width:100%;

}

}



/*=====================================================
        ROTARY GALLERY PAGE
        PART 2A
======================================================*/

/*=============================
        HERO SECTION
==============================*/

.rg-gallery-banner{
    position:relative;
    padding:70px 0;
    background:linear-gradient(rgba(0,58,112,.85),rgba(0,58,112,.85)),
    url("../images/gallery/gallery-banner.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.rg-gallery-banner::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.rg-gallery-banner::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(247,166,0,.18);
    border-radius:50%;
    bottom:-80px;
    right:-80px;
}

.rg-gallery-banner-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:780px;
    margin:auto;
}

.rg-gallery-banner-content span{

    display:inline-block;

    padding:10px 28px;

    background:#f7a600;

    color:#fff;

    border-radius:40px;

    text-transform:uppercase;

    letter-spacing:1px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.rg-gallery-banner-content h1{

    color:#fff;

    font-size:58px;

    font-weight:700;

    margin-bottom:20px;

}

.rg-gallery-banner-content p{

    color:rgba(255,255,255,.9);

    font-size:18px;

    line-height:32px;

}

/*=============================
        GALLERY SECTION
==============================*/

.rg-gallery-section{

    padding:70px 0;

    background:#f7f9fc;

}

/*=============================
        FILTER
==============================*/

.rg-filter-wrapper{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:60px;

}

.rg-filter-btn{

    border:none;

    background:#fff;

    color:#003b70;

    padding:14px 28px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.rg-filter-btn:hover,

.rg-filter-btn.active{

    background:#005daa;

    color:#fff;

}

/*=============================
        GRID
==============================*/

.rg-gallery-grid{

    row-gap:30px;

}

.rg-gallery-item{

    transition:.4s;

}

/*=============================
        CARD
==============================*/

.rg-gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.45s;

}

.rg-gallery-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 55px rgba(0,0,0,.16);

}

/*=============================
        IMAGE
==============================*/

.rg-gallery-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.rg-gallery-card:hover img{

    transform:scale(1.10);

}

/*=============================
        OVERLAY
==============================*/

.rg-gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(rgba(0,58,112,.15),
    rgba(0,58,112,.75));

    opacity:0;

    visibility:hidden;

    transition:.4s;

}

.rg-gallery-card:hover .rg-gallery-overlay{

    opacity:1;

    visibility:visible;

}

/*=============================
        POPUP BUTTON
==============================*/

.rg-popup-btn{

    width:70px;

    height:70px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#005daa;

    font-size:22px;

    cursor:pointer;

    transition:.35s;

    transform:scale(.7);
	z-index: 10000;

}

.rg-gallery-card:hover .rg-popup-btn{

    transform:scale(1);

}

.rg-popup-btn:hover{

    background:#f7a600;

    color:#fff;

    transform:rotate(90deg);

}

/*=============================
        IMAGE BORDER EFFECT
==============================*/

.rg-gallery-card::before{

    content:"";

    position:absolute;

    inset:0;

    border:4px solid transparent;

    transition:.4s;

    z-index:2;

}

.rg-gallery-card:hover::before{

    border-color:#f7a600;

}

/*=============================
        CATEGORY ANIMATION
==============================*/

.rg-gallery-item.hide{

    display:none;

}

.rg-gallery-item.show{

    animation:galleryFade .5s ease;

}

@keyframes galleryFade{

    from{

        opacity:0;

        transform:scale(.9);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}


/*=====================================================
        ROTARY GALLERY PAGE
        PART 2B
======================================================*/

/*=============================
        LIGHTBOX
==============================*/

.rg-lightbox{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.95);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:99999;

    padding:40px;

}

.rg-lightbox.active{

    opacity:1;

    visibility:visible;

}

/*=============================
        LIGHTBOX IMAGE
==============================*/

.rg-lightbox-image{

    max-width:90%;

    max-height:85vh;

    border-radius:12px;

    box-shadow:0 20px 60px rgba(0,0,0,.4);

    transform:scale(.8);

    transition:.4s ease;

}

.rg-lightbox.active .rg-lightbox-image{

    transform:scale(1);

}

/*=============================
        CLOSE BUTTON
==============================*/

.rg-close{

    position:absolute;

    top:25px;

    right:35px;

    width:50px;

    height:50px;

    background:#fff;

    color:#003b70;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    cursor:pointer;

    transition:.35s;

    z-index:100;

}

.rg-close:hover{

    background:#f7a600;

    color:#fff;

    transform:rotate(180deg);

}

/*=============================
        PREV & NEXT
==============================*/

.rg-prev,
.rg-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#003b70;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    font-size:22px;

    transition:.35s;

}

.rg-prev{

    left:35px;

}

.rg-next{

    right:35px;

}

.rg-prev:hover,
.rg-next:hover{

    background:#f7a600;

    color:#fff;

    transform:translateY(-50%) scale(1.1);

}

/*=============================
        SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:#005daa;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#f7a600;

}

/*=============================
        RESPONSIVE
==============================*/

@media(max-width:1200px){

.rg-gallery-banner-content h1{

font-size:48px;

}

.rg-gallery-card img{

height:280px;

}

}

@media(max-width:992px){

.rg-gallery-banner{

padding:90px 0;

}

.rg-gallery-banner-content h1{

font-size:40px;

}

.rg-gallery-card img{

height:250px;

}

.rg-prev,
.rg-next{

width:50px;

height:50px;

font-size:18px;

}

}

@media(max-width:768px){

.rg-gallery-section{

padding:70px 0;

}

.rg-gallery-banner{

padding:70px 0;

}

.rg-gallery-banner-content h1{

font-size:32px;

}

.rg-gallery-banner-content p{

font-size:16px;

line-height:28px;

}

.rg-filter-wrapper{

gap:10px;

margin-bottom:40px;

}

.rg-filter-btn{

padding:12px 20px;

font-size:14px;

}

.rg-gallery-card img{

height:230px;

}

.rg-popup-btn{

width:55px;

height:55px;

font-size:18px;

}

.rg-lightbox{

padding:20px;

}

.rg-lightbox-image{

max-width:100%;

max-height:70vh;

}

.rg-close{

top:15px;

right:15px;

width:42px;

height:42px;

font-size:22px;

}

.rg-prev{

left:10px;

}

.rg-next{

right:10px;

}

}

@media(max-width:576px){

.rg-gallery-banner-content h1{

font-size:28px;

}

.rg-gallery-card img{

height:210px;

}

.rg-filter-btn{

width:100%;

}

.rg-prev,
.rg-next{

display:none;

}

.rg-lightbox-image{

max-height:65vh;

}

}

/*=============================
        FADE ANIMATION
==============================*/

@keyframes rgFadeIn{

0%{

opacity:0;

transform:translateY(20px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

.rg-gallery-item{

animation:rgFadeIn .6s ease both;

}

.re-events-banner {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(rgba(0,58,112,.85), rgba(0,58,112,.85)),
    url("../images/banner/zones-banner.jpg") center center/cover no-repeat;
    overflow: hidden;
}
.re-events-banner::before {
    content: "";
    position: absolute;
    width: 350px; height: 350px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    top: -120px; left: -120px;
}
.re-events-banner::after {
    content: "";
    position: absolute;
    width: 260px; height: 260px;
    background: rgba(247,166,0,.18);
    border-radius: 50%;
    bottom: -80px; right: -80px;
}
.re-events-banner-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 780px; margin: auto;
}
.re-events-banner-content span {
    display: inline-block;
    padding: 10px 28px;
    background: #f7a600; color: #fff;
    border-radius: 40px;
    text-transform: uppercase; letter-spacing: 1px;
    font-size: 14px; font-weight: 600;
    margin-bottom: 20px;
}
.re-events-banner-content h1 {
    color: #fff; font-size: 58px; font-weight: 700; margin-bottom: 20px;
}
.re-events-banner-content p {
    color: rgba(255,255,255,.9); font-size: 18px; line-height: 32px;
}
.re-events-section {
    padding: 70px 0;
    background: #f7f9fc;
}
.re-filter-wrapper {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 15px; margin-bottom: 60px;
}
.re-filter-btn {
    border: none; background: #fff; color: #003b70;
    padding: 14px 28px; border-radius: 50px;
    font-size: 15px; font-weight: 600;
    cursor: pointer; transition: .35s;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}
.re-filter-btn:hover, .re-filter-btn.active {
    background: #005daa; color: #fff;
}
.re-events-grid { row-gap: 30px; }
.re-event-item { transition: .4s; }
.re-event-card {
    position: relative; overflow: hidden;
    border-radius: 20px; background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .45s; height: 100%;
    display: flex; flex-direction: column;
}
.re-event-card::before {
    content: ""; position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, #005daa, #f7a600);
    transform: scaleX(0); transform-origin: left;
    transition: .35s; z-index: 2;
}
.re-event-card:hover::before { transform: scaleX(1); }
.re-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(0,0,0,.16);
}
.re-event-image {
    position: relative; overflow: hidden; height: 220px;
}
.re-event-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: .6s;
}
.re-event-card:hover .re-event-image img { transform: scale(1.08); }
.re-event-badge {
    position: absolute; top: 14px; left: 14px;
    background: #f7a600; color: #fff;
    padding: 6px 16px; border-radius: 30px;
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .5px;
    z-index: 1;
}
.re-event-date {
    position: absolute; bottom: 14px; right: 14px;
    background: #005daa; color: #fff;
    padding: 8px 14px; border-radius: 12px;
    font-size: 12px; font-weight: 600;
    text-align: center; line-height: 1.3; z-index: 1;
}
.re-event-date span { display: block; font-size: 18px; }
.re-event-content {
    padding: 22px; text-align: center;
    flex: 1; display: flex; flex-direction: column;
}
.re-event-content h4 {
    font-size: 18px; font-weight: 700; color: #003b70;
    margin-bottom: 10px; line-height: 1.4;
}
.re-event-content h4 a {
    color: inherit; text-decoration: none; transition: .3s;
}
.re-event-content h4 a:hover { color: #f7a600; }
.re-event-content p {
    color: #777; font-size: 14px; line-height: 1.7;
    margin-bottom: 18px; flex: 1;
}
.re-event-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: #005daa; font-weight: 600; font-size: 14px;
    text-decoration: none; transition: .3s;
}
.re-event-link:hover { color: #f7a600; gap: 12px; }
.re-no-events {
    text-align: center; padding: 60px 20px;
    color: #777; font-size: 18px;
}
@media (max-width: 1199px) {
    .re-events-banner-content h1 { font-size: 48px; }
}
@media (max-width: 991px) {
    .re-events-banner { padding: 90px 0; }
    .re-events-banner-content h1 { font-size: 40px; }
}
@media (max-width: 768px) {
    .re-events-banner { padding: 70px 0; }
    .re-events-banner-content h1 { font-size: 32px; }
    .re-events-banner-content p { font-size: 16px; line-height: 28px; }
    .re-event-image { height: 200px; }
}
@media (max-width: 575px) {
    .re-events-banner-content h1 { font-size: 28px; }
    .re-filter-btn { padding: 10px 20px; font-size: 13px; }
    .re-event-image { height: 180px; }
    .re-event-content h4 { font-size: 16px; }
}
    .gml-hero {
        position: relative;
        min-height: 340px;
        display: flex;
        align-items: flex-end;
        background: linear-gradient(135deg, #0050a4 0%, #00274d 60%, #001833 100%);
        overflow: hidden;
    }
    .gml-hero::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        background: rgba(255,91,10,0.08);
        border-radius: 50%;
        top: -280px;
        right: -150px;
    }
    .gml-hero::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(255,255,255,0.03);
        border-radius: 50%;
        bottom: -120px;
        left: -80px;
    }
    .gml-hero-content {
        position: relative;
        z-index: 2;
        padding: 60px 0 48px;
        width: 100%;
    }
    .gml-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,91,10,0.9);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 7px 18px;
        border-radius: 30px;
        margin-bottom: 18px;
    }
    .gml-hero h1 {
        font-size: 44px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 10px;
        line-height: 1.15;
    }
    .gml-hero p {
        font-size: 17px;
        color: rgba(255,255,255,0.75);
        margin-bottom: 0;
        max-width: 520px;
    }
    .gml-breadcrumb {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 6px;
    }
    .gml-breadcrumb li {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
    }
    .gml-breadcrumb li a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        transition: color 0.3s;
    }
    .gml-breadcrumb li a:hover { color: #fff; }
    .gml-breadcrumb li .sep { color: rgba(255,255,255,0.3); }
    .gml-breadcrumb li.active { color: #fff; font-weight: 600; }

    .gml-section { padding: 70px 0; background: #f8fafc; }
    .gml-count-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #e8f4fd;
        color: #005daa;
        font-size: 13px;
        font-weight: 600;
        padding: 6px 16px;
        border-radius: 20px;
        margin-bottom: 28px;
    }
    .gml-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .gml-row {
        background: #fff;
        border-radius: 12px;
        padding: 0;
        box-shadow: 0 4px 18px rgba(0,0,0,0.04);
        border: 1px solid #f0f0f0;
        display: flex;
        align-items: stretch;
        transition: all 0.3s ease;
        overflow: hidden;
    }
    .gml-row:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.10);
        transform: translateY(-3px);
    }
    .gml-row-left {
        width: 6px;
        background: linear-gradient(180deg, #005daa, #003366);
        flex-shrink: 0;
    }
    .gml-row:hover .gml-row-left {
        background: linear-gradient(180deg, #ff5b0a, #e04800);
    }
    .gml-row-content {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 30px;
        gap: 20px;
    }
    .gml-row-info {
        display: flex;
        align-items: center;
        gap: 18px;
        flex: 1;
        min-width: 0;
    }
    .gml-row-num {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: #f0f6fc;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 800;
        color: #005daa;
        flex-shrink: 0;
    }
    .gml-row-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: #fff3ed;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .gml-row-icon i { font-size: 20px; color: #e74c3c; }
    .gml-row-text { min-width: 0; }
    .gml-row-name {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .gml-row-meta {
        font-size: 13px;
        color: #999;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .gml-row-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .gml-dl-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 26px;
        background: #005daa;
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .gml-dl-btn:hover {
        background: #ff5b0a;
        color: #fff;
        transform: translateY(-2px);
    }
    .gml-empty {
        text-align: center;
        padding: 80px 20px;
    }
    .gml-empty-icon {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #f0f6fc;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }
    .gml-empty-icon i { font-size: 40px; color: #b0c8de; }
    .gml-empty h3 { font-size: 22px; color: #333; font-weight: 700; margin-bottom: 10px; }
    .gml-empty p { color: #999; font-size: 16px; margin-bottom: 25px; }

    @media (max-width: 767px) {
        .gml-row-content {
            flex-direction: column;
            align-items: flex-start;
            padding: 18px 20px;
        }
        .gml-dl-btn { width: 100%; justify-content: center; }
        .gml-row-name { white-space: normal; }
    }

/*=============================
    GALLERY PAGINATION
==============================*/

.gallery-pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.gallery-pagination .page-item {
    list-style: none;
}

.gallery-pagination .page-link {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid gray;
    color: #000;
    margin: 0 4px;
    border-radius: 5px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-pagination .page-link:hover {
    background-color: #005daa;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,80,164,0.3);
}

.gallery-pagination .page-item.active .page-link {
    background-color: #005daa;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,80,164,0.3);
}

.gallery-pagination .page-item.disabled .page-link {
    color: #ddd;
    pointer-events: none;
    box-shadow: none;
}