@import url("https://fonts.googleapis.com/css2?family=Mukta+Malar:wght@200;300;400;500;600;700;800&display=swap");

* {
  line-height: 1.3;
}

body {
  line-height: 1.3;
}

a,
span,
img,
svg,
li,
h2,
h3,
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: "Mukta Malar", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --rs-ff-title: "Mukta Malar", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --rs-ff-p: "Mukta Malar", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --rs-ff-fontawesome: "Font Awesome 6 Pro";
  --rs-ff-remixicon: "remixicon";
  /** @color declaration */
  --rs-white: #FFFFFF;
  --rs-black: #000;
  --rs-light: #eee;
  --rs-green: #54BD05;
  --rs-yellow: #F69C00;
  --rs-pink: #E033E0;
  --rs-red: #E80000;
  --rs-theme-primary: #0073FF;
  --rs-theme-secondary: #10171E;
  --rs-text-primary: #616C74;
  --rs-text-secondary: #BEBEBE;
  --rs-title-primary: #121213;
  --rs-bg-primary: #171A1E;
  --rs-bg-secondary: #F7F7F7;
  --rs-bg-grey: #E5E5E5;
  --rs-bg-black: #121213;
  --rs-border-primary: #E5E5E5;
  --rs-border-secondary: rgba(255, 255, 255, 0.15);
  --rs-placeholder: rgba(30, 30, 30, 0.4);
  --rs-gradient-primary: #00033D;
  --rs-gradient-secondary: #0349EF;
  --rs-rating: #F3B656;
  /** @font weight declaration */
  --rs-fw-normal: normal;
  --rs-fw-thin: 100;
  --rs-fw-elight: 200;
  --rs-fw-light: 300;
  --rs-fw-regular: 400;
  --rs-fw-medium: 500;
  --rs-fw-sbold: 600;
  --rs-fw-bold: 700;
  --rs-fw-ebold: 800;
  --rs-fw-black: 900;
  /** @font size declaration */
  --rs-fs-body: 16px;
  --rs-fs-p: 16px;
  --rs-fs-h1: 60px;
  --rs-fs-h2: 36px;
  --rs-fs-h3: 30px;
  --rs-fs-h4: 26px;
  --rs-fs-h5: 24px;
  --rs-fs-h6: 18px;
  --rs-fs-b1: 14px;
  --rs-fs-b2: 16px;
  --rs-fs-b3: 18px;
  --rs-fs-b4: 22px;
}

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

/*---------------------------------
	1.3 Typography SCSS
---------------------------------*/

/*---------------------------------
	1.1 Default Spacing SCSS
---------------------------------*/

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

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

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

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

.rs-ptop {
  padding-top: 40px;
}

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

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

/*----------------------------------------*/
/*  2.1 accordion
/*----------------------------------------*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rs-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-small {
  width: 40px;
  height: 40px;
  font-size: 13px;
}

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

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

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

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


/*----------------------------------------*/
/*  2.24 Section Title  
/*----------------------------------------*/
.section-title {
  color: var(--rs-title-primary);
  font-weight: var(--rs-fw-sbold);
  font-family: var(--rs-ff-title);
  font-size: 36px;
  letter-spacing: 1px;
}

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

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

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

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

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

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


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


/*----------------------------------------*/
/*  2.20 post tag
/*----------------------------------------*/
.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: #000;
}

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

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

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

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

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

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

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

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

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

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


/*----------------------------------------*/
/*  4.22 video css
/*----------------------------------------*/
.rs-video-one .section-btn {
  display: flex;
  justify-content: end;
}

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


/*----------------------------------------*/
/*  4.21 video card css
/*----------------------------------------*/
.rs-post-video-one {
  height: 100%;
}

.rs-post-video-one .rs-post-video-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-top: 40px;
  padding-inline-end: 90px;
  padding-bottom: 40px;
  padding-inline-start: 40px;
}

@media only screen and (max-width: 1366px) {
  .rs-post-video-one .rs-post-video-content {
    padding: 40px;
  }
}

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

.rs-post-video-one .rs-post-video-item {
  position: relative;
  height: 100%;
}

.rs-post-video-one .rs-post-video {
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .rs-post-video-one .rs-post-video {
    height: 300px;
  }
}

.rs-post-video-one .rs-post-video video {
  width: 100%;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}

.rs-post-video-one .rs-post-video-title {
  color: var(--rs-white);
  margin-top: 15px;
  margin-bottom: 9px;
}

.rs-post-video-three .rs-post-video-thumb {
  position: relative;
  overflow: hidden;
  min-width: 140px;
  max-width: 140px;
  border-radius: 8px;
}

@media only screen and (max-width: 480px) {
  .rs-post-video-three .rs-post-video-thumb {
    min-width: 100%;
    max-width: 100%;
  }
}

.rs-post-video-three .rs-post-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: all 0.8s ease;
}

.rs-post-video-three .rs-post-video-title {
  margin-top: 9px;
  margin-bottom: 7px;
  text-transform: capitalize;
  color: #000;
}

.rs-post-video-three .rs-post-video-title a {
  background-size: 0 1px;
}

.rs-post-video-three .rs-post-video-title a:hover {
  background-size: 100% 1px;
}

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

.rs-post-video-three .rs-post-video-item {
  border-bottom: 1px solid var(--rs-border-secondary);
  padding-bottom: 12px;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

@media only screen and (max-width: 480px) {
  .rs-post-video-three .rs-post-video-item {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.rs-post-video-three .rs-post-video-item:hover .rs-post-video-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}

.rs-post-video-three .rs-post-video-item:first-child {
  border-top: 1px solid var(--rs-border-secondary);
  padding-top: 12px;
}

.rs-post-video-three .rs-post-video-item:last-child {
  margin-bottom: 0;
}

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