:root {
  --primary-color: #34ad2d;
  --secondary-color: #ef7e3d;
  --tertiary-color: #2e3387;
  --light-color: #fff8e4;
  --grey-color: #c5c5c5;
  --black-color: #000000;
  --white-color: #ffffff;
  --text-color: #383838;
  --text-color: #383838;
  --primary-transition: all ease-in-out 0.35s;
  --box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  --box-shadow-big: 0px 8px 20px 5px rgba(0, 0, 0, 0.2);
}

* {
  scrollbar-color: var(--secondary-color) var(--grey-color);
  scrollbar-width: thin;
}

a,
a:hover {
  text-decoration: none;
}

ul li,
ol li {
  list-style: none;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--grey-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.sc-pt-70 {
  padding-top: 70px;
}

.sc-pb-70 {
  padding-bottom: 70px;
}

.sc-pt-50 {
  padding-top: 50px;
}

.sc-pb-50 {
  padding-bottom: 50px;
}

.sc-pt-30 {
  padding-top: 30px;
}

.sc-pb-30 {
  padding-bottom: 30px;
}

.sc-pb-20 {
  padding-bottom: 20px;
}

.sc-pb-30 {
  padding-bottom: 30px;
}

.sc-pb-50 {
  padding-bottom: 50px;
}

/* ===================================
   Large Desktop
===================================*/
@media (max-width: 1199px) {

  .sc-pt-70 {
    padding-top: 60px;
  }

  .sc-pb-70 {
    padding-bottom: 60px;
  }

  .sc-pt-50 {
    padding-top: 45px;
  }

  .sc-pb-50 {
    padding-bottom: 45px;
  }

}


/* ===================================
   Tablet
===================================*/
@media (max-width: 991px) {

  .sc-pt-70 {
    padding-top: 50px;
  }

  .sc-pb-70 {
    padding-bottom: 50px;
  }

  .sc-pt-50 {
    padding-top: 40px;
  }

  .sc-pb-50 {
    padding-bottom: 40px;
  }

  .sc-pt-30 {
    padding-top: 25px;
  }

  .sc-pb-30 {
    padding-bottom: 25px;
  }

}


/* ===================================
   Mobile
===================================*/
@media (max-width: 767px) {

  .sc-pt-70 {
    padding-top: 40px;
  }

  .sc-pb-70 {
    padding-bottom: 40px;
  }

  .sc-pt-50 {
    padding-top: 30px;
  }

  .sc-pb-50 {
    padding-bottom: 30px;
  }

}

.d-block {
  display: block !important;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.heading-one {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.heading-two {
  font-size: 32px;
  line-height: normal;
  color: #03045e;
  font-weight: 700;
}

.heading-two span {
  color: var(--primary-color);
}

.heading-three {
  font-size: 28px;
  line-height: normal;
  color: #525252;
  font-weight: 700;
  margin-bottom: 25px;
}

.heading-three span {
  color: #34ad2d;
}

.heading-four {
  font-size: 24px;
  line-height: normal;
  color: #525252;
  font-weight: 500;
  margin-bottom: 30px;
}

.heading-four span {
  color: #34ad2d;
}


/* ===================================
   Large Desktop
===================================*/
@media (max-width: 1199px) {

  .heading-one {
    font-size: 36px;
  }

  .heading-two {
    font-size: 30px;
  }

  .heading-three {
    font-size: 26px;
  }

  .heading-four {
    font-size: 22px;
  }

}


/* ===================================
   Tablet
===================================*/
@media (max-width: 991px) {

  .heading-one {
    font-size: 32px;
  }

  .heading-two {
    font-size: 26px;
  }

  .heading-three {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .heading-four {
    font-size: 20px;
    margin-bottom: 20px;
  }

}


/* ===================================
   Mobile
===================================*/
@media (max-width: 767px) {

  .heading-one {
    font-size: 20px;
  }

  .heading-two {
    font-size: 18px;
  }

  .heading-three {
    font-size: 17px;
    margin-bottom: 15px;
  }

  .heading-four {
    font-size: 16px;
    margin-bottom: 15px;
  }

}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

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

/* buttons */
.button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  color: var(--black-color);
  font-size: 16px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--tertiary-color);
  border-radius: 6px;
  z-index: -2;
}

.button:before {
  content: "";
  position: absolute;
  bottom: 0;
  /* Start from bottom */
  left: 0;
  width: 100%;
  height: 0%;
  /* Initially no height */
  background-color: var(--primary-color);
  transition: height 0.3s ease;
  border-radius: 6px;
  z-index: -1;
}

.button:hover {
  color: var(--white-color);
}

.button:hover:before {
  height: 100%;
  /* Expand to top */
}

.button-primary {
  color: var(--white-color);
}

.button-primary:after {
  background-color: var(--primary-color);
}

.button-primary:before {
  background-color: var(--tertiary-color);
}

.button-primary:hover {
  color: var(--white-color);
}

.button-tertiary {
  color: var(--white-color);
}

.button-tertiary:after {
  background-color: var(--primary-color);
}

.button-tertiary:before {
  background-color: var(--tertiary-color);
}

/* Slick Dots */
.slick-dots {
  display: flex;
  margin-top: 50px;
}

.slick-dots li {
  margin: 0;
}

.slick-dots li button,
.slick-dots li.slick-active button:before {
  color: transparent;
  opacity: 1;
}

.slick-dots li button {
  margin: 0 4px;
  background-color: var(--white-color);
  border-radius: 100%;
  display: block;
  height: 8px;
  width: 8px;
  padding: 0;
  border: 0;
}

.slick-dots li.slick-active button {
  background-color: var(--secondary-color);
}

.buttonSml {
  padding: 2px 20px !important;
}

/* HEADER STYLE */
.main-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  transition: var(--primary-transition);
}

.main-header.fixed-header {
  box-shadow: 0 3px 5px rgb(0 0 0 / 11%);
  background-color: var(--white-color);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overview-x-hidden {
  overflow-x: hidden !important;
}

.main-header .logo-widget {
  padding-top: 10px;
  padding-bottom: 10px;
  transition: var(--primary-transition);
}

.main-header .logo-widget {
  transition: width 0.5s ease, height 0.5s ease;
  width: 141px;
}

.main-header.fixed-header .logo-widget {
  width: 100px;
}

.main-header.fixed-header .logo-widget {
  padding-top: 5px;
  padding-bottom: 5px;
}

.header-widget {
  display: flex;
  align-items: center;
}

.hamburger {
  position: fixed;
  left: 25px;
  top: 0;
  display: none;
}

.hamburger span {
  background: var(--black-color);
}

.main-header.fixed-header .hamburger span {
  background: var(--black-color);
}

.main-header.fixed-header .hamburger {
  top: -10px;
}

/* Main Navigation */
.main-navigation .menu {
  display: flex;
  width: auto;
  height: auto;
  background-color: transparent;
}

.main-navigation ul li {
  padding: 0 25px;
  position: relative;
}

.main-navigation ul li.sub-menu::before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 16px;
  height: 10px;
  background: transparent url(../images/nav-down-arrow-b.png) no-repeat 0 0;
}

/* .main-header.fixed-header .main-navigation ul li.sub-menu::before {
  background: transparent url(../images/nav-down-arrow-b.png) no-repeat 0 0;
  width: 16px;
  height: 10px;
  
} */
.main-navigation ul>li>a {
  padding: 42px 0;
  font-size: 16px;
  display: block;
  line-height: 1.2;
  color: var(--black-color);
  position: relative;
}

/* Line hover effect only for top-level items */
.main-navigation ul>li>a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 3px;
  width: 0;
  background: var(--tertiary-color);
  transition: width 0.3s ease, left 0.3s ease;
}

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

.main-navigation>ul>li>a:hover::after,
.main-navigation>ul>li.current-menu-item>a::after {
  width: 100%;
  left: 50%;
  transform: translateX(-50%) scaleX(1);
}

/* Submenu items (no line hover effect) */
.main-navigation ul>li>ul li a::after,
.main-navigation ul>li>ul li:hover>a::after {
  content: none;
}

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

/* Submenu styles */
.main-navigation ul>li>ul>li {
  position: relative;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.main-navigation ul>li>ul>li>a {
  padding: 10px 0;
  color: var(--black-color);
}

/* Dropdown and submenu */
.main-navigation>ul>li ul {
  padding: 0;
  position: absolute;
  top: 100%;
  left: 5px;
  opacity: 0;
  visibility: hidden;
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  width: 200px;
  transform: translate3d(0, 10px, 0);
  transition: var(--primary-transition);
}

.main-navigation>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

/* Sub-submenu positioning */
.main-navigation>ul>li>ul>li ul {
  position: absolute;
  top: -1px;
  left: 100%;
  opacity: 0;
  visibility: hidden;
  width: 230px;
  transform: translate3d(0, 10px, 0);
  transition: all 0.3s ease;
}

.main-navigation>ul>li>ul>li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

/* Submenu > Submenu (rotate arrow 90 degrees) */
.main-navigation ul .sub-menu .sub-menu::before {
  transform: translateY(-50%) rotate(-90deg);
  /* Rotate by 90 degrees */
  right: 10px;
}

/* Submenu links */
.main-navigation ul>li>ul li a {
  font-size: 14px;
  padding: 10px 15px;
  display: block;
  text-align: left;
}

/* Top-level submenu arrow */
.main-navigation ul .sub-menu::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../images/arrow-down.svg) no-repeat;
  width: 11px;
  height: 6px;
}

/* Reduce padding when header is fixed (for top-level items only) */
.main-header.fixed-header .main-navigation>ul>li>a {
  padding: 25px 0;
  color: var(--black-color);
}

/* Submenu items (no padding change on fixed header) */
.main-navigation ul>li>ul li>a {
  padding: 10px 15px;
  /* Submenu padding remains unchanged */
}

/* Distuributor*/
.blob-btn {
  z-index: 1;
  position: relative;
  padding: 12px 30px;
  text-align: center;
  color: var(--white-color);
  font-size: 16px;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 6px;
}

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

.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: var(--primary-color);
}

.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}

.blob-btn__blob {
  position: absolute;
  top: 0px;
  width: 32%;
  height: 100%;
  background: var(--tertiary-color);
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}

.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}

/* Fixing the @supports block */
@supports (filter: url("#goo")) {
  .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
    /* Fixing incorrect nesting */
  }

  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
    /* Same fix applied for hover state */
  }
}

/* Banner */
.banner {
  position: relative;
}

.banner .item {
  position: relative;
  overflow: hidden;
}

.banner .item .main-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.banner .item .cover {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.banner .item .cover .banner-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.banner .item .cover .banner-content .row {
  align-items: center;
}

.banner .item .cover .banner-content .heading,
.banner .item .cover .banner-content p {
  color: var(--black-color);
}

/* Keyframes for fadeInUpAnimation */
@-webkit-keyframes fadeInUpAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
    /* Start 20px below */
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    /* End at original position */
  }
}

@keyframes fadeInUpAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
    /* Start 20px below */
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    /* End at original position */
  }
}

.banner-content .banner-cont-ara,
.banner-content .button {
  opacity: 1;
  transform: translateY(0);
}

.banner-content .button.fadeInUp {
  animation-delay: 0.5s;
}

.banner .progress-line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  background-color: var(--tertiary-color);
}

.banner .slick-dots {
  margin: 0;
  position: absolute;
  right: 40px;
  bottom: 40px;
}

.banner-content h4 {
  color: #555555;
  font-size: 20px;
  font-weight: bold;
}


.tulip-img {
  max-width: 200px;
}

.hkStar-img {
  max-width: 125px;
}

.gradesup-img {
  max-width: 150px;
}


.banner-content p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.banner-content .col-1 {
  width: 50%;
}

.banner .banner-img {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.banner .button {
  margin-right: 15px;
  color: var(--white-color);
}

/* about-sec */
.about-sec {
  background: none !important;
  position: relative;
}

.about-sec .col-1 {
  width: 40%;
}

.about-sec .col-2 {
  width: 60%;
}

.about-sec .col-1-1 {
  width: 50%;
}

.about-sec .img {
  position: relative;
}

.about-sec .about-icons {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.about-left-shape img,
.about__shape-wrap-two img {
  position: absolute;
  z-index: -1;
}

.about-left-shape img {
  left: 0;
  bottom: 0;
}

.about-shape-wrap img {
  position: absolute;
  z-index: -1;
}

.about-shape-wrap img:first-child {
  right: 10%;
  top: 20%;
}

.about-shape-wrap img:nth-child(2) {
  right: 6%;
  top: 36%;
  z-index: -2;
}

.ribbonRotate {
  animation-name: moveXY3;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes moveXY3 {

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

  25% {
    transform: translate(15px, -20px);
  }

  50% {
    transform: translate(-20px, 15px);
  }

  75% {
    transform: translate(25px, -15px);
  }
}

.about-sec p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-sec .about-con {
  display: flex;
  align-items: flex-start;
}

.about-sec .about-con .about-icons {
  width: 60px;
}

.about-sec .about-con .about-icons img {
  transition: 0.6s;
}

.about-sec .about-con:hover .about-icons img {
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
  -ms-filter: fliph;
  /*IE*/
  filter: fliph;
  /*IE*/
}

.about-sec .about-con .about-cns {
  flex: 1;
  margin-left: 15px;
}

.about-cns p {
  font-size: 14px;
}

.about-sec .about-con .about-cns h4 {
  color: #191d88;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-sec .about-con .about-cns h4 span {
  color: var(--black-color);
  display: block;
}

.about-sec .img {
  position: relative;
  top: 20px;
}

.about-sec .img .img-roind {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -85px;
}

@media screen and (max-width: 1024px) {
  .main-header .logo-widget {
    margin-left: 48px;
  }

  .hamburger {
    display: block;
  }

  .main-navigation {
    display: none;
  }

  .banner .item .main-img {
    height: 90vh;
  }
}

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

  .about-sec .col-1,
  .about-sec .col-2,
  .about-sec .col-1-1,
  .about-sec .col-1-2 {
    width: 100%;
  }

  .about-sec .col-2 {
    margin-top: 10px;
  }

  .about-sec .col-1-1 {
    margin-top: 20px;
  }


  .about-sec .img {
    top: 0px;
  }
}

@media screen and (max-width: 767px) {
  .banner .item .main-img {
    height: 100vh;
  }

  .banner h2 {
    margin-top: 0;
  }

  .main-header .logo-widget,
  .main-header.fixed-header .logo-widget {
    width: 75px;
  }

  .main-header .hamburger {
    top: 15px;
    left: 15px;
  }

  .main-header.fixed-header .hamburger {
    top: 0;
    left: 15px;
  }

  .main-header .logo-widget {
    margin-left: 42px;
  }

  .banner-cont {
    margin-top: 30px;
  }

  .banner .col {
    width: 100%;
  }

  .banner .slick-dots {
    bottom: 40px;
  }

  .banner .banner-img img {
    padding-left: 0;
    max-width: 110px;
    margin: 0 auto;
  }

  .main-header .logo-widget {
    margin-top: 2px;
  }

  .blob-btn {
    padding: 5px 12px;
    background: #34ad2d;
  }

  .blob-btn__inner {
    display: none;
  }

  .social li a {
    font-size: 20px;
    line-height: 33px;
    width: 30px;
    height: 30px;
  }

  .about-sec p {
    font-size: 15px;
  }

  .button {
    padding: 8px 20px;
    font-size: 14px;
  }



  .heading-one br {
    display: none;
  }

  .product-fourth .row {
    flex-direction: column-reverse;
  }

  .product-third.complete .row {
    flex-direction: column;
  }

  .school-page .service-con p {
    margin-top: 30px;
  }
}

/* inner-page */
.inner-page .main-header {
  background-color: #ffffff;
  box-shadow: 0 3px 5px rgb(0 0 0 / 11%);
}

.inner-page .main-header.fixed-header {
  background-color: var(--white-color);
}

.innerPage.school-page {
  background: url(../images/tulump-baaer-bg.jpg) no-repeat center top -140px;
}

.school-page .product-first {
  background: transparent;
}

.school-page .product-first .container {
  background: url(../images/tulump-baaer.png) no-repeat right 5px;
  padding-top: 190px;
  padding-bottom: 110px;
}

.school-page .content-section h2 {
  color: #0c2061;
}

.school-page .product-Second,
.school-page .product-Second .product-Second-middle {
  background: transparent;
}

.school-page .product-Second .admin-mbile-bg {
  background: #fff url(../images/product-Second-m-bg.png) no-repeat center center;
  padding: 0 100px;
}

.school-page .product-Second .first-apnel p,
.school-page .service-con p {
  font-size: 24px;
  line-height: 1.5;
}

.school-page .product-Second .first-apnel h3,
.school-page .service-con h3 {
  color: #0c2061;
}

.school-page .product-Second .first-apnel h3 strong:after {
  display: none;
}

.school-page .product-Second .inner-admin {
  padding: 0 0;
}

.school-page .product-third {
  background: #fff;
  padding-bottom: 100px;
}

.school-page .product-fourth {
  background: linear-gradient(90deg,
      rgba(243, 220, 235, 1) 0%,
      rgba(242, 251, 254, 1) 100%);
  padding-bottom: 100px;
  position: relative;
}

.school-page .product-fourth::before {
  background: url(../images/top-round.png) no-repeat 50% 100%;
  width: 100%;
  height: 230px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  content: "";
}

.school-page .service-con ul li p {
  line-height: 20px !important;
}

@media screen and (max-width: 1370px) {
  .banner .item .cover .banner-content {
    padding-top: 70px;
  }

  .banner .banner-img img {
    max-height: 400px;
  }
}

@media screen and (max-width: 1024px) {
  .banner .item .cover .banner-content {
    padding-top: 0;
  }

  .banner .banner-img img {
    max-height: inherit;
  }

  .school-page .product-first .container {
    background-size: contain;
  }

  .innerPage.school-page {
    background-size: 100% 23%;
  }

  .school-page .product-first .col-1 {
    width: 390px;
  }

  .school-page .product-first .container {
    padding-bottom: 110px;
  }

  .school-page .product-Second .container {
    padding-bottom: 50px;
  }

  .school-page .product-Second .first-apnel p,
  .school-page .service-con p {
    font-size: 20px;
  }

  .school-page .product-Second .inner-admin ul li {
    width: 100%;
  }

  .school-page .product-Second .inner-admin {
    margin-top: 0;
  }
}

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

  .school-page .product-first .container {
    background: none;
  }

  .school-page .product-first .container {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .school-page .product-first .col-1 {
    width: 100%;
  }

  .school-page .product-Second .inner-admin .col-1,
  .school-page .hkstar-Second .inner-admin .col-1 {
    margin: 0 auto;
  }

  .school-page .product-Second .inner-admin .col-2,
  .school-page .hkstar-Second .inner-admin .col-2 {
    width: 100%;
  }

  .school-page .product-Second .admin-mbile-bg {
    padding: 0;
    width: 100%;
    position: relative;
  }

  .school-page .product-Second .admin-mbile-bg {
    background-image: none;
  }

  .school-page .product-Second .admin-mbile-bg::after {
    background: #fff url(../images/product-Second-m-bg.png) no-repeat center center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 588px;
    height: 574px;
    background-size: contain;
  }

  .school-page .product-fourth {
    background-size: cover;
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .school-page .product-third {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .banner-content h4 {
    font-size: 16px;
  }

  .school-page .product-Second {
    overflow-x: hidden;
  }

  .school-page .product-Second .admin-mbile-bg::after {
    width: 438px;
    height: 372px;
  }

  .school-page .product-Second .first-apnel p,
  .school-page .service-con p {
    font-size: 18px;
  }

  .school-page .service-con h3 {
    margin-top: 0;
    margin-bottom: 25px;
  }

  .school-page .product-third .col-1 {
    margin-top: 0;
  }
}

@media screen and (max-width: 576px) {
  .school-page .product-Second {
    overflow: hidden;
  }

  .innerPage.school-page {
    background-size: 100% 12%;
  }

  .school-page .product-Second .inner-admin .col-1 div.admin-mbile,
  .school-page .hkstar-Second .inner-admin .col-1 div.admin-mbile {
    width: 198px;
  }
}

.innerPage.hotelPage {
  background: url(../images/hkstarhotel-first-bg.png) no-repeat center top;
}

.hotelPage .product-hkstar-first {
  background: transparent;
}

.hotelPage .product-hkstar-first .container {
  background: url(../images/star-hotel-management-top-d.png) no-repeat center top 20px;
  padding-top: 100px;
  padding-bottom: 220px;
}

.hotelPage .content-section h2 {
  color: #0c2061;
}

.hotelPage .hkstar-Second,
.hotelPage .hkstar-Second .hkstar-Second-middle {
  background: transparent;
  color: #424242;
}

.hotelPage .hkstar-Second .first-apnel {
  margin-top: -14px;
}

.hotelPage .hkstar-Second .container {
  background: transparent;
  padding-top: 0;
  padding-bottom: 100px;
}

.hotelPage .hkstar-Second p {
  margin-bottom: 25px;
}

.hotelPage .hkstar-Second .inner-admin {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
}

.hotelPage .product-fourth {
  background: linear-gradient(90deg, #d4f4fd 0%, rgb(250 253 236) 100%);
  padding-bottom: 100px;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hotelPage .product-fourth::before {
  background: url(../images/top-round.png) no-repeat 50% 100%;
  width: 100%;
  height: 230px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  content: "";
}

.school-page .product-fiftth .fifth-top h3,
.hotelPage .product-fiftth .fifth-top h3 {
  color: #0c2061;
}

/*.school-page .product-fiftth .fifth-top h3 span:after,
.hotelPage .product-fiftth .fifth-top h3 span:after {
  display: none;
}*/
.product-fourth .service-con p.top {
  font-size: 24px;
  line-height: 1.5;
}

@media screen and (min-width: 776px) {
  .hotelPage .hkstar-Second .inner-admin .col-2 {
    width: 50%;
  }
}

.product-faq {
  background-color: #f2fafd;
  padding-top: 100px;
  padding-bottom: 100px;
}

.product-faq h3 {
  font-size: 35px;
  line-height: 45px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #0c2061;
}

.product-faq p.top {
  font-size: 24px;
  line-height: 1.5;
}

.product-faq-panel {
  margin-top: 50px;
}

.product-faq-panel h4 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 20px;
  color: #0c2061;
}

.product-faq-panel h5 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  color: #908ed4;
}

.product-faq-panel .faq-container {
  background-color: white;
  color: black;
  border-radius: 20px;
  box-shadow: 0 2px 5px 0 rgb(0, 0, 0, 0.1);
  margin: 0 0 20px 0;
}

.product-faq-panel .question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 15px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.product-faq-panel .question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.product-faq-panel .question.active::after {
  transform: rotate(45deg);
}

.product-faq-panel .answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.product-faq-panel .answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}


@media screen and (max-width: 790px) {
  .product-faq-panel {
    font-size: 14px;
  }

  .product-faq-panel .wrapper {
    width: 80%;
  }

  .tulip-img {
    max-width: 130px;
    margin-bottom: 15px;
  }

  .hkStar-img {
    max-width: 80px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .hotelPage .product-hkstar-first .container {
    background: transparent;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hotelPage .content-section p br {
    display: none;
  }

  .hotelPage .hkstar-Second {
    padding-top: 0;
  }

  .hotelPage .product-Second .inner-admin .col-2,
  .hotelPage .hkstar-Second .inner-admin .col-2 {
    padding-top: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .hotelPage .hkstar-Second .inner-admin ul {
    margin-left: 0;
  }

  .forminput .inputbox:last-child {
    margin-bottom: 25px !important;
    margin: 0;
  }

  .product-faq {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.home-banner {
  position: relative;
}

.home-banner .down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  z-index: 15;
  width: 50px;
  cursor: pointer;
}

@keyframes upDown {
  0% {
    bottom: 10px;
    /* Start position */
  }

  50% {
    bottom: 20px;
    /* Move up */
  }

  100% {
    bottom: 10px;
    /* Back to start position */
  }
}

.down {
  animation-name: upDown;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  /* Smooth animation */
  position: relative;
  /* Ensure positioning for `bottom` to work */
}

/* Home Page New Sections Styles */
.industry-box {
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--primary-transition);
  height: 100%;
  margin-bottom: 30px;
}

.industry-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-big);
}

.industry-box i {
  color: var(--primary-color);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
}

.project-card {
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--primary-transition);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card:hover {
  transform: scale(1.02);
  box-shadow: var(--box-shadow-big);
}

.project-card-top {
  flex: 1;
  text-align: center;
}

.project-card-btn {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: center;
}

.project-card-btn .button {
  display: inline-block;
}

.project-logo {
  max-height: 75px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  margin: 0 auto 5px auto;
}

.project-card.project-card-one .project-logo {
  max-height: 60px;
}

/* Industries Cards */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 10px;
}
.industry-card {
  background: #fff;
  padding: 25px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-big);
}

.industry-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #2aaa23);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}

.industry-card-icon i {
  color: #fff;
}

.industry-card h4 {
  font-size: 20px;
  color: #191d88;
  margin-bottom: 12px;
  font-weight: 600;
}

.industry-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.industry-card ul.bulleted {
    padding-left: -10px;
    margin: 0 0 15px 0;
}

.industry-card ul.bulleted li {
    list-style-type: none;
    position: relative;
    padding-left: 15px;
    color: #525252;
    width: 100%;
    font-weight: 500;
    line-height: 24px;
}

.industry-card ul.bulleted li:before {
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 10px;
    background: #fca508;
    border-radius: 100%;
    content: "";
}



/* Why Choose Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 10px;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--box-shadow);
  transition: var(--primary-transition);
}

.why-choose-item:hover {
  box-shadow: var(--box-shadow-big);
  transform: translateY(-4px);
}

.why-bullet {
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fca508;
  margin-top: 10px;
}

.why-choose-item strong {
  font-size: 16px;
  color: #191d88;
  display: block;
  margin-bottom: 6px;
}

.why-choose-item p {
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Button secondary - fix visibility */
.button-secondary {
  color: var(--white-color);
}

.button-secondary:after {
  background-color: var(--tertiary-color);
}

.button-secondary:before {
  background-color: var(--primary-color);
}

.button-secondary:hover {
  color: var(--white-color);
}

section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

section.intro-sec {
  z-index: 2;
  background: #fff url(../images/product-third-bg.jpg) no-repeat 50% 100%;
}

section.intro-sec .img {
  margin-right: 0;
}

section.intro-sec p {
  margin-bottom: 30px;
}

.industries-sec {
  z-index: 3;
}

/* Industries Grid & Cards */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.industries-grid1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.txt-align {
  display: block;
  align-items: left !important;
  text-align: left !important;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.industry-card-icon {
  width: 70px;
  height: 70px;
  background: var(--tertiary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
  font-size: 24px;
}

.industry-card h4 {
  font-size: 22px;
  color: #0f1382;
  margin-bottom: 15px;
  font-weight: 600;
}

.industry-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.big-card{
  min-width:480px;
}
@media (max-width: 480px) {
.big-card{
  min-width:auto;
}
}


/* Industries section — light shaded background */
section.bg-industries {
  background: #e0eef7 url(../images/hkstarhotel-first-bg.png) no-repeat 50% 100% !important;
}

.about-sec.bg-light {
  background: #f6f6f6 !important;
}

.about-sec.bg-light .img {
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
}

.bg-industries .heading-two {
  color: #0f1382;
}

.bg-industries .sec-intro-desc {
  color: #555;
}

.bg-industries .industry-card {
  background: #fff;
  border: 1px solid #d1e3ef;
  box-shadow: 0 10px 25px rgba(15, 19, 130, 0.05);
  height: auto;
}

.bg-industries .industry-card:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(15, 19, 130, 0.1);
}

.bg-industries .industry-card h4 {
  color: #0f1382;
}

.bg-industries .industry-card p {
  color: #666;
}

.bg-industries .industry-card-icon {
  background: var(--tertiary-color);
  border: none;
}

.bg-industries .industry-card-icon i {
  color: #fff;
  font-size: 24px;
}

/* Why Choose Grid & Items */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-choose-grid-single {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-choose-item {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.why-choose-item:hover {
  box-shadow: inherit
}

.why-choose-item strong {
  display: block;
  font-size: 18px;
  color: #525252;
  margin-bottom: 5px;
}

.why-choose-item p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* CTA section — inner page heading style */
@media (max-width: 768px) {
  .footer-cta-title {
    font-size: 26px;
  }
}

/* Industries section: icon stacked on top of text */
.industries-sec .ind-con {
  margin-bottom: 20px;
}

.industries-sec .ind-icons {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.industries-sec .ind-icons i {
  color: var(--primary-color);
}

.industries-sec .ind-cns {
  margin-left: 0;
}

.bg-tertiary {
  background-color: var(--tertiary-color) !important;
}

.tick-list {
  padding: 0;
}

.tick-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 20px;
  list-style: none;
  font-size: 18px;
}

.tick-list li::before {
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 8px;
  background: #fca508;
  border-radius: 100%;
  content: "";
}


.intro-sec .img img,
.about-sec .img img {
  width: 100%;
}

.intro-col-img {
  position: relative;
  z-index: 1;
}

.intro-col-con {
  position: relative;
  z-index: 2;
}

.sec-intro-desc {
  font-size: 18px;
  margin-bottom: 50px;
}

.btn-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

/* Custom Grid */
.col-half {
  width: 50%;
}

.col-quarter {
  width: 25%;
}

.col-full {
  width: 100%;
}

.align-items-center {
  align-items: center;
}

@media (max-width: 991px) {

  .col-half,
  .col-quarter {
    width: 100%;
  }

  .banner .item .cover .banner-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .banner .item .cover .banner-content .row {
    align-items: center;
    flex-direction: column-reverse;
  }

  .banner-content .col-1 {
    width: 100%;
  }

  .banner .banner-img {
    justify-content: center
  }

  .banner-content img {
    max-width: 200px;
  }

  .intro-sec .img,
  .about-sec .img {
    margin: 0 0 30px 0;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .about-sec .row {
    flex-direction: column-reverse;
  }

  .about-sec.bg-light .img {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}


/* Utilities */
.scroll-circle {
  fill: #790a0a;
  opacity: 0.28;
}

.scroll-polyline {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 3px;
}

/* --- Hero Banner & Second Panel Responsive Enhancements --- */
@media (max-width: 991px) {

  .hero-container,
  .second-panel-container {
    flex-direction: column !important;
    text-align: center !important;
  }

  .hero-left,
  .hero-right,
  .second-panel-image,
  .second-panel-content {
    flex: 1 1 100% !important;
    width: 100% !important;
  }

  .hero-right,
  .second-panel-image {
    display: flex;
    justify-content: center;
  }

  .home-banner .item .main-img {
    height: 75vh !important;
  }

  .banner-cont p {
    font-size: 16px;
  }

  .banner-cont {
    text-align: center;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .projects-grid {
    grid-template-columns: 1fr !important;
  }

  .hamburger {
    display: block;
    top: 11px;
    left: 30px;
    z-index: 1000;
  }

  .main-header .container {
    /* justify-content: flex-start;*/
    padding: 10px 15px;
  }

  .main-header.fixed-header .hamburger {
    top: 10px;
  }

}


@media (max-width: 768px) {
  .hero-banner {
    padding: 40px 0 !important;
  }

  .hero-left h1 {
    font-size: 30px !important;
    line-height: 1.3 !important;
  }

  .hero-logo {
    max-width: 130px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .second-panel {
    padding: 40px 0 !important;
  }

  .industries-grid {
    grid-template-columns: 1fr !important;
  }

  .projects-grid {
    grid-template-columns: 1fr !important;
  }

  .sec-intro-desc {
    font-size: 16px;
    margin-bottom: 30px;
  }

}

@media (max-width: 767px) {

  .hero-container,
  .second-panel-container {
    gap: 30px !important;
  }

  .hero-image,
  .second-panel-image img {
    max-width: 90% !important;
  }

  .home-banner .item .main-img {
    height: 80vh !important;
  }

  .banner-cont {
    padding: 0 10px;
  }

  .banner-cont p {
    font-size: 14px;
  }

  .btn-group {
    flex-wrap: wrap;
  }

  section.intro-sec p {
    margin-bottom: 20px;
  }

}

/* Contact Page Styles */
.contact-details-sec {
  padding: 90px 0 40px 0;
  background-color: #fff;
}

.contact-details-left {
  width: 30%;
}
.contact-details-left a:link {
  color:#03045e;
}
.contact-details-middle {
  width: 25%;
  text-align: center;
}

.contact-details-right {
  width: 45%;
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-item .industry-card-icon {
  margin: 0 20px 0 0;
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}

.contact-text h4 {
  margin: 0 0 10px 0;
}

.contact-details-middle img {
  max-width: 100%;
  height: auto;
}

.request-demo-form {
  padding-left: 40px;
}

.request-demo-form p {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
  line-height: 1.5;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.form-group {
  padding: 0 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.form-group.half-width {
  flex: 0 0 50%;
  max-width: 50%;
}

.form-group.full-width {
  flex: 0 0 100%;
  max-width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 22px;
  background: #f1f1f1;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group textarea {
  border-radius: 6px;
  height: 140px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: #ddd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group .button {
  border: none;
  cursor: pointer;
  border-radius: 6px;
}
.form-group select{
  width:100%;
  padding:12px 15px;
  border:1px solid transparent;
  border-radius:4px;
  font-size:15px;
  color:#8b8b8b;
  background:#f1f1f1;
  appearance:none;
  transition: background 0.3s ease;
}

.form-group select:focus{
  background:#ffffff;
  outline:none;
}
@media (max-width: 1199px) {
  .request-demo-form {
    padding-left: 20px;
  }

  .contact-details-sec {
    padding-top: 40px;
  }
}

@media (max-width: 991px) {

  .contact-details-middle img {
    max-width: 450px;
  }

  .contact-details-left,
  .contact-details-middle,
  .contact-details-right {
    width: 100%;
  }

  .contact-details-left,
  .contact-details-middle {
    width: 100%;
    margin-bottom: 50px;
  }



  .contact-item .industry-card-icon {
    margin: 0 20px 0 0;
  }

  .request-demo-form {
    padding-left: 0;
  }

  .contact-details-middle {
    order: -1;
  }

}

@media (max-width: 575px) {
  .form-row {
    margin: 0;
  }

  .form-group.half-width {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-details-middle img {
    max-width: 250px;
  }

  .form-group {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ==========================================================================
   SaaS Page Specific Responsiveness Fixes
   ========================================================================== */

.saas-page .industries-grid1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 991px) {
  .saas-page .industries-grid1 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .saas-page .industries-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .saas-page .second-panel-container {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
  }

  .saas-page .second-panel-image,
  .saas-page .second-panel-content {
    flex: 1 1 100% !important;
    width: 100% !important;
    text-align: left;
  }

  .saas-page .second-panel-image img {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
 
  .saas-page .industries-grid1,
  .saas-page .industries-grid {
    grid-template-columns: 1fr !important;
  }

  .saas-page .hero-banner {
    padding-top: 0 !important;
  }

  .saas-page .hero-banner br {
    display: none;
  }

  .saas-page .scroll-btn {
    display: none !important;
  }

  .saas-page .quert-areia img {
    max-width: 100px !important;
  }

  .saas-page .industry-card.txt-align {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .saas-page .hero-container {
    flex-direction: column-reverse !important;
    text-align: center;
    padding-top: 0;
  }

  .saas-page .industry-card h4{
    margin-top: 0 !important;
  }

  .saas-page .hero-left,
  .saas-page .hero-right {
    flex: 1 1 100% !important;
    width: 100% !important;
  }

  .saas-page .hero-left h1 {
    font-size: 28px !important;
    margin-top: 20px;
  }

  .saas-page .hero-right {
    justify-content: center !important;
    margin-top: 20px;
  }

  .saas-page .product-fifth .col {
    width: 100% !important;
    flex: 1 1 100% !important;
  }

  .saas-page .product-fifth .col-2 {
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }

  .saas-page .product-fifth .col-2 img {
    min-width: unset !important;
    width: 100% !important;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .saas-page .hero-left h1 {
    font-size: 24px !important;
  }

  .saas-page .quert-areia img {
    max-width: 80px !important;
  }
}