:root {
  --color-primary: #553CDF;
  --color-primary-gym: #B10D00;
  --color-primary-kitchen: #ff6d1c;
  --color-secondary: #1F1F25;
  --color-secondary-2: #110C2D;
  --color-body: #737477;
  --color-body-2: #F9F8FF;
  --color-secondary: #1F1F25;
  --color-heading-1: #110C2D;
  --color-heading-2: #262626;
  --color-white: #fff;
  --color-success: #3EB75E;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: 0.3s;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Hind", sans-serif;
  --font-3: "fontawesome", sans-serif;
  --font-size-b1: 18px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 40px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: auto !important;
}

body {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-primary);
  color: var(--color-body);
  font-weight: var(--p-regular);
  position: relative;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
  }
}

body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.05;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
menu,
ol,
ul,
table,
hr {
  margin: 0;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  word-break: break-word;
  font-family: var(--font-secondary);
  line-height: 1.4074;
  color: var(--color-heading-1);
}

h1,
.h1 {
  font-size: var(--h1);
  line-height: 91px;
  font-weight: 700;
}

h2,
.h2 {
  font-size: var(--h2);
  line-height: 1.23;
}

h3,
.h3 {
  font-size: var(--h3);
  line-height: 54px;
}

h4,
.h4 {
  font-size: var(--h4);
  line-height: 1.25;
}

h5,
.h5 {
  font-size: var(--h5);
  line-height: 1.24;
}

h6,
.h6 {
  font-size: var(--h6);
  line-height: 1.25;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
}
@media only screen and (max-width: 767px) {

  h1,
  .h1 {
    font-size: 34px;
  }

  h2,
  .h2 {
    font-size: 28px;
  }

  h3,
  .h3 {
    font-size: 24px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  h5,
  .h5 {
    font-size: 20px;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-weight: var(--s-bold);
  font-family: sans-serif;
}

h4,
.h4,
h5,
.h5 {
  font-weight: var(--s-bold);
}

h6,
.h6 {
  font-weight: var(--s-bold);
}
p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: var(--p-regular);
  color: #000000;
  margin: 0 0 8px;
}

@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 20px;
  width: 100%;
}
ul,
ol {
  padding-left: 18px;
}

ul {
  list-style: square;
  margin-bottom: 30px;
  padding-left: 20px;
}
ul li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  margin-top: 10px;
  margin-bottom: 10px;
  color: #26282d;
}

ul li a {
  text-decoration: none;
  color: var(--color-gray);
}
ul ul {
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 64px;
  }
}

@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 575px) {
  h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 54px;
  }
}

@media only screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 575px) {
  h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 30px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 575px) {
  h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
.rts-section-gap {
  padding: 120px 0;
}
@media only screen and (max-width: 767px) {
  .rts-section-gap {
    padding: 9px 0;
  }
}
  .rts-section-gapBottom {
  padding-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .rts-section-gapBottom {
    padding-bottom: 60px;
  }
}
.pl--20 {
  padding-left: 20px !important;
}
.mt--20 {
  margin-top: 20px !important;
}

.mb--20 {
  margin-bottom: 20px !important;
}
.mt--30 {
  margin-top: 30px !important;
}
.mt--50 {
  margin-top: 50px !important;
}
.pl--60 {
  padding-left: 60px !important;
}
.ptb--100 {
  padding: 100px 0;
}
 .pl_sm--10 {
    padding-left: 10px !important;
  }
   .ptb_sm--50 {
    padding: 50px 0 !important;
  }
   .pt_sm--50 {
    padding-top: 50px !important;
  }
   .sukrisna_section_Thbottom {
    padding: 125px 0 !important;
  }
  
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
}
a {
  color: var(--color-heading);
  text-decoration: none;
  outline: none;
}
b,
strong {
  font-weight: bold;
}
menu,
ol,
ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

li>ul,
li>ol {
  margin: 0;
}
img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}
form {
  margin: 0;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

hr {
  background-size: 4px 4px;
  border: 0;
  height: 1px;
  margin: 0 0 24px;
}
input,
button,
select,
textarea {
  background: transparent;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
}
button,
[type=button],
[type=reset],
[type=submit] input {
  height: 40px;
  padding: 0 15px;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
.header-top-one-wrapper {
  background: var(--color-primary);
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .header-top-one-wrapper {
    display: none;
  }
}

.header-top-one-wrapper .header-top-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-one-wrapper .left-information {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top-one-wrapper .left-information a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.header-top-one-wrapper .right-information {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-one-wrapper .right-information .rts-dropdown-menu {
  padding: 0;
  margin: 0;
}

.header-top-one-wrapper .right-information .rts-dropdown-menu .has-child-menu {
  list-style: none;
  margin: 0;
  position: relative;
  transition: all 0.4s;
}
.header-top-one-wrapper .right-information .rts-dropdown-menu .has-child-menu a {
  color: var(--color-white);
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-top-one-wrapper .right-information .rts-dropdown-menu .has-child-menu .sub-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  background: var(--color-white);
  transform: translateZ(0) translateY(15px);
  border-radius: 4px;
  transition: all 0.4s;
  box-shadow: 0px 7px 18px #1810100d;
  display: flex;
  flex-direction: column;
  min-width: 170px;
  padding: 12px 0;
  z-index: 10;
}

.header-top-one-wrapper .right-information .rts-dropdown-menu .has-child-menu .sub-menu li {
  list-style: none;
  width: 100%;
  display: block;
  margin: 0;
}
.header-top-one-wrapper .right-information .rts-dropdown-menu .has-child-menu .sub-menu li a {
  color: #1F1F25;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  margin: 2px 10px;
  transition: all 0.3s;
  border-radius: 4px;
  background: transparent;
}
.header-one-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-one-wrapper .left-side-header {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media only screen and (max-width: 1199px) {
  .header-one-wrapper .left-side-header {
    gap: 20px;
  }
}
.header--sticky.sticky {
    position: fixed !important;
    top: 0;
    animation: stickyanimations 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    display: block;
    width: 100%;
    box-shadow: 0px 7px 18px #1810100d;
    background: #fff;
    z-index: 999;
    border: none !important;
    max-width: 100%;
}
.header-one-wrapper .left-side-header .logo-area {
  padding: 5px 0;
  display: block;
  max-width: 276px;
}

.header-one-wrapper .left-side-header .category-area {
  cursor: pointer;
  padding: 20px 0;
}

.header-one-wrapper .left-side-header .category-area .category-btn {
  padding: 6px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  border: 1px solid #BBB1F2;
  background: #FBFAFF;
  gap: 8px;
  position: relative;
  font-size: 13px;
}

.header-one-wrapper .left-side-header .category-area:hover .category-sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateZ(0) translateY(20px);
}

@media only screen and (max-width: 1199px) {
  .header-one-wrapper .left-side-header .category-area .category-btn {
    display: none;
  }
}

.header-one-wrapper .left-side-header .category-area .category-btn span {
  color: #553CDF;
  font-weight: 500;
}

.header-one-wrapper .left-side-header .category-area .category-btn i {
  color: #553CDF;
}

.header-one-wrapper .left-side-header .category-area .category-sub-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  background: var(--color-white);
  transform: translateZ(0) translateY(30px);
  border-radius: 4px;
  transition: all 0.4s;
  box-shadow: 0px 7px 18px #1810100d;
  display: flex;
  flex-direction: column;
  min-width: 775px;
  padding: 23px 10px;
}

.header-one-wrapper .left-side-header .category-area .category-sub-menu li {
  list-style: none;
  width: 100%;
  margin: 9px 3px;
  display: flex;
  /*  justify-content: center;*/
}

.header-one-wrapper .left-side-header .category-area .category-sub-menu li ul {
  padding: 0;
  margin: 0;
}

.header-one-wrapper .left-side-header .category-area .category-sub-menu li a {
 
  color: #1F1F25;
  font-size: 14px;
  font-weight: 600;
  display: ruby;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  margin: 0px -9px;
  transition: all 0.3s;
  border-radius: 4px;
  background: transparent;
}

.sdCsss {
  padding: 4px 13px !important;
}
.bn0Borse {
  padding: 1px 10px !important;
}
.header-one-wrapper .left-side-header .category-area .category-sub-menu li a img {
  width: 45px;
}

.header-one-wrapper .left-side-header .category-area .category-sub-menu li a h4 {
  color: #1F1F25;
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.1;
}
.header-right-area-one {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media only screen and (max-width: 575px) {
  .header-right-area-one {
    gap: 6px;
  }
}

.header-right-area-one .buttons-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media only screen and (max-width: 767px) {
  .header-right-area-one .buttons-area {
    display: none;
  }
}

.header-right-area-one .buttons-area .rts-btn {
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.container-full {
  width: 100%;
  margin: auto;
  padding: 0 15px;
}
.menu-btn {
  cursor: pointer;
}

.menu-btn svg rect {
  fill: var(--color-primary);
}
.header-one.v-5 .header-top-one-wrapper {
  background: #4d33dd;
}

.header-one.v-5 .header-top-one-wrapper .left-information a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.header-one.v-5 .header-top-one-wrapper .left-information a i {
  color: #ffa41c;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .header-one.v-5 .header-top-one-wrapper.with-admin {
    display: block;
  }
}

@media only screen and (max-width: 575px) {
  .header-one.v-5 .header-top-one-wrapper.with-admin .left-information .email.none-sm {
    display: none;
  }
  .header-one.v-5 .header-top-one-wrapper .left-information a {
    font-size: 13px;
}
}
.right-information.admin-panel .has-child-menu a i {
  color: var(--color-primary);
}

.right-information.admin-panel .has-child-menu a span {
  color: #1F1F25;
  font-size: 16px;
  font-weight: 400;
}

.right-information.admin-panel .has-child-menu .sub-menu {
  min-width: 230px !important;
  left: -92% !important;
}

@media only screen and (max-width: 575px) {
  .right-information.admin-panel .has-child-menu .sub-menu {
    left: -210% !important;
  }
}
.right-information.admin-panel .has-child-menu .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 2px 12px !important;
}

.right-information.admin-panel .has-child-menu .sub-menu li a i {
  flex-basis: 30px;
  font-size: 18px;
}

.right-information.admin-panel .has-child-menu .sub-menu li a p {
  font-size: 14px;
  color: #08070F;
}
nav ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  padding: 19px 15px;
  display: block;
  color: #1F1F25;
  font-weight: 700;
  transition: 0.3s;
}

.header--sticky {
  position: relative;
  top: 0;
  display: block;
  width: 100%;
  box-shadow: none;
  background: #fff;
  z-index: 999;
  margin: auto;
  align-items: center;
  left: 0;
  border-radius: 0;
  transition: none;
  top: 0;
  transform: translateY(0);
}

@media only screen and (max-width: 767px) {
  .main-nav-one {
    display: none;
  }
}

.main-nav-one ul li {
  position: relative;
}

.main-nav-one ul li>a {
  padding: 19px 15px;
}

.main-nav-one ul li a.nav-link {
  color: #1F1F25;
  font-size: 16px;
  font-weight: 400;
}
.main-nav-one ul li.has-dropdown {
  margin-right: 13px;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .main-nav-one ul li.has-dropdown {
    margin-right: 12px;
  }
}

.main-nav-one ul li.has-dropdown a {
  position: relative;
}

.main-nav-one ul li.has-dropdown a.nav-link {
    padding: 17px 6px;
    color: #1F1F25;
    font-size: 13px;
    font-weight: 400;
}

.main-nav-one ul li.has-dropdown .submenu {
  min-width: 304px;
  height: auto;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: 0.3s;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  border-left: 1px solid #ffffff14;
  border-bottom: 1px solid #ffffff14;
  border-right: 1px solid #ffffff14;
  display: inline-block;
  box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
  padding: 14px 0;
  transform-origin: 0 0;
  transform: scaleY(0);
}

.main-nav-one ul li.has-dropdown .submenu li {
  margin-right: 0;
  padding: 0;
}

.main-nav-one ul li.has-dropdown .submenu li:last-child a {
  border: none;
}
.main-nav-one ul li.has-dropdown .submenu li a {
  padding: 6px 12px;
  margin: 2px 10px;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s;
  border-radius: 4px;
}
.main-nav-one ul li.has-dropdown .megamenu-hub {
  min-width: 100%;
  height: auto;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: 0.3s;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  border-left: 1px solid #ffffff14;
  border-bottom: 1px solid #ffffff14;
  border-right: 1px solid #ffffff14;
  display: inline-block;
  box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
  padding: 40px 80px;
  transform-origin: 0 0;
  transform: scaleY(0);
}
.main-nav-one ul li.has-dropdown .megamenu-hub li {
  display: flex;
}

.main-nav-one ul li.has-dropdown .megamenu-hub li ul {
  flex-direction: column;
  flex-basis: 52%;
  text-align: left;
  align-items: flex-start;
  position: relative;
}

.clmpuCss {
  margin-bottom: 8px;
  font-weight: 600;
}

.main-nav-one ul li.has-dropdown .megamenu-hub li ul li {
  display: block;
}
.main-nav-one ul li.has-dropdown .megamenu-hub li ul li a {
  padding: 6px 0px;
  font-weight: 400;
  font-size: 16px;
  font-weight: 400;
}

.main-nav-one ul li.has-dropdown .megamenu-hub li ul li span {
  position: absolute;
  left: 100%;
  top: 10px;
  font-size: 13px;
  border-radius: 2px;
  padding: 3px 8px;
  background: var(--color-primary);
  color: #fff;
  line-height: 1;
}

.main-nav-one ul li.has-dropdown .megamenu-hub li ul li span.popular {
  background: red;
}
.main-nav-one ul li.has-dropdown .megamenu-hub li .nav-mega-image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-basis: 50%;
}

.main-nav-one ul li.has-dropdown .megamenu-hub li .nav-mega-image a {
  padding: 0;
}

@media only screen and (max-width: 1199px) {
  .main-nav-one ul li.has-dropdown .megamenu-hub li .nav-mega-image a {
    max-width: 95%;
  }
}
.main-nav-one ul li.has-dropdown .megamenu-hub .absolute-image-shape img {
  position: absolute;
}

.main-nav-one ul li.has-dropdown .megamenu-hub .absolute-image-shape .two {
  position: absolute;
  right: -3%;
  top: -16%;
}
.header-right-area-one .menu-btn {
  display: none;
  padding: 10px 15px;
}

.main-nav-one ul li.has-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: translateY(0);
  transform: scaleY(1);
}


.main-nav-one ul li.has-dropdown:hover .megamenu-hub {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: translateY(0);
  transform: scaleY(1);
}

.main-nav-one ul li:hover a.nav-link {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .header-right-area-one .menu-btn {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .main-nav-one {
    display: none;
  }
}

.mobile-menu-main .buttons-area {
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.mobile-menu-main .buttons-area .rts-btn {
  font-size: 12px;
  padding: 5px 7px;
}

.mobile-menu-main .rts-social-style-one ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.mobile-menu-main .rts-social-style-one ul li {
  list-style: none;
  margin: 0;
}
#carouselExampleControls {
  opacity: 0;
}
.rts-btn {
  display: block;
  max-width: max-content;
  padding: 14px 34px;
  border-radius: 2px;
  transition: 0.3s;
  font-weight: 500;
  color: var(--color-primary);
}

@media (max-width: 576px) {
  .rts-btn {
    padding: 10px 25px;
  }
}

.rts-btn.btn-primary {
  background: #009846 !important;
  color: #000000;
  border: 2px solid #ffffff;
  padding: 6px 14px;
  box-shadow: 0px 0px 1px 0px #ddd;
  color: #fff;
}
.rts-btn.btn-border {
  border: 1px solid #BBB1F2;
  color: var(--color-primary);
}
.rts-btn.btn-primary-white {
  background: #fff !important;
  color: #110C2D;
  border: 1px solid transparent;
}

.banner-content-one {
  display: flex;
  align-items: center;
  padding: 160px 0;
}

@media (max-width: 991px) {
  .banner-content-one {
    padding: 60px 0 100px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-content-one {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 575px) {
  .banner-content-one {
    padding: 56px 0;
  }
}

.banner-content-one p.disc {
  max-width: 75%;
}

@media only screen and (max-width: 1199px) {
  .banner-content-one p.disc {
    min-width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .banner-content-one p.disc {
    max-width: 100%;
  }
}
.radious-0 {
  border-radius: 0;
}

.rts-banner-area-four {
  min-height: 550px;
  /* padding: 83px 30px 0px 30px !important; */
  background-image: url(assets/images/banner/03sss.jpg);
  display: flex;
  align-items: center;
  /*        background: #bce9ff24;*/
}

@media only screen and (max-width: 767px) {
  .rts-banner-area-four {
    height: auto;
  }

  .rts-banner-area-four {
    padding: 23px 14px 20px 14px !important;
  }

  .sukrisna_section_one {
    padding-top: 16px !important;
  }
}

.rts-banner-area-four .pre-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rts-banner-area-four .pre-title span {
  color: #553CDF;
}

.rts-banner-area-four .title-m {
  color: #353535;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-top: 17px;
  position: relative;
  font-family: revert;
}

@media only screen and (max-width: 1199px) {
  .rts-banner-area-four .title-m {
    font-size: 46px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 767px) {
  .rts-banner-area-four .title-m {
    font-size: 32px;
    line-height: 1.3;
  }
}

.rts-banner-area-four .title-m img {
  position: absolute;
  right: 108px;
  top: 16px;
}
@media only screen and (max-width: 1199px) {
  .rts-banner-area-four .title-m img {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .rts-banner-area-four .title-m img {
    display: none;
  }
}

.rts-banner-area-four .title-m span {
  color: #553CDF;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 74px;
  text-decoration: 4px underline #553CDF;
}

@media only screen and (max-width: 1199px) {
  .rts-banner-area-four .title-m span {
    font-size: 46px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 767px) {
  .rts-banner-area-four .title-m span {
    font-size: 28px;
    line-height: 1.3;
    text-decoration: 1px underline #553CDF;
  }
}

.rts-banner-area-four p.disc {
  max-width: 90%;
}

.banner-btn-author-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.sm-image-wrapper {
  display: flex;
  align-items: center;
  gap: 13px;
}

.sm-image-wrapper .images-wrap {
  display: flex;
  align-items: center;
}

.sm-image-wrapper .images-wrap img {
  position: relative;
  cursor: pointer;
  z-index: 1;
  transition: 0.3s;
  width: 70px;
}

.sm-image-wrapper .images-wrap img.two {
  margin-left: -20px;
}

.sm-image-wrapper .images-wrap img.three {
  margin-left: -20px;
}

.sm-image-wrapper .info .title {
  margin-bottom: 0;
  color: #221859;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: -5px;
}

.sm-image-wrapper .info span {
  color: #737477;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 0;
}
.banner-btn-author-wrapper {
  display: flex;
  align-items: center;
  gap: 39px;
}

@media only screen and (max-width: 1199px) {
  .banner-btn-author-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.banner-area-six {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-area-six .banner-inner-six {
  position: relative;
  max-width: 1920px;
  margin: auto;
}

.banner-area-six .banner-content-one {
  padding: 70px 0;
}

@media (max-width: 1200px) {
  .banner-area-six .banner-content-one {
    padding: 120px 0;
  }
}

@media (max-width: 991px) {
  .banner-area-six .banner-content-one {
    padding: 50px 0 120px 0;
  }
}

@media (max-width: 576px) {
  .banner-area-six .banner-content-one {
    padding: 50px 0 23px 0 !important;
  }
  .title-area-left-style {
    margin-top: 25px;
  }
  .why-choose-us {
    padding-bottom: 20px !important;
    padding-top: 0px !important;
  }

  .why-choose-main-wrapper-1 {
    margin-bottom: 22px !important;
  }}
  .banner-area-six .banner-content-one .inner .pre-title-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.banner-area-six .banner-content-one .inner .pre-title-banner span {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.banner-area-six .banner-content-one .inner .pre-title-banner img {
  max-width: 20px;
}

.banner-area-six .banner-content-one .inner .title-banner {
  color: #221859;
  font-size: 47px;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 54px;
  font-family: sans-serif;
}

@media (max-width: 1440px) {
  .banner-area-six .banner-content-one .inner .title-banner {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  .banner-area-six .banner-content-one .inner .title-banner {
    font-size: 58px;
  }
}

@media (max-width: 576px) {
  .banner-area-six .banner-content-one .inner .title-banner {
    font-size: 32px;
    line-height: 38px;
  }
}
.about-one-left-image {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 575px) {
  .about-one-left-image {
    flex-direction: column;
  }
}

.about-one-left-image img {
  border-radius: 6px;
}

.about-one-left-image .second-order {
  position: relative;
}

.about-one-left-image .first-order {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 575px) {
  .about-one-left-image .first-order {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .about-one-left-image .first-order .thumb-bottom {
    padding: 0 30px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .thumb-bottom {
    display: none;
  }
}

.about-one-left-image .first-order .thumb-bottom img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: top;
}

.about-one-left-image .first-order .thumb-one {
  position: relative;
  display: block;
}

.about-one-left-image .first-order .thumb-one .information {
  top: 52%;
  transform: translateY(-50%);
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  left: 24px;
}

.about-one-left-image .first-order .thumb-one .information .title {
  margin-bottom: 0;
  color: #fff;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 0px;
}

.about-one-left-image .first-order .thumb-one .information span.review {
  color: #fff;
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

@media only screen and (max-width: 767px) {
  .about-one-left-image .first-order .thumb-one .information span.review {
    font-size: 12px;
  }
}
.about-inner-right-one .author-area {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}

@media only screen and (max-width: 575px) {
  .about-inner-right-one .author-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.title-area-left-2 .pre-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.title-area-left-2 .pre-title span {
  color: var(--color-primary);
}

.title-area-left-2 .title {
  font-size: 48px;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  .title-area-left-2 .title {
    font-size: 26px;
    line-height: 1.3;
  }
}
.title-area-center-style,
.title-area-left-style {
  text-align: center;
}

.title-area-center-style .pre-title,
.title-area-left-style .pre-title {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.title-area-center-style .pre-title img,
.title-area-left-style .pre-title img {
  max-width: 20px;
}

.title-area-center-style .pre-title span,
.title-area-left-style .pre-title span {
  color: var(--color-primary);
  font-weight: 500;
}

.title-area-center-style .title,
.title-area-left-style .title {
  margin-bottom: 5px;
}

.title-area-left-style {
  text-align: left;
}

.title-area-left-style p {
  max-width: 100%;
}

@media only screen and (max-width: 575px) {
  .title-area-left-style p {
    width: 100%;
    max-width: 100%;
  }}
  
.title-area-left-style .pre-title {
  justify-content: flex-start;
}

.category-area-style-one {
  background-image: url(assets/images/bg/bg-1.jpg);
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: auto;
}

@media only screen and (max-width: 575px) {
  .category-area-style-one .shape-image {
    display: none;
  }
}

.category-area-style-one .shape-image .shape {
  position: absolute;
  z-index: -1;
}

.category-area-style-one .shape-image .shape.one {
  left: 6%;
  bottom: 30%;
}

.category-area-style-one .shape-image .shape.two {
  left: 25%;
  top: 10%;
}

.category-area-style-one .shape-image .shape.three {
  right: 15%;
  top: 20%;
}

.category-style-one {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #009846;
  display: block;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  min-height: 340px;
}

.category-style-one .title {
  color: #221859;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-top: 18px;
  margin-bottom: 0px;
}

.category-style-one span {
  color: #221859;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.mySwiper-category-1 {
  position: relative;
  padding-bottom: 70px;
}

.mySwiper-category-1 .swiper-pagination {
  max-width: max-content;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
}

.mySwiper-category-1 .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-primary);
  width: 8px;
  height: 8px;
}

.mySwiper-category-1 .swiper-button-next,
.mySwiper-category-1 .swiper-button-prev {
  color: var(--color-primary);
}

@media only screen and (max-width: 575px) {

  .mySwiper-category-1 .swiper-button-next,
  .mySwiper-category-1 .swiper-button-prev {
    display: none;
  }
}
.mySwiper-category-1 .swiper-button-next {
  right: 43%;
  bottom: 0;
  top: auto;
}

@media only screen and (max-width: 767px) {
  .mySwiper-category-1 .swiper-button-next {
    display: none;
  }
}

.mySwiper-category-1 .swiper-button-prev {
  left: 43%;
  bottom: 0;
  top: auto;
  right: auto;
}
@media only screen and (max-width: 767px) {
  .mySwiper-category-1 .swiper-button-prev {
    display: none;
  }
}

.bg-category-3 {
  background: #F6F6F6;
}
.header-one {
  max-width: 100%;
  margin: auto;
}
.co_css {
  font-size: 22px !important;
  margin-bottom: 10px !important;
  color: #090966 !important;
}

.sukrisna_section_Five {
  padding-top: 0px;
  padding-bottom: 0px;
}

.course-add-single-one.bg-p {
  background-image: url(assets/images/course/099.jpg);
  padding: 30px;
  border-radius: 6px;
}

.bg-pss {
  background-image: url(assets/images/course/09ss.png) !important;
}

@media only screen and (max-width: 575px) {
  .course-add-single-one.bg-p {
    padding: 30px;
  }
}

.course-add-single-one.bg-p.bg-p .title-area-left-style .pre-title span {
  color: #fff;
}

.course-add-single-one.bg-p.bg-p .title-area-left-style .title {
  color: #FFF;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
  font-family: var(--font-secondary);
  margin-bottom: 7px;
}

@media only screen and (max-width: 575px) {
  .course-add-single-one.bg-p.bg-p .title-area-left-style .title {
    font-size: 24px;
    line-height: 1.3;
  }
}
.course-add-single-one.bg-p .rts-btn,
.course-add-single-one.bg-y .rts-btn {
  padding: 10px 24px;
}

.course-add-single-one.bg-y {
  background-image: url(assets/images/course/10.jpg);
  padding: 25px;
  border-radius: 6px;
}

.fSrt4sw {
  font-size: 14px;
}

@media only screen and (max-width: 575px) {
  .course-add-single-one.bg-y {
    padding: 30px;
  }
}

.course-add-single-one.bg-y .title-area-left-style .pre-title span {
  color: #110C2D !important;
}

.course-add-single-one.bg-y .title-area-left-style .title {
  color: #110C2D;
  font-size: 23px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
  font-family: var(--font-secondary);
  margin-bottom: 7px;
}

@media only screen and (max-width: 575px) {
  .course-add-single-one.bg-y .title-area-left-style .title {
    font-size: 24px !important;
    line-height: 1.3;
  }
}

.category-single-list {
  display: flex;
  align-items: center;
  gap: 26px;
  border-radius: 6px;
  border: 1px solid #DDD8F9;
  transition: 0.3s;
}

.category-single-list .thumbnail {
  display: block;
  max-width: max-content;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
}

.category-single-list .thumbnail img {
  transition: 0.3s;
  transform: scale(1.08);
}

.category-single-list .information a .title {
  margin-bottom: 0;
  transition: 0.3s;
}

.category-single-list .information span {
  transition: 0.3s;
}
#exampleModal-login {
  top: 30%;
}

.login-pupup-modal .modal-dialog {
  max-width: 430px;
}

.login-pupup-modal .modal-content {
  padding: 30px;
  border-radius: 10px;
}

.login-pupup-modal .modal-content .modal-header {
  border: none;
}

.login-pupup-modal .modal-body {
  margin-top: 20px;
}

.login-pupup-modal .modal-body form input {
  margin-bottom: 25px;
  height: 45px;
  border-radius: 6px;
  border: 1px solid #DDD8F9;
}
login-pupup-modal .modal-body form label {
  font-size: 14px;
}

.login-pupup-modal .modal-body form button {
  max-width: 100%;
  padding: 11px;
}

.login-pupup-modal .modal-body form .dont-acc {
  font-size: 14px;
}

.login-pupup-modal .modal-body form .dont-acc a {
  margin-left: 15px;
  color: var(--color-primary);
}
.bg-choose-us-one {
  background-image: url(assets/images/why-choose/01.jpg);
}

.why-choose-us-area-image {
  /*display: flex;
  align-items: flex-end;
  position: relative;*/
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.why-choose-us-area-image img {
  /*  border-radius: 6px;*/
  min-width: max-content;
}
@media only screen and (max-width: 1199px) {
  .why-choose-us-area-image img {
    min-width: auto;
  }
}

@media only screen and (max-width: 575px) {
  .why-choose-us-area-image img {
    min-width: auto;
  }
}
.why-choose-main-wrapper-1 {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  /*margin-bottom: 50px;*/
}
.single-choose-reason-1 {
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #674EF2;
  max-width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 165px;
  height: 75px;
}
.single-choose-reason-1 .title {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 0;
}
.why-choose-us {
  position: relative;
  z-index: 1;
  background: #011494;
}

.why-choose-us .shape-image .shape {
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 575px) {
  .why-choose-us .shape-image .shape {
    display: none;
  }
}

.why-choose-us .shape-image .shape.one {
  left: 6%;
  bottom: 30%;
}

.why-choose-us .shape-image .shape.two {
  left: 25%;
  top: 10%;
}

.why-choose-us .shape-image .shape.three {
  right: 15%;
  top: 20%;
}

@media only screen and (max-width: 1199px) {
  .why-choose-us .shape-image .shape.three {
    top: 5%;
  }
}
.sukrisna_icons {
  width: 78px;
}

.sukrisna_section_one {
  padding-top: 73px;
  padding-bottom: 58px;
}

.sukrisna_section_Two {
  padding-top: 25px;
  padding-bottom: 25px;
}

.sukrisna_section_Three {
  padding-bottom: 32px;
  background: #f9f8fe;
}
.radious-0 {
  border-radius: 0;
}

.s5rss {
  padding-top: 57px;
  padding-bottom: 26px;
  background: #feffff;
}
.category-single-list.radious-0 .thumbnail img {
  transition: 0.3s;
  transform: scale(1.1);
  width: 106px;
}

.category-single-list.radious-0 .thumbnail {
  border-radius: 0 !important;
}

@media only screen and (max-width: 1199px) {
  .footer-callto-action-area {
    padding: 0 15px;
  }
}

.footer-callto-action-area .footer-one-main-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

@media only screen and (max-width: 1199px) {
  .footer-callto-action-area .footer-one-main-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized {
  flex-basis: 14%;
}

@media only screen and (max-width: 1199px) {
  .footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized {
    flex-basis: 45%;
  }
}

@media only screen and (max-width: 767px) {
  .footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized {
    flex-basis: 100%;
  }
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized.left-logo {
  flex-basis: 23%;
}

@media only screen and (max-width: 1199px) {
  .footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized.left-logo {
    flex-basis: 45%;
  }
}

@media only screen and (max-width: 767px) {
  .footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized.left-logo {
    flex-basis: 100%;
  }
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized.input-area {
  flex-basis: 27%;
}

@media only screen and (max-width: 1199px) {
  .footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized.input-area {
    flex-basis: 45%;
  }
}

@media only screen and (max-width: 767px) {
  .footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized.input-area {
    flex-basis: 100%;
  }
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .head {
  margin-bottom: 25px;
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .menu {
  padding: 0;
  list-style: none;
  margin: 0;
}
.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .menu li:last-child {
  margin-bottom: 0;
}
.bbggsss {
  padding-top: 26px;
  padding-bottom: 0px;
  background: #fff;
}

.menu li {
  margin-top: 1px !important;
  margin-bottom: 4px !important;
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .menu li a {
  color: #000000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 5px;
  transition: var(--transition);
}
.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .body form .input-area-fill {
  position: relative;
  margin-bottom: 20px;
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .body form .input-area-fill input {
  height: 56px;
  border-radius: 4px;
  border: 1px solid #DDD8F9;
}
.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .body form .input-area-fill button {
  position: absolute;
  right: 10px;
  max-width: max-content;
  padding: 7px 10px;
  background: var(--color-primary);
  border-radius: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .body .wrapper-list {
  padding: 0;
  margin: 0;
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .body .wrapper-list li {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 5px;
  font-size: 16px;
  align-items: flex-start;
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .body .wrapper-list li:last-child {
  margin-bottom: 0;
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .body .wrapper-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

@media (max-width: 576px) {
  .footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .body .wrapper-list li {
    font-size: 13px;
  }
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .body .wrapper-list li i {
  color: var(--color-primary);
}
@media only screen and (max-width: 1199px) {
  .footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized .body .wrapper-list li i {
    margin-top: 5px;
  }
}

.footer-callto-action-area .footer-one-main-wrapper .footer-singl-wized.input-area p.disc {
  margin-bottom: 25px;
}
.copyright-area-one-border {
  border-top: 1px solid #DDD8F9;
}

.copyright-area-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

@media only screen and (max-width: 575px) {
  .copyright-area-one {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
}

.copyright-area-one p {
  margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
  .copyright-area-one p {
    text-align: center;
  }
}
.footer-callto-action-area.bg-dark-footer-1 {
  background: #110C2D;
}

.footer-callto-action-area.bg-dark-footer-1 .wrapper-list li {
  color: #fff;
}

.footer-callto-action-area.bg-dark-footer-1 .footer-singl-wized .head .title {
  color: #fff;
}

.footer-callto-action-area.bg-dark-footer-1 .footer-singl-wized .menu li a {
  color: #fff !important;
}

.footer-callto-action-area.bg-dark-footer-1 .footer-singl-wized p.disc {
  color: #fff;
}
.footer-callto-action-area.bg-dark-footer-1 .footer-singl-wized .body form .input-area-fill input {
  border: 1px solid #ffffff;
  color: #fff;
}
.footer-callto-action-area.bg-dark-footer-1 .footer-singl-wized .body form .input-area-fill button {
  background: #fff;
  color: #110C2D;
}

.footer-callto-action-area.bg-dark-footer-1 .copyright-area-one-border {
  border-color: #ffffff;
}

.footer-callto-action-area.bg-dark-footer-1 .copyright-area-one-border .copyright-area-one p {
  color: #FFF;
}
.single-checkbox-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}
.search-input-area {
  transition: all 500ms ease;
  visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 57px 0;
  background: white;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-input-area .search-input-inner .input-div button {
  max-width: max-content;
  padding: 18px 21px;
  background: var(--color-primary);
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: block;
  margin-left: -9px;
  border-radius: 0 5px 5px 0;
}

.search-input-area .search-close-icon {
  cursor: pointer;
  position: absolute;
  right: 38px;
  top: 22px;
}

.search-input-area .search-close-icon i {
  position: relative;
  z-index: 1;
  color: var(--color-primary);
  transition: 0.3s;
  font-size: 18px;
}
.search-input-area .search-close-icon i::after {
  position: absolute;
  height: 45px;
  width: 45px;
  content: "";
  border-radius: 5px;
  background: #553cdf14;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}

#anywhere-home {
  cursor: url(assets/images/banner/shape/close.png), auto;
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 50;
}

.thumbnail-benefits-right-image {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .thumbnail-benefits-right-image img {
    width: 100%;
  }
}

.vedio-icone .video-play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  display: flex;
}

.vedio-icone .video-play-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -32%;
  top: -31%;
  display: block;
  width: 130px;
  height: 130px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  animation: waves 3s ease-in-out infinite;
}

.vedio-icone .video-play-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #fff;
  transition: all 200ms;
  border-radius: 50%;
}

.vedio-icone .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 15px solid var(--color-primary);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 47%;
}
.vedio-icone .video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
  display: none;
}
.vedio-icone .video-overlay .video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .container {
        max-width: 95%;
        margin: auto;
    }
}
@media only screen and (max-width: 1199px) {
  .container {
    max-width: 97%;
    margin: auto;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: 99%;
    margin: auto;
  }
}

.bg-blue .title-area-left-style .title {
  color: #fff;
}

.bg-blue .title-area-left-style p.post-title {
  color: #fff;
  margin-bottom: 13px;
}
.section-title-w-style-center {
  text-align: center;
}

.section-title-w-style-center .title {
  margin-bottom: 5px;
  color: #110C2D;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
}

@media only screen and (max-width: 767px) {
  .section-title-w-style-center .title {
    font-size: 26px;
    line-height: 1.3;
  }
}

.section-title-w-style-center p {
  margin-bottom: 0;
  color: #737477;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.btn {
  padding: 9px 38px;
  font-size: 14px;
}

body {
  padding-right: 0 !important;
}
.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 465px;
  padding: 40px 10px;
  padding-top: 50px;
  height: 100%;
  display: block;
  background-color: white;
  backdrop-filter: blur(7px);
  z-index: 1900;
  transition: all 600ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow: visible;
}

.side-bar.show {
  right: 0;
  overflow-y: auto;
}

@media only screen and (max-width: 575px) {
  .side-bar {
    width: 353px;
  }
}

.side-bar button {
  max-width: max-content;
  margin-right: auto;
  margin-left: -53px;
  margin-top: 0;
  position: absolute;
}

.side-bar button i {
  color: #ffffff;
  height: 50px;
  width: 50px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 35px;
  margin-top: -53px;
  font-size: 27px;
  background: var(--color-primary);
}

#side-bar .mobile-menu-main {
  display: none;
}

@media only screen and (max-width: 767px) {
  #side-bar .mobile-menu-main {
    display: block;
  }
  .title-area-center-style,
  .title-area-left-style {
    text-align: left;
  }
}
.mobile-menu-main nav ul {
  padding: 0 20px;
  display: block;
}

.mobile-menu-main nav ul li {
  margin: 0;
  padding: 0;
}

.mobile-menu-main nav ul li a.main {
  padding: 5px 0 13px 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
  font-weight: 500;
}

.mobile-menu-main nav ul li.has-droupdown {
  position: relative;
}

.mobile-menu-main nav ul li.has-droupdown ul {
  padding: 0;
}

.mobile-menu-main nav ul li.has-droupdown ul a {
  padding: 10px 0;
  font-weight: 400;
  font-size: 16px;
}

.mobile-menu-main nav ul li.has-droupdown ul a.tag {
  font-weight: 500;
  margin-top: 15px;
  font-size: 16px;
  border-bottom: 2px solid var(--color-primary);
  padding: 10px 0;
  margin-top: 0;
}

.mobile-menu-main nav ul li.has-droupdown ul li {
  margin: 7px 0 !important;
  border-bottom: 1px solid #f3f3f3;
  margin-top: 0 !important;
}

.mobile-menu-main nav ul li.has-droupdown::after {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 6 pro" !important;
  font-size: 16px;
  right: 0;
  font-weight: 400;
  top: 5px;
  padding: 8px 13px;
  color: #fff;
  background: var(--color-primary) !important;
  pointer-events: none;
  cursor: pointer;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul {
  padding: 0 20px;
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li {
  margin: 10px 0 !important;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  color: #1F1F25;
  font-size: 16px;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  font-size: 16px;
  color: #1F1F25;
}

.mobile-menu-main nav ul li a {
  display: block;
}
.contact-page-form input {
  height: 50px;
  border-radius: 4px;
  border: 1px solid #DDD8F9;
}

/* image modal form css start here  */
.custom-modal {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000c9;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.custom-modal-dialog {
  max-width: 750px;
  width: 750px;
  border-radius: 0px;
  position: relative;
}
.custom-modal-body {
  position: relative;
  display: flex;
}
.custom-modal-content {
  background: #ffffff;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: #1a0dab !important;
  opacity: 1;
  color: #ffffff;
  border-radius: 100%;
  border: 2px solid #ffffff;
  z-index: 9;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
  padding: 0;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  font-size: 24px;
}

.custom-modal {
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}

body.modal-open .custom-modal {
  opacity: 1;
  visibility: visible;
}

.custom-modal .custom-modal-dialog {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

body.modal-open .custom-modal .custom-modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.custom-modal,
body .custom-modal,
body.modal-open .custom-modal .custom-modal-dialog,
body .custom-modal .custom-modal-dialog {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}


.custom-modal {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000c9;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.custom-modal-dialog {
  max-width: 750px;
  width: 750px;
  border-radius: 0px;
  position: relative;
}

.custom-modal-body {
  position: relative;
  display: flex;

}


.custom-modal-content {
  background: #ffffff;

  border-radius: 10px;
}

form#pop3 .iti {
  margin-bottom: 10px;
}

.close-modal {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: #1a0dab;
  opacity: 1;
  color: #ffffff;
  border-radius: 100%;
  border: 2px solid #ffffff;
  z-index: 9;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
  padding: 0;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  font-size: 24px;
}

.custom-modal {
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
}

body.modal-open .custom-modal {
  opacity: 1;
  visibility: visible;
}

.custom-modal .custom-modal-dialog {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

body.modal-open .custom-modal .custom-modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.custom-modal,
body .custom-modal,
body.modal-open .custom-modal .custom-modal-dialog,
body .custom-modal .custom-modal-dialog {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.custom-modal-dialog {
  display: none;
}

body.modal-open .custom-modal-dialog {
  display: block !important;
}

.pop1 {
  width: 40%;
  max-width: 40%;
}

.pop1 img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.pop3 {
  text-align: center;
}

.pop2 h4 {
  font-size: 22px;
  color: #000;
  text-align: center;
  margin: 10px;
}

.pop2 {
  width: 60%;
  max-width: 60%;
}

.pop3 a {
  display: block;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
  text-transform: uppercase;
}

.pop3 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 7px;
  margin-bottom: 7px;
}

.pop3 a:nth-of-type(1) {
  background: #1bae51;
}

.pop3 a:nth-of-type(2) {
  background: #1a0dab;
}

@media (max-width: 767px) {
  .pop3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .pop31 a {
    display: inline-block;
    /* padding: 12px 20px; */
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    text-align: center;
    width: 100%;
    margin-right: 10px;
    box-sizing: border-box;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 2px;
  }

  .pop31 a:last-child {
    margin-right: 0;
    width: 100%;
  }

  .whatsapp-btn {
    background-color: #25D366;
    border: none;
  }
 .call-btn {
    background-color: #1a0dab;
    border: none;
  }
  .pop31 a i {
    margin-right: 8px;
  }
}

.pop4 {
  margin-left: 20px;
  margin-right: 20px;
}

.pop5 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.pop6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 5px;
  padding-right: 5px;
}

.pop6 label,
.pop5 label {
  display: block;
  color: #a0073a;
  font-size: 14px;
  font-weight: bold;
}

.pop6 input,
.pop6 select,
.pop5 input,
.pop5 select {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  height: 40px;
}

.pop5 button {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.4px;
  white-space: nowrap;
  line-height: 18px;
  border-radius: 8px;
  background: #1BAE51;
  color: #fff !important;
  border: none;
  box-shadow: 1px 0 25px -8px rgba(0, 0, 0, .45) !important;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  transition: all .2s ease;
  text-align: center;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  width: 100%;
  margin: 10px auto;
}
@media screen and (max-width: 767px) {
  .pop1 {
    display: none !important;
  }

  .custom-modal-body {
    display: block !important;
    width: 100% !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .pop2 {
    width: 100%;
    max-width: 100%;
  }

  .custom-modal-dialog {
    width: 100% !important;
  }

  .pop4 {
    margin-left: 7px !IMPORTANT;
    margin-right: 7px !important;
  }

  .pop5,
  .pop6 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .pop5 button {
    width: 100% !important;
  }

  .pop2 h4 {
    margin-left: 0px !important;
    margin-right: 0 !important;
    font-size: 18px !important;
  }
}
 .studyMertSukrishna {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem; 
}

.studyMertSukrishna h2 {
       color: #09086e;
    font-weight: 600;
    text-transform: capitalize;
}
.studyMertSukrishna h2 span {
     color: #1c0d6c;
}
.featuresss {
 display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    /* max-width: 600px; */
    margin-bottom: 3rem;
}

.feature-boxsss {
     background-color: #1c4133;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.feature-boxsss img {
     width: 40px;
    margin-bottom: 0.5rem;
    filter: invert(1);
}
.feature-boxsss p {
       font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
}
/* ðŸ’¡ Desktop View */
@media (min-width: 768px) {
  .studyMertSukrishna {
               flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 4rem 5% 0px;
        border-bottom: 4px solid #221859;
  }
  .featuresss{
    grid-template-columns: repeat(4, 1fr);
  } 
}
  

.cta-btnsss {
     background-color: #e63946;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    text-transform: capitalize;
}
.image-section {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.girl-img {
  width: 70%;
  max-width: 320px;
}
.specilacountr .title{
  font-size: 30px !important;
  margin-top: 10px;
  margin-bottom: -5px;
}
.blog-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
        height: 100%;
    }
 .blog-img img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .blog-content {
        padding: 20px;
    }
    .blog-content h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }
    .blog-content p {
        font-size: 14px;
        color: #555;
    }
    .blog-content span{
      font-size: 14px;
    }
      .blog-btn {
        display: inline-block;
        padding: 4px 14px;
        background: linear-gradient(135deg, #dc3545, #b02a37);
        color: #fff !important;
        border-radius: 20px;
        font-size: 13px;
        text-decoration: none;
    }
     .branch-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
        height: 100%;
    }
    .branch-img img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    .branch-content {
        padding: 20px;
        min-height:260px;
    }
    .branch-content h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }
    .branch-content p {
        font-size: 14px;
        color: #555;
        margin-bottom: 15px;
    }
    /* Icons */
    .branch-icons {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 18px;
    }
    .branch-icons a {
        color: #fff;
        transition: 0.3s;
        margin-left: 15px;
    }
    /* Button */
    .branch-btn {
        display: inline-block;
        padding: 1px 12px;
        background: linear-gradient(135deg, #dc3545, #b02a37);
        color: #fff;
        border-radius: 20px;
        font-size: 12px;
        text-decoration: none;
        font-weight: 500;
    }
      .cobt {
    background: #e3f1eaf5;
    color: #000 !important;
    padding: 2px 10px;
    font-size: 12px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: inline-block;
}
/*new batches styling */
.new-batch-section{
background:#f9fbfb;
padding:80px 0;
color:#fff;
}
.batch-content h2 span{
color:#ffd200;
}
.batch-badge{
background:#ffd200;
color:#000;
padding:6px 14px;
border-radius:30px;
font-weight:600;
display:inline-block;
margin-bottom:15px;
}
.batch-features{
list-style:none;
padding:0;
margin-top:20px;
}
.batch-features li{
margin-bottom:10px;
font-size:16px;
}
.batch-btn{
display:inline-block;
margin-top:20px;
background:#ffd200;
color:#000;
padding:12px 28px;
font-weight:600;
border-radius:5px;
text-decoration:none;
transition:0.3s;
}
.batch-image img{
width:688px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
margin-top:10px;
}
.testimonial-marquee {
    overflow: hidden;
    padding: 40px 0;
    background: #f8f9fb;
}
.testimonial-track {
    display: flex;
    gap: 25px;
    animation: scroll 40s linear infinite;
}
.testimonial-card {
    min-width: 500px;
    max-width: 500px;
    background: azure;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 10px;
}

.badge {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}
.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}
.author h5 {
    margin: 0;
    font-weight: 600;
}
.author span {
    font-size: 13px;
    color: #777;
}
.sbicons {
    width: 16px;
    filter: invert(1);
}
