/* Media Query */
* {
  scrollbar-color: rgb(200, 200, 200) transparent;
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  border-radius: 0;
  width: 4px;
  height: 4px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  *::-webkit-scrollbar {
    width: 0.1817355747vw;
    height: 0.1817355747vw;
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Zoom In */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Slide Up */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* flip */
@keyframes flip {
  from {
    transform: perspective(800px) rotateY(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(800px) rotateY(0deg);
    opacity: 1;
  }
}
/* zoomOut */
@keyframes zoomOut {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* fadeLeft */
@keyframes fadeLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* fadeRight */
@keyframes fadeRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes flip-vertical {
  from {
    transform: perspective(800px) rotateX(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(800px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes DropShadow {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
*::-webkit-scrollbar-track {
  background: transparent;
  box-shadow: none;
  border-radius: 10px;
  margin: 0;
}

*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgb(200, 200, 200);
}

:root {
  --primary-color: #0069aa;
  --white: #fff;
  --black: #0A0A0A;
  --grey: #657584;
  --blue: #061727;
  --fontcolor: #232323;
  --dark-blue: #004484;
  --lit-grey: #424242;
  --border-color: #22282B;
  --container-padding: 7.594rem;
  --section-padding: 90px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  :root {
    --4k-ratio: 22;
    --container-padding: 6.54%;
    --section-padding: 4.543vw;
  }
}
@media (max-width: 1440.98px) {
  :root {
    --container-padding: 5.594rem;
  }
}
@media (max-width: 1199.98px) {
  :root {
    --container-padding: 50px;
    --section-padding: 80px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --container-padding: 30px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --container-padding: 25px;
    --section-padding: 50px;
  }
}
@media (max-width: 374.98px) {
  :root {
    --container-padding: 20px;
  }
}

html {
  font-size: 16px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10101;
}
.modal-overlay.show {
  visibility: visible;
  opacity: 1;
}
.modal-overlay .modal-content {
  background: white;
  padding: 5px;
  border-radius: 0;
  max-width: 54%;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}
.modal-overlay .modal-content .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}
@media (max-width: 1440.98px) {
  body {
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 575.98px) {
  body {
    font-size: 14px;
  }
}
body.modal-open {
  overflow: hidden;
}
body .container {
  max-width: 100%;
  padding: 0 var(--container-padding);
}
body p {
  line-height: 30px;
  color: var(--grey);
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body p {
    line-height: 1.3630168105vw;
  }
}
@media (max-width: 1440.98px) {
  body p {
    font-size: 14px;
    line-height: 20px;
  }
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Sansation", sans-serif;
  margin: 0;
  line-height: normal;
}
body .webz-heading {
  font-size: 58px;
  color: var(--white);
}
@media (max-width: 1680.98px) {
  body .webz-heading {
    font-size: 50px;
  }
}
@media (max-width: 1440.98px) {
  body .webz-heading {
    font-size: 35px;
  }
}
@media (max-width: 1199.98px) {
  body .webz-heading {
    font-size: 33px;
  }
}
@media (max-width: 767.98px) {
  body .webz-heading {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  body .webz-heading {
    font-size: 22px;
  }
}
body .weby-heading {
  font-size: 40px;
  color: var(--blue);
}
@media (max-width: 1680.98px) {
  body .weby-heading {
    font-size: 35px;
  }
}
@media (max-width: 1440.98px) {
  body .weby-heading {
    font-size: 30px;
  }
}
@media (max-width: 1199.98px) {
  body .weby-heading {
    font-size: 24px;
  }
}
@media (max-width: 575.98px) {
  body .weby-heading {
    font-size: 21px;
  }
}
body .web-small {
  color: var(--grey);
  font-size: 26px;
}
body .web-tagline {
  border: 1px solid #004484;
  background-position: center;
  padding: 12px 25px;
  border-radius: 50px;
  display: inline-block;
  font-size: 16px;
  color: #004484;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  unicode-bidi: unset;
  white-space: unset;
  margin-block: 0;
  margin-inline: 0;
}
@media (max-width: 1440.98px) {
  body .web-tagline {
    padding: 8px 10px;
    font-size: 14px;
  }
}
body .web-title {
  color: var(--blue);
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0px;
  font-size: 18px;
  margin-bottom: 0px;
}
@media (max-width: 991.98px) {
  body .web-title {
    line-height: 23px;
    font-size: 17px;
  }
}
body .webx-heading {
  font-size: 40px;
  color: var(--black);
}
@media (max-width: 1440.98px) {
  body .webx-heading {
    font-size: 30px;
  }
}
body .webz-subtitle {
  font-size: 36px;
  color: var(--white);
}
@media (max-width: 575.98px) {
  body .webz-subtitle {
    font-size: 25px;
  }
}
body .d-flex {
  display: flex;
}
body a,
body button {
  text-decoration: none !important;
  transition: all 0.5s ease;
  font-family: "Roboto", sans-serif;
}
body a:hover,
body button:hover {
  transition: all 0.5s ease;
}
body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
body figure {
  margin: 0;
}
body .btn-link {
  color: #000;
  background: linear-gradient(265.52deg, #F5F7FA 0%, #C3CFE2 100%);
  padding: 15px 30px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  transition: 0.5s all;
  border: transparent;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body .btn-link {
    padding: 0.6815084053vw 1.3630168105vw;
    font-size: 0.726942299vw;
  }
}
@media (max-width: 1440.98px) {
  body .btn-link {
    padding: 8px 8px 8px 9px;
    font-size: 14px;
  }
}
body .btn-link span {
  position: relative;
  left: -5px;
  transform-origin: right;
  transform: translateX(-5px);
  transition: 0.5s all;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body .btn-link span {
    left: -0.2271694684vw;
    transform: translateX(-0.2271694684vw);
  }
}
body .btn-link svg {
  transform: translateX(-10px) scale(0.15);
  transition: 0.5s all;
  width: 24px;
  height: 24px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body .btn-link svg {
    width: 1.0904134484vw;
    height: 1.0904134484vw;
    transform: translateX(-0.4543389368vw) scale(0.15);
  }
}
body .btn-link svg path {
  fill: black;
  transition: fill 0.5s ease;
}
body .btn-link:hover {
  transition: all 0.5s ease;
  background: linear-gradient(85deg, #4AF7BA -25.45%, #086896 104.04%);
  color: #fff !important;
}
body .btn-link:hover span {
  left: 0px;
  transform-origin: right;
  transform: translateX(0px);
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body .btn-link:hover span {
    left: 0;
    transform-origin: right;
    transform: translateX(0);
  }
}
body .btn-link:hover svg {
  transform: translateX(-4px) scale(0.75);
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body .btn-link:hover svg {
    transform: translateX(-0.1817355747vw) scale(0.75);
  }
}
body .btn-link:hover svg path {
  fill: white;
  transition: fill 0.5s ease;
}
body .btn-white {
  color: #000;
  padding: 15px 30px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  border: 1px solid rgba(66, 66, 66, 0.4);
  transition: 0.5s all;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body .btn-white {
    padding: 0.6815084053vw 1.3630168105vw;
    font-size: 0.726942299vw;
  }
}
@media (max-width: 1440.98px) {
  body .btn-white {
    padding: 5px 10px;
    font-size: 13px;
  }
}
body .btn-white span {
  position: relative;
  left: -5px;
  transform-origin: right;
  transform: translateX(-5px);
  transition: 0.5s all;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body .btn-white span {
    left: -0.2271694684vw;
    transform: translateX(-0.2271694684vw);
  }
}
body .btn-white svg {
  transform: translateX(-10px) scale(0.15);
  transition: 0.5s all;
  width: 24px;
  height: 24px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body .btn-white svg {
    width: 1.0904134484vw;
    height: 1.0904134484vw;
    transform: translateX(-0.4543389368vw) scale(0.15);
  }
}
body .btn-white svg path {
  fill: black;
  transition: fill 0.5s ease;
}
body .btn-white:hover {
  transition: all 0.5s ease;
  color: #fff !important;
  border: 1px solid transparent;
  background: linear-gradient(85deg, #4AF7BA -25.45%, #086896 104.04%);
}
body .btn-white:hover span {
  left: 0px;
  transform-origin: right;
  transform: translateX(0px);
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body .btn-white:hover span {
    left: 0;
    transform-origin: right;
    transform: translateX(0);
  }
}
body .btn-white:hover svg {
  transform: translateX(-4px) scale(0.75);
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body .btn-white:hover svg {
    transform: translateX(-0.1817355747vw) scale(0.75);
  }
}
body .btn-white:hover svg path {
  fill: white;
  transition: fill 0.5s ease;
}
body .common-content {
  padding-left: 7%;
}
@media (max-width: 991.98px) {
  body .common-content {
    padding-left: 0;
  }
}
body .common-content .web-tagline {
  border: 1px solid var(--white);
  color: var(--white);
  margin-bottom: 3%;
}
body .common-content p {
  color: var(--white);
  margin-top: 3%;
  padding-left: 45px;
  position: relative;
  width: 95%;
}
body .common-content p:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 85%;
  background-color: #fff;
  left: 7px;
  bottom: 0;
}
body .common-content .lets-talk {
  position: relative;
}
body .common-content .lets-talk::before {
  content: "";
  position: absolute;
  bottom: 0;
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/white-arow.webp);
  background-repeat: no-repeat;
  width: 85px;
  height: 85px;
  left: 45px;
  top: 0px;
  background-size: cover;
  margin: 0 auto;
  right: auto;
  animation: arrowGrowHeight 2.5s infinite;
  z-index: 999;
}
@keyframes arrowGrowHeight {
  0% {
    height: 0;
  }
  50% {
    height: 82px;
  }
  100% {
    height: 82px;
  }
}
body .common-content .lets-talk a {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  right: auto;
  border-radius: 100%;
  overflow: hidden;
  left: 20%;
}
body .common-content .lets-talk a.scroll-downs {
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}
body .common-content .lets-talk a .circle-arrow {
  background-repeat: no-repeat;
  background-image: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/05/bigarrow.png);
  width: 42px;
  height: 42px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  top: 35%;
  background-size: contain;
}
@media (max-width: 1440.98px) {
  body .common-content .lets-talk a .circle-arrow {
    width: 30px;
    height: 30px;
  }
}
body .common-content .lets-talk a .circle-image {
  display: flex;
  width: 147px;
  height: 147px;
  background-image: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/lets-talk-bg.webp);
  background-size: initial;
  background-repeat: no-repeat;
  background-position: center;
  animation: circleSpin 8s linear infinite;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  body .common-content .lets-talk a .circle-image {
    width: 6.6787823716vw;
    height: 6.6787823716vw;
  }
}
@media (max-width: 1440.98px) {
  body .common-content .lets-talk a .circle-image {
    width: 100px;
    height: 100px;
    background-size: 133%;
  }
}
@keyframes circleSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body .text-center {
  text-align: center;
}
body .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
body .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
body .col-lg-4 {
  flex: 0 0 auto;
  width: calc(33.3333% - var(--bs-gutter-x));
}
@media (max-width: 767.98px) {
  body .col-lg-4 {
    flex: 0 0 auto;
    width: calc(100% - var(--bs-gutter-x));
  }
}
body .col-lg-3 {
  width: calc(25% - var(--bs-gutter-x));
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  body .col-lg-3 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
body .col-lg-7 {
  width: calc(58.333333% - var(--bs-gutter-x));
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  body .col-lg-7 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
body .col-lg-8 {
  width: calc(66.66666667% - var(--bs-gutter-x));
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  body .col-lg-8 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
body .col-lg-9 {
  width: calc(75% - var(--bs-gutter-x));
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  body .col-lg-9 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
body .col-lg-5 {
  flex: 0 0 auto;
  width: calc(41.66666667% - var(--bs-gutter-x));
}
@media (max-width: 767.98px) {
  body .col-lg-5 {
    flex: 0 0 auto;
    width: calc(100% - var(--bs-gutter-x));
  }
}
body .col-lg-6 {
  flex: 0 0 auto;
  width: calc(50% - var(--bs-gutter-x));
}
@media (max-width: 767.98px) {
  body .col-lg-6 {
    flex: 0 0 auto;
    width: calc(100% - var(--bs-gutter-x));
  }
}
body .d-flex {
  display: flex;
}
body .pt-4 {
  padding-top: 1.5rem;
}
body .align-items-center {
  align-items: center;
}
body .justify-content-center {
  justify-content: center !important;
}
body .justify-content-end {
  align-items: center;
  justify-content: right;
}

.w-100 {
  width: 100% !important;
}

.position-relative {
  position: relative;
}

.page-template-index .footersec {
  padding: 0;
}
.page-template-index .footersec .footer-nav {
  background-color: #efeeff;
}

section {
  overflow: hidden;
  padding: calc(var(--section-padding) - 30px) 0 calc(var(--section-padding) - 20px) 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  section {
    padding: calc(var(--section-padding) - 1.3630168105vw) 0 calc(var(--section-padding) - 0.9086778737vw) 0;
  }
}
@media (max-width: 767.98px) {
  section {
    padding: var(--section-padding) 0;
  }
}

.m-auto {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.client-logos-swiper {
  border-bottom: 1px solid rgba(101, 101, 101, 0.1);
}
.client-logos-swiper img {
  height: auto;
  width: 100%;
}

.bg-sec {
  position: relative;
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/hero-banner-scaled.webp) no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-sec {
  padding: calc(var(--section-padding) * 1.75) 0 var(--section-padding) 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .hero-sec {
    padding: calc(var(--section-padding) + 1.75) 0 var(--section-padding) 0;
  }
}
@media (max-width: 1680.98px) {
  .hero-sec {
    padding: calc(var(--section-padding) + 30px) 0 calc(var(--section-padding) - 20px) 0;
  }
}
@media (max-width: 1440.98px) {
  .hero-sec {
    padding: calc(var(--section-padding) + 20px) 0 calc(var(--section-padding) - 55px) 0;
  }
}
@media (max-width: 575.98px) {
  .hero-sec {
    padding: calc(var(--section-padding) + 65px) 0 calc(var(--section-padding) - 55px) 0;
    text-align: center;
  }
}
.hero-sec iframe {
  width: 100%;
  height: 526px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .hero-sec iframe {
    height: 23.8982280781vw;
  }
}
@media (max-width: 1440.98px) {
  .hero-sec iframe {
    height: 375px;
    margin-top: 3%;
  }
}
@media (max-width: 575.98px) {
  .hero-sec iframe {
    margin-top: 10%;
  }
}
.hero-sec .col-lg-6 {
  margin-left: auto;
}
.hero-sec .container {
  position: relative;
  z-index: 2;
}
.hero-sec .web-title {
  color: var(--white);
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .hero-sec .web-title {
    font-size: 0.726942299vw;
  }
}
.hero-sec .webz-heading,
.hero-sec .hero-content,
.hero-sec .btn-link {
  opacity: 0;
}
.hero-sec p {
  color: var(--white);
  font-size: 18px;
  line-height: 27px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .hero-sec p {
    font-size: 0.8178100863vw;
  }
}
@media (max-width: 1440.98px) {
  .hero-sec p {
    font-size: 16px;
  }
}
.hero-sec a.btn-link {
  color: var(--black);
  margin-top: 5%;
  background: linear-gradient(265.52deg, #F5F7FA 0%, #C3CFE2 100%);
}
@media (max-width: 767.98px) {
  .hero-sec a.btn-link {
    margin-top: 0%;
  }
}
@media (max-width: 575.98px) {
  .hero-sec a.btn-link {
    margin: 0 auto;
  }
}
.hero-sec a.btn-link:hover {
  background: linear-gradient(85deg, #4AF7BA -25.45%, #086896 104.04%);
  color: var(--grey);
}
.hero-sec.is-inview .web-title {
  animation: slideUp 0.8s ease forwards;
}
@media (max-width: 1680.98px) {
  .hero-sec.is-inview .web-title {
    margin-bottom: 20px;
  }
}
.hero-sec.is-inview .webz-heading {
  animation: slideUp 0.8s ease forwards;
}
@media (max-width: 1680.98px) {
  .hero-sec.is-inview .webz-heading {
    line-height: normal;
  }
}
.hero-sec.is-inview .hero-content {
  animation: slideUp 0.8s ease forwards;
}
.hero-sec.is-inview .btn-link {
  animation: slideUp 0.8s ease forwards;
}

.quality-sec {
  padding: 0 0 calc(var(--section-padding) - 40px) 0;
  overflow: visible;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .quality-sec {
    padding: calc(var(--section-padding) - 1.3630168105vw) 0 calc(var(--section-padding) - 0.9086778737vw) 0;
  }
}
@media (max-width: 767.98px) {
  .quality-sec {
    padding: var(--section-padding) 0;
  }
}
.quality-sec .quality-info {
  display: flex;
  background-color: #fff;
  padding: 15px 25px 0;
  border-radius: 15px;
  background: radial-gradient(151.64% 120.36% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(21px);
          backdrop-filter: blur(21px);
  transition: all 0.5s ease;
  opacity: 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .quality-sec .quality-info {
    padding: 0.6815084053vw 1.1358473421vw 0;
  }
}
@media (max-width: 1440.98px) {
  .quality-sec .quality-info {
    padding: 15px 15px 0;
  }
}
@media (max-width: 767.98px) {
  .quality-sec .quality-info {
    margin-bottom: 20px;
    justify-content: space-between;
  }
}
.quality-sec .quality-info h3 {
  font-size: 26px;
  color: var(--white);
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .quality-sec .quality-info h3 {
    font-size: 1.1812812358vw;
  }
}
@media (max-width: 1440.98px) {
  .quality-sec .quality-info h3 {
    font-size: 20px;
  }
}
.quality-sec .quality-info p {
  margin-top: 15px;
  color: var(--white);
  font-weight: 300;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .quality-sec .quality-info p {
    margin-top: 0.6815084053vw;
  }
}
@media (max-width: 1440.98px) {
  .quality-sec .quality-info p {
    margin-bottom: 15px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
  }
}
.quality-sec .quality-info .quaImg {
  transition: all 0.5s ease;
}
.quality-sec .quality-info .quaImg img {
  filter: invert(88%) sepia(100%) saturate(0%) hue-rotate(69deg) brightness(104%) contrast(102%);
  transition: all 0.5s ease;
  height: auto;
  width: auto;
}
@media (max-width: 1440.98px) {
  .quality-sec .quality-info .quaImg img {
    width: 100%;
  }
}
.quality-sec .quality-info:hover {
  margin-top: -5px;
  transition: all 0.5s ease;
  background: linear-gradient(85deg, #4AF7BA -25.45%, #086896 104.04%);
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .quality-sec .quality-info:hover {
    margin-top: -0.2271694684vw;
  }
}
.quality-sec .quality-info:hover .quaImg {
  transition: all 0.5s ease;
}
.quality-sec .quality-info:hover .quaImg img {
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
.quality-sec.is-inview .quality-info {
  animation: zoomIn 0.8s ease forwards;
}

.client-sec {
  padding: 0px;
  border-bottom: 1px solidrgba(101, 101, 101, 0.1);
  overflow: hidden;
}

.client-logos-swiper {
  border-bottom: 1px solid rgba(101, 101, 101, 0.1);
}

.aboutus-sec {
  position: relative;
  padding: calc(var(--section-padding) - 0px) 0 calc(var(--section-padding) - 0px) 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec {
    padding: calc(var(--section-padding) - 0vw) 0 calc(var(--section-padding) - 0vw) 0;
  }
}
@media (max-width: 1440.98px) {
  .aboutus-sec {
    padding: calc(var(--section-padding) - 15px) 0 calc(var(--section-padding) - 15px) 0;
  }
}
@media (max-width: 767.98px) {
  .aboutus-sec {
    text-align: center;
  }
}
.aboutus-sec .col-lg-5:last-child {
  margin-left: auto;
  width: calc(46.99% - var(--bs-gutter-x));
  padding-right: 0%;
}
@media (max-width: 767.98px) {
  .aboutus-sec .col-lg-5:last-child {
    width: calc(100% - var(--bs-gutter-x));
    margin-top: 35px;
  }
}
.aboutus-sec::before {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-before-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  bottom: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  top: 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec::before {
    height: 13.6301681054vw;
  }
}
@media (max-width: 575.98px) {
  .aboutus-sec::before {
    display: none;
  }
}
.aboutus-sec::after {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-after-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  top: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  bottom: 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec::after {
    height: 13.6301681054vw;
  }
}
@media (max-width: 575.98px) {
  .aboutus-sec::after {
    display: none;
  }
}
.aboutus-sec .card-txt {
  margin-top: 10px;
  width: 93%;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec .card-txt {
    margin-top: 0.4543389368vw;
  }
}
@media (max-width: 767.98px) {
  .aboutus-sec .card-txt {
    width: 100%;
  }
}
.aboutus-sec .weby-heading {
  margin: 20px 0;
  width: 60%;
  opacity: 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec .weby-heading {
    margin: 0.9086778737vw 0;
  }
}
@media (max-width: 1199.98px) {
  .aboutus-sec .weby-heading {
    width: 100%;
  }
}
.aboutus-sec img.teamImg {
  opacity: 0;
  width: 100%;
  height: auto;
}
.aboutus-sec .web-title {
  color: var(--blue);
  width: 78%;
  opacity: 0;
}
@media (max-width: 1440.98px) {
  .aboutus-sec .web-title {
    width: 100%;
  }
}
.aboutus-sec .card-txt {
  opacity: 0;
}
.aboutus-sec .web-tagline {
  opacity: 0;
}
.aboutus-sec .aboutus-frame {
  position: relative;
  /* Left to Right for .expert */
  /* Right to Left for .trust */
}
.aboutus-sec .aboutus-frame:before {
  content: "";
  width: 100%;
  height: 99%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 16px;
  background: var(--white);
  z-index: -1;
  left: 0;
}
.aboutus-sec .aboutus-frame .expert {
  position: absolute;
  right: -80px;
  top: 40px;
  animation: floatLeftToRight 3s ease-in-out infinite;
  z-index: 1;
}
.aboutus-sec .aboutus-frame .expert img {
  width: auto;
  height: auto;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec .aboutus-frame .expert {
    right: -3.6347114948vw;
  }
}
@media (max-width: 1280.98px) {
  .aboutus-sec .aboutus-frame .expert {
    right: 0;
    top: -30px;
  }
}
@media (max-width: 1680.98px) {
  .aboutus-sec .aboutus-frame .expert img {
    width: 100%;
  }
}
@media (max-width: 1440.98px) {
  .aboutus-sec .aboutus-frame .expert img {
    width: 80%;
    right: -50px;
  }
}
.aboutus-sec .aboutus-frame .expert ul {
  position: relative;
  margin-left: 20px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec .aboutus-frame .expert ul {
    margin-left: 0.9086778737vw;
  }
}
.aboutus-sec .aboutus-frame .expert ul li {
  width: 47px;
  height: 47px;
  display: inline-block;
  border-radius: 100%;
  overflow: hidden;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec .aboutus-frame .expert ul li {
    width: 2.1353930032vw;
    height: 2.1353930032vw;
  }
}
.aboutus-sec .aboutus-frame .expert ul li:nth-child(1) {
  position: relative;
  z-index: 1;
}
.aboutus-sec .aboutus-frame .expert ul li:nth-child(2) {
  position: absolute;
  left: 30px;
  z-index: 1;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec .aboutus-frame .expert ul li:nth-child(2) {
    left: 1.3630168105vw;
  }
}
.aboutus-sec .aboutus-frame .expert ul li:nth-child(3) {
  position: absolute;
  left: 60px;
  z-index: 1;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec .aboutus-frame .expert ul li:nth-child(3) {
    left: 2.7260336211vw;
  }
}
.aboutus-sec .aboutus-frame .expert.rank {
  margin-left: 75px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec .aboutus-frame .expert.rank {
    margin-left: 3.4075420264vw;
  }
}
.aboutus-sec .aboutus-frame .expert.rank h6 {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 0px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec .aboutus-frame .expert.rank h6 {
    font-size: 0.9086778737vw;
  }
}
.aboutus-sec .aboutus-frame .expert.rank p {
  margin: 0;
  color: var(--blue);
}
@keyframes floatLeftToRight {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes floatRightToLeft {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-10px);
  }
}
.aboutus-sec .trust {
  position: absolute;
  box-shadow: 20px 40px 80px rgba(45, 51, 81, 0.12);
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  left: -110px;
  bottom: 55px;
  text-align: center;
  animation: floatRightToLeft 3s ease-in-out infinite;
  width: 35%;
  height: auto;
}
.aboutus-sec .trust img {
  width: 100%;
  height: auto;
}
@media (max-width: 1440.98px) {
  .aboutus-sec .trust {
    width: 190px;
    left: -76px;
  }
}
@media (max-width: 991.98px) {
  .aboutus-sec .trust {
    bottom: -20px;
  }
}
@media (max-width: 767.98px) {
  .aboutus-sec .trust {
    left: -38px;
  }
}
@media (max-width: 575.98px) {
  .aboutus-sec .trust {
    left: 0px;
  }
}
.aboutus-sec a.btn-link {
  margin-top: 3%;
  opacity: 0;
}
@media (max-width: 991.98px) {
  .aboutus-sec a.btn-link {
    margin: 3% auto 0;
  }
}
.aboutus-sec.is-inview .web-tagline {
  animation: fadeLeft 1s ease forwards;
}
.aboutus-sec.is-inview .weby-heading {
  animation: fadeLeft 1s ease forwards;
}
.aboutus-sec.is-inview .web-title {
  animation: fadeLeft 1s ease forwards;
}
.aboutus-sec.is-inview .card-txt {
  animation: fadeLeft 1s ease forwards;
}
.aboutus-sec.is-inview .card-txt {
  animation: fadeLeft 1s ease forwards;
}
.aboutus-sec.is-inview .btn-link {
  animation: fadeLeft 1s ease forwards;
}
.aboutus-sec.is-inview .aboutus-frame:before {
  animation: DropShadow 1s cubic-bezier(0.34, 0.51, 0, 1.01);
  animation-delay: 2s;
  animation-fill-mode: both;
  box-shadow: 20px 63px 76px rgba(0, 0, 0, 0.15);
}
.aboutus-sec.is-inview .teamImg {
  animation: zoomIn 1s ease forwards;
}

.nexus-solutions-sec {
  position: relative;
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/hero-banner-scaled.webp) no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: calc(var(--section-padding) - 0px) 0 calc(var(--section-padding) - 0px) 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .nexus-solutions-sec {
    padding: calc(var(--section-padding) - 0px) 0 calc(var(--section-padding) - 0px) 0;
  }
}
@media (max-width: 767.98px) {
  .nexus-solutions-sec {
    padding: var(--section-padding) 0;
  }
}
.nexus-solutions-sec img {
  width: auto;
  height: auto;
}
@media (max-width: 1199.98px) {
  .nexus-solutions-sec img {
    width: 100%;
  }
}
.nexus-solutions-sec .nexus-solu-overlay {
  position: relative;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 1440.98px) {
  .nexus-solutions-sec .nexus-solu-overlay {
    width: 80%;
  }
}
@media (max-width: 767.98px) {
  .nexus-solutions-sec .nexus-solu-overlay {
    width: 100%;
  }
}
.nexus-solutions-sec .nexus-solu-overlay .webz-subtitle {
  margin-top: 20px;
  opacity: 0;
}
.nexus-solutions-sec .nexus-solu-overlay p {
  margin: 20px 0;
  color: var(--white);
  opacity: 0;
}
.nexus-solutions-sec .nexus-solu-overlay a.btn-link {
  margin: 0 auto;
  opacity: 0;
}
.nexus-solutions-sec.is-inview .webz-subtitle {
  animation: slideUp 0.8s ease forwards;
}
.nexus-solutions-sec.is-inview p {
  animation: slideUp 0.8s ease forwards;
}
.nexus-solutions-sec.is-inview .btn-link {
  animation: slideUp 0.8s ease forwards;
}

.our-products-sec {
  position: relative;
  padding: calc(var(--section-padding) - 0px) 0 calc(var(--section-padding) - 0px) 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .our-products-sec {
    padding: calc(var(--section-padding) - 0px) 0 calc(var(--section-padding) - 0px) 0;
  }
}
@media (max-width: 767.98px) {
  .our-products-sec {
    padding: var(--section-padding) 0;
  }
}
@media (max-width: 1440.98px) {
  .our-products-sec {
    padding: calc(var(--section-padding) - 40px) 0 calc(var(--section-padding) - 40px) 0;
  }
}
@media (max-width: 767.98px) {
  .our-products-sec {
    padding: calc(var(--section-padding) - 0px) 0 calc(var(--section-padding) - 0px) 0;
    text-align: center;
  }
}
.our-products-sec .container {
  padding: 0 calc(var(--container-padding) * 1.7);
}
@media (max-width: 575.98px) {
  .our-products-sec .container {
    padding: 0 calc(var(--container-padding) * 0.5);
  }
}
.our-products-sec .row .col-lg-6:nth-child(1) {
  flex: 0 0 auto;
  width: calc(43.99% - var(--bs-gutter-x));
}
@media (max-width: 767.98px) {
  .our-products-sec .row .col-lg-6:nth-child(1) {
    width: calc(100% - var(--bs-gutter-x));
    margin-bottom: 40px;
  }
}
.our-products-sec .row .col-lg-6:nth-child(2) {
  margin-left: auto;
}
@media (max-width: 1440.98px) {
  .our-products-sec .row .col-lg-6:nth-child(2) {
    width: calc(55% - var(--bs-gutter-x));
  }
}
@media (max-width: 767.98px) {
  .our-products-sec .row .col-lg-6:nth-child(2) {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.our-products-sec::before {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-before-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  bottom: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  top: 0;
}
@media (max-width: 575.98px) {
  .our-products-sec::before {
    display: none;
  }
}
.our-products-sec::after {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-after-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  top: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  bottom: 0;
}
@media (max-width: 575.98px) {
  .our-products-sec::after {
    display: none;
  }
}
.our-products-sec img {
  width: 100%;
  aspect-ratio: 167/110;
  height: 100%;
  opacity: 0;
}
.our-products-sec .web-tagline {
  letter-spacing: 0px;
  opacity: 0;
}
.our-products-sec .weby-heading {
  margin: 25px 0;
  width: 84%;
  opacity: 0;
}
@media (max-width: 1680.98px) {
  .our-products-sec .weby-heading {
    width: 100%;
  }
}
.our-products-sec .products-content {
  opacity: 0;
}
.our-products-sec .web-title {
  color: var(--blue);
  font-size: 18px;
  letter-spacing: 0px;
  opacity: 0;
}
@media (max-width: 1440.98px) {
  .our-products-sec .web-title {
    font-size: 17px;
    line-height: normal;
  }
}
.our-products-sec .btn-white {
  opacity: 0;
  margin-top: 5%;
}
@media (max-width: 991.98px) {
  .our-products-sec .btn-white {
    margin: 5% auto 0;
  }
}
.our-products-sec p {
  margin-top: 10px;
  width: 93%;
}
@media (max-width: 575.98px) {
  .our-products-sec p {
    width: 100%;
    margin-top: 20px;
  }
}
.our-products-sec.is-inview .web-tagline {
  animation: fadeRight 0.8s ease-out forwards;
}
.our-products-sec.is-inview .weby-heading {
  animation: fadeRight 0.8s ease-out forwards;
}
.our-products-sec.is-inview .web-title {
  animation: fadeRight 0.8s ease-out forwards;
}
.our-products-sec.is-inview .products-content {
  animation: fadeRight 0.8s ease-out forwards;
}
.our-products-sec.is-inview .btn-white {
  animation: fadeRight 0.8s ease-out forwards;
}
.our-products-sec.is-inview img {
  animation: fadeLeft 0.8s ease-out forwards;
}

.club-manage-sec {
  position: relative;
  padding: calc(var(--section-padding) - 0px) 0 calc(var(--section-padding) - 0px) 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .club-manage-sec {
    padding: calc(var(--section-padding) - 0px) 0 calc(var(--section-padding) - 0px) 0;
  }
}
@media (max-width: 1440.98px) {
  .club-manage-sec {
    padding: calc(var(--section-padding) - 45px) 0 calc(var(--section-padding) - 45px) 0;
  }
}
@media (max-width: 767.98px) {
  .club-manage-sec {
    padding: var(--section-padding) 0;
    text-align: center;
  }
}
.club-manage-sec .container {
  padding: 0 calc(var(--container-padding) * 1.2);
}
.club-manage-sec .col-lg-6:nth-child(1) {
  width: calc(44% - var(--bs-gutter-x));
  margin-right: 6%;
}
@media (max-width: 767.98px) {
  .club-manage-sec .col-lg-6:nth-child(1) {
    width: calc(100% - var(--bs-gutter-x));
    margin-right: 0%;
    text-align: center;
  }
}
.club-manage-sec::before {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-before-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  bottom: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  top: 0;
}
@media (max-width: 575.98px) {
  .club-manage-sec::before {
    display: none;
  }
}
.club-manage-sec::after {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-after-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  top: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  bottom: 0;
}
@media (max-width: 575.98px) {
  .club-manage-sec::after {
    display: none;
  }
}
.club-manage-sec .weby-heading {
  margin-top: 20px;
  width: 90%;
  opacity: 0;
}
@media (max-width: 1680.98px) {
  .club-manage-sec .weby-heading {
    width: 100%;
  }
}
.club-manage-sec .web-tagline {
  opacity: 0;
}
.club-manage-sec .club-manage-content {
  opacity: 0;
}
.club-manage-sec .d-flex {
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  padding-top: 30px;
  margin-top: 7%;
}
@media (max-width: 1199.98px) {
  .club-manage-sec .d-flex {
    align-items: start;
  }
}
@media (max-width: 1440.98px) {
  .club-manage-sec .d-flex {
    padding-top: 20px;
    margin-top: 0;
  }
}
.club-manage-sec .d-flex .points {
  display: flex;
  align-items: center;
  opacity: 0;
}
@media (max-width: 1199.98px) {
  .club-manage-sec .d-flex .points {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 575.98px) {
  .club-manage-sec .d-flex .points {
    align-items: center;
  }
}
.club-manage-sec .d-flex .points span img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.club-manage-sec .d-flex .points span.allin {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  width: 130px;
  display: inline-block;
  padding-left: 15px;
  font-weight: 600;
}
@media (max-width: 1440.98px) {
  .club-manage-sec .d-flex .points span.allin {
    font-size: 14px;
  }
}
@media (max-width: 1199.98px) {
  .club-manage-sec .d-flex .points span.allin {
    padding-left: 0;
    line-height: normal;
  }
}
@media (max-width: 767.98px) {
  .club-manage-sec .d-flex .points span.allin {
    width: inherit;
  }
}
@media (max-width: 575.98px) {
  .club-manage-sec .d-flex .points span.allin {
    font-size: 12px;
  }
}
.club-manage-sec .solutions-frame {
  position: relative;
  text-align: center;
  opacity: 0;
}
@media (max-width: 767.98px) {
  .club-manage-sec .solutions-frame {
    margin-top: 40px;
  }
}
.club-manage-sec .solutions-frame img {
  width: 100%;
  aspect-ratio: 367/245;
  animation: floatRightToLeft 3s ease-in-out infinite;
  height: auto;
}
@media (max-width: 1680.98px) {
  .club-manage-sec .solutions-frame img {
    width: 95%;
  }
}
.club-manage-sec .solutions-frame span {
  font-family: "Roboto", sans-serif;
  padding: 15px 20px;
  position: absolute;
  padding: 15px;
  color: var(--white);
  border-radius: 8px;
  box-shadow: 23px 24px 13px rgba(0, 0, 0, 0.01), 13px 14px 11px rgba(0, 0, 0, 0.05), 6px 6px 8px rgba(0, 0, 0, 0.09), 1px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}
@media (max-width: 1440.98px) {
  .club-manage-sec .solutions-frame span {
    padding: 9px;
    font-size: 13px;
  }
}
.club-manage-sec .solutions-frame span:nth-child(1) {
  top: auto;
  right: -4px;
  background-color: #0079B3;
  bottom: 16%;
  animation: floatLeftToRight 3s ease-in-out infinite;
}
@media (max-width: 1199.98px) {
  .club-manage-sec .solutions-frame span:nth-child(1) {
    right: 0px;
  }
}
.club-manage-sec .solutions-frame span:nth-child(2) {
  top: 11%;
  left: -50px;
  background-color: #42388D;
  right: auto;
  animation: floatRightToLeft 3s ease-in-out infinite;
}
@media (max-width: 1199.98px) {
  .club-manage-sec .solutions-frame span:nth-child(2) {
    left: 0;
    top: 0%;
  }
}
.club-manage-sec .solutions-frame span:nth-child(3) {
  bottom: 0;
  left: -35px;
  background-color: #40B287;
  right: auto;
  animation: floatRightToLeft 3s ease-in-out infinite;
}
@media (max-width: 1199.98px) {
  .club-manage-sec .solutions-frame span:nth-child(3) {
    left: 0;
    bottom: -35px;
  }
}
.club-manage-sec.is-inview .web-tagline {
  animation: fadeLeft 0.8s ease-out forwards;
}
.club-manage-sec.is-inview .weby-heading {
  animation: fadeLeft 0.8s ease-out forwards;
}
.club-manage-sec.is-inview .club-manage-content {
  animation: fadeLeft 0.8s ease-out forwards;
}
.club-manage-sec.is-inview .solutions-frame {
  animation: fadeRight 0.8s ease-out forwards;
}
.club-manage-sec.is-inview .points {
  animation: flip-vertical 0.8s ease-out forwards;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.our-testimonial-sec {
  padding: 100px 0;
}
.our-testimonial-sec .testi-img {
  padding: 10px;
  width: 82px;
  height: 82px;
}
.our-testimonial-sec .owl-item {
  float: left;
}
.our-testimonial-sec .testimonial-info {
  box-shadow: 0px 6.07259px 23.3756px rgba(0, 0, 0, 0.1);
  border-radius: 20.1565px;
  margin: 20px;
}
.our-testimonial-sec .testimonial-info .w-50 img {
  width: inherit;
}
.our-testimonial-sec .testimonial-info p {
  padding: 20px;
  margin: 0;
}
.our-testimonial-sec .testimonial-info .d-flex {
  padding: 20px 25px;
  border-top: 1px solid #ccc;
}
.our-testimonial-sec .testimonial-info .d-flex .block-img {
  width: 66px;
  height: 66px;
  border-radius: 100%;
}
.our-testimonial-sec .testimonial-info .d-flex .block-img img {
  width: 100%;
}
.our-testimonial-sec .testimonial-info .d-flex .ms-3 {
  margin-left: 1.5rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.our-testimonial-sec .testimonial-info .block-info span h5 {
  font-size: 20px;
  margin-bottom: 2px;
}
.our-testimonial-sec .testimonial-info .block-info span h4 {
  color: #707070;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 2px;
}
.our-testimonial-sec .testimonial-info .block-info span h6 {
  color: #707070;
  font-weight: 500;
}

.stay-updated-sec {
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/hero-banner-scaled.webp) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: visible;
  padding: calc(var(--section-padding) - 90px) 0 calc(var(--section-padding) - 90px) 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .stay-updated-sec {
    padding: calc(var(--section-padding) - 0px) 0 calc(var(--section-padding) - 4.0890504316vw) 0;
  }
}
@media (max-width: 991.98px) {
  .stay-updated-sec {
    padding: calc(var(--section-padding) - 40px) 0 calc(var(--section-padding) - 40px) 0;
  }
}
@media (max-width: 1199.98px) {
  .stay-updated-sec {
    padding: calc(var(--section-padding) - 40px) 0 calc(var(--section-padding) - 40px) 0;
  }
  .stay-updated-sec .justify-content-end {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .stay-updated-sec {
    padding: calc(var(--section-padding) - 0px) 0 calc(var(--section-padding) - 0px) 0;
    text-align: center;
  }
}
.stay-updated-sec .col-lg-5 {
  width: calc(40.666667% - var(--bs-gutter-x));
}
@media (max-width: 767.98px) {
  .stay-updated-sec .col-lg-5 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.stay-updated-sec .col-lg-6 {
  width: calc(54.666667% - var(--bs-gutter-x));
}
@media (max-width: 767.98px) {
  .stay-updated-sec .col-lg-6 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.stay-updated-sec .stay-updated-info p {
  margin: 10px 0 35px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  opacity: 0;
}
.stay-updated-sec .stay-updated-info .weby-heading {
  color: var(--white);
  opacity: 0;
}
.stay-updated-sec .stay-updated-info .stay-img {
  margin-top: -5%;
}
.stay-updated-sec .stay-updated-info .stay-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 48/29;
}
@media (max-width: 767.98px) {
  .stay-updated-sec .stay-updated-info .stay-img img {
    display: none;
  }
}
.stay-updated-sec .stay-updated-info form {
  display: flex;
}
@media (max-width: 1199.98px) {
  .stay-updated-sec .stay-updated-info form {
    flex-direction: row;
  }
}
@media (max-width: 575.98px) {
  .stay-updated-sec .stay-updated-info form {
    flex-direction: column;
  }
}
.stay-updated-sec .stay-updated-info form input.form-control {
  margin-right: 35px;
  width: 40%;
  border-radius: 0px;
  height: 52px;
  background: rgba(255, 255, 255, 0.27);
  border: 2px solid #000;
  padding: 0 15px;
  font-size: 18px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  border: 1px solid #ccc;
  box-sizing: border-box;
  margin-left: 0;
}
@media (max-width: 1440.98px) {
  .stay-updated-sec .stay-updated-info form input.form-control {
    padding: 0 15px;
    font-size: 15px;
    height: 45px;
  }
}
@media (max-width: 1280.98px) {
  .stay-updated-sec .stay-updated-info form input.form-control {
    width: 50%;
  }
}
@media (max-width: 1199.98px) {
  .stay-updated-sec .stay-updated-info form input.form-control {
    width: 60%;
  }
}
@media (max-width: 575.98px) {
  .stay-updated-sec .stay-updated-info form input.form-control {
    width: 100%;
    text-align: center;
  }
}
.stay-updated-sec .stay-updated-info form input::-moz-placeholder {
  color: #fff;
}
.stay-updated-sec .stay-updated-info form input::placeholder {
  color: #fff;
}
.stay-updated-sec .stay-updated-info form button.btn-link {
  background: #000;
  color: var(--white);
  padding: 14px 25px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.5s ease;
  margin-left: 0;
}
@media (max-width: 1440.98px) {
  .stay-updated-sec .stay-updated-info form button.btn-link {
    padding: 10px 15px;
  }
}
@media (max-width: 575.98px) {
  .stay-updated-sec .stay-updated-info form button.btn-link {
    width: 100%;
    margin-top: 2%;
    justify-content: center;
  }
}
.stay-updated-sec .stay-updated-info form button.btn-link svg path {
  fill: var(--white);
  transition: all 0.5s ease;
}
.stay-updated-sec .stay-updated-info form button.btn-link:hover {
  background: linear-gradient(85deg, #4AF7BA -25.45%, #086896 104.04%);
  color: var(--white);
  transition: all 0.5s ease;
}
.stay-updated-sec.is-inview .weby-heading {
  animation: slideUp 0.8s ease forwards;
}
.stay-updated-sec.is-inview p {
  animation: slideUp 0.8s ease forwards;
}

.footersec {
  padding: 50px 0 0 0;
}
@media (max-width: 575.98px) {
  .footersec {
    overflow: hidden;
  }
}
@media (max-width: 575.98px) {
  .footersec .container {
    padding: 0 calc(var(--section-padding) - 40px);
  }
}
@media (max-width: 991.98px) {
  .footersec .footer-logo img {
    width: 65%;
  }
}
@media (max-width: 575.98px) {
  .footersec .footer-logo img {
    width: 40%;
  }
}
.footersec .footer-nav {
  position: relative;
}
.footersec .footer-nav .col-lg-2 {
  width: calc(16.666% - var(--bs-gutter-x));
}
@media (max-width: 767.98px) {
  .footersec .footer-nav .col-lg-2 {
    flex: 0 0 auto;
    width: calc(100% - var(--bs-gutter-x));
  }
}
.footersec .footer-nav .align-items-center {
  position: relative;
  z-index: 99;
}
@media (max-width: 767.98px) {
  .footersec .footer-nav {
    padding: 45px 0;
  }
}
@media (max-width: 767.98px) {
  .footersec .footer-nav .row:nth-child(2) .col-lg-4 {
    width: calc(33% - var(--bs-gutter-x));
  }
}
@media (max-width: 575.98px) {
  .footersec .footer-nav .row:nth-child(2) .col-lg-4 {
    width: calc(100% - var(--bs-gutter-x));
  }
  .footersec .footer-nav .row:nth-child(2) .col-lg-4:nth-child(1) {
    order: 3;
  }
  .footersec .footer-nav .row:nth-child(2) .col-lg-4:nth-child(2) {
    order: 1;
  }
  .footersec .footer-nav .row:nth-child(2) .col-lg-4:nth-child(3) {
    order: 2;
  }
}
.footersec .footer-nav:before {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/hero-banner-scaled.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 374px;
  bottom: 0;
  z-index: 2;
  background-position: bottom;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .footersec .footer-nav:before {
    height: 100%;
  }
}
.footersec .footer-nav h3 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .footersec .footer-nav .footer-item {
    text-align: center;
    margin-bottom: 25px;
  }
}
.footersec .footer-nav .footer-item h3 {
  text-align: left;
  font-size: 30px;
  margin-bottom: 21px;
  color: var(--white);
}
@media (max-width: 575.98px) {
  .footersec .footer-nav .footer-item h3 {
    text-align: center;
    font-size: 20px;
  }
}
.footersec .footer-nav .footer-item ul li {
  display: inline-block;
  padding-right: 27px;
}
@media (max-width: 1680.98px) {
  .footersec .footer-nav .footer-item ul li {
    padding-right: 10px;
  }
}
@media (max-width: 1440.98px) {
  .footersec .footer-nav .footer-item ul li {
    padding-right: 7px;
  }
}
@media (max-width: 991.98px) {
  .footersec .footer-nav .footer-item ul li {
    padding-right: 0;
    display: block;
    padding-bottom: 8px;
  }
}
@media (max-width: 575.98px) {
  .footersec .footer-nav .footer-item ul li {
    padding-bottom: 15px;
  }
}
.footersec .footer-nav .footer-item ul li a {
  color: var(--white);
  font-weight: 400;
  opacity: 0.7;
}
@media (max-width: 1680.98px) {
  .footersec .footer-nav .footer-item ul li a {
    font-size: 15px;
  }
}
@media (max-width: 1440.98px) {
  .footersec .footer-nav .footer-item ul li a {
    font-size: 13px;
  }
}
.footersec .footer-nav .footer-item ul li a:hover {
  color: var(--white);
  opacity: 1;
}
.footersec .footer-nav .col {
  margin: 0 10px 35px;
}
.footersec .footer-nav .club-form .col-lg-8 {
  border: 1px solid #D2D2D2;
  padding: 40px 40px 0;
  background-color: var(--white);
  margin-bottom: 0;
}
@media (max-width: 1440.98px) {
  .footersec .footer-nav .club-form .col-lg-8 {
    width: calc(75% - var(--bs-gutter-x));
  }
}
@media (max-width: 1199.98px) {
  .footersec .footer-nav .club-form .col-lg-8 {
    width: calc(90% - var(--bs-gutter-x));
  }
}
@media (max-width: 991.98px) {
  .footersec .footer-nav .club-form .col-lg-8 {
    width: calc(95% - var(--bs-gutter-x));
  }
}
@media (max-width: 767.98px) {
  .footersec .footer-nav .club-form .col-lg-8 {
    margin-bottom: 40px;
    padding: 40px 10px 20px;
  }
}
.footersec .footer-nav .club-form .col-lg-8 .dec {
  margin: 0 10px;
}
@media (max-width: 575.98px) {
  .footersec .footer-nav .club-form .col-lg-8 {
    width: calc(95% - var(--bs-gutter-x));
  }
}
@media (max-width: 1440.98px) {
  .footersec .footer-nav .club-form .zcwf_lblLeft .zcwf_row {
    width: 49%;
  }
}
@media (max-width: 767.98px) {
  .footersec .footer-nav .club-form .zcwf_title {
    font-size: 25px;
  }
}
@media (max-width: 575.98px) {
  .footersec .footer-nav .club-form .zcwf_lblLeft .zcwf_row {
    width: 100%;
  }
  .footersec .footer-nav .club-form input#formsubmit {
    max-width: 135px;
    padding: 10px 0px !important;
  }
  .footersec .footer-nav .club-form input.reset-btn {
    padding: 10px 0px !important;
    max-width: 150px !important;
  }
}
.footersec .footer-nav .club-form .zcwf_col_fld {
  text-align: center;
}
.footersec .footer-nav .club-form .zcwf_col_fld input.btn-link {
  background-color: var(--black);
  color: var(--white);
  padding: 13px 40px;
  margin: 0 15px;
}
.footersec .footer-nav .club-form .zcwf_col_fld input.btn-link:hover {
  background-color: var(--white);
  color: var(--black);
}
.footersec .footer-nav .club-form .zcwf_col_fld input.btn-link:last-child {
  background-color: transparent;
  color: var(--black);
}
.footersec .footer-nav .right-nav h3 {
  text-align: right !important;
}
@media (max-width: 575.98px) {
  .footersec .footer-nav .right-nav h3 {
    text-align: center !important;
  }
}
.footersec .footer-nav .right-nav ul {
  text-align: right;
}
@media (max-width: 575.98px) {
  .footersec .footer-nav .right-nav ul {
    text-align: center !important;
  }
}
.footersec .footer-nav .right-nav ul li:last-child {
  padding-right: 0;
}
.footersec .footer-bottom {
  padding-top: 30px;
  background-color: var(--white);
}
.footersec .footer-bottom .col-lg-4 {
  position: relative;
}
@media (max-width: 1199.98px) {
  .footersec .footer-bottom .col-lg-4 {
    width: calc(49.3333% - var(--bs-gutter-x));
  }
}
@media (max-width: 767.98px) {
  .footersec .footer-bottom .col-lg-4 {
    width: calc(33.3333% - var(--bs-gutter-x));
  }
}
@media (max-width: 575.98px) {
  .footersec .footer-bottom .col-lg-4 {
    width: calc(100% - var(--bs-gutter-x));
    text-align: center;
  }
}
@media (max-width: 1280.98px) {
  .footersec .footer-bottom .col-lg-4 img {
    width: 90%;
  }
}
@media (max-width: 991.98px) {
  .footersec .footer-bottom .col-lg-4 img {
    padding-bottom: 25px;
    width: auto;
  }
}
.footersec .footer-bottom .col-lg-4:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 50px;
  background-color: #ccc;
  right: 15px;
  opacity: 0.7;
}
@media (max-width: 1199.98px) {
  .footersec .footer-bottom .col-lg-4:before {
    right: 0;
    top: 0;
  }
}
@media (max-width: 991.98px) {
  .footersec .footer-bottom .col-lg-4:before {
    display: none;
  }
}
.footersec .footer-bottom .col-lg-4:last-child:before {
  display: none;
}
.footersec .footer-bottom .col-lg-4 address {
  margin-top: 5px;
}
.footersec .footer-bottom .col-lg-4 address.emial-add {
  margin-top: 0px;
}
.footersec .footer-bottom .col-lg-4 address.emial-add ul li a {
  position: relative;
  margin-bottom: 10px;
  display: inline-block !important;
}
.footersec .footer-bottom .col-lg-4 address.emial-add ul li a span {
  position: relative;
}
.footersec .footer-bottom .col-lg-4 address.emial-add ul li a span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  background-color: var(--blue);
  bottom: 0;
  left: 0;
  transition: width 0.2s;
}
.footersec .footer-bottom .col-lg-4 address.emial-add ul li a:hover span:before {
  width: 0;
}
.footersec .footer-bottom .col-lg-4 address ul li a {
  color: var(--blue);
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
  display: block;
  font-size: 16px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .footersec .footer-bottom .col-lg-4 address ul li a {
    font-size: 0.726942299vw;
    margin-bottom: 0.4543389368vw;
  }
}
@media (max-width: 1440.98px) {
  .footersec .footer-bottom .col-lg-4 address ul li a {
    margin-bottom: 0;
  }
}
.footersec .footer-bottom .col-lg-4 address ul li a span {
  display: inline-block;
}
@media (max-width: 1440.98px) {
  .footersec .footer-bottom .col-lg-4 address ul li a span {
    margin-top: 0;
  }
}
@media (max-width: 1680.98px) {
  .footersec .footer-bottom .col-lg-4 address ul li a {
    font-size: 15px;
  }
}
@media (max-width: 1440.98px) {
  .footersec .footer-bottom .col-lg-4 address ul li a {
    font-size: 13px;
  }
}
@media (max-width: 1280.98px) {
  .footersec .footer-bottom .col-lg-4 address ul li a {
    font-size: 12px;
  }
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .footersec .footer-bottom .foooter-socail {
    margin-top: 1.3630168105vw;
  }
}
@media (max-width: 575.98px) {
  .footersec .footer-bottom .foooter-socail {
    margin-top: 30px;
  }
}
.footersec .footer-bottom .foooter-socail ul {
  float: right;
}
@media (max-width: 767.98px) {
  .footersec .footer-bottom .foooter-socail ul {
    float: none;
    margin: 0 auto;
    display: table;
  }
}
.footersec .footer-bottom .foooter-socail ul li {
  text-align: center;
  display: inline-block;
  margin: 0px 10px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .footersec .footer-bottom .foooter-socail ul li {
    margin: 0px 0.4543389368vw;
  }
}
@media (max-width: 575.98px) {
  .footersec .footer-bottom .foooter-socail ul li {
    margin: 0px;
  }
}
.footersec .footer-bottom .foooter-socail ul li a {
  display: block;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--blue);
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .footersec .footer-bottom .foooter-socail ul li a {
    font-size: 0.726942299vw;
  }
}
@media (max-width: 1440.98px) {
  .footersec .footer-bottom .foooter-socail ul li a {
    font-size: 12px;
  }
}
.footersec .footer-bottom .foooter-socail ul li a img {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .footersec .footer-bottom .foooter-socail ul li a img {
    width: 1.0904134484vw;
    height: 1.0904134484vw;
    margin-bottom: 0.4543389368vw;
  }
}
@media (max-width: 1440.98px) {
  .footersec .footer-bottom .foooter-socail ul li a img {
    margin-bottom: 0px;
  }
}
.footersec .footer-bottom .foooter-socail ul li a span {
  display: block;
  text-align: center;
}
.footersec .footer-bottom .copy-sec {
  text-align: center;
  border-top: 1px solid #ccc;
  margin-top: 35px;
  padding-top: 25px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .footersec .footer-bottom .copy-sec {
    margin-top: 1.590186279vw;
    padding-top: 1.1358473421vw;
  }
}
@media (max-width: 1440.98px) {
  .footersec .footer-bottom .copy-sec {
    margin-top: 20px;
    padding-top: 20px;
  }
}
.footersec .footer-bottom .copy-sec p {
  color: var(--blue);
}
.footersec .footer-bottom .copy-sec p span {
  margin: 0px 15px;
}

.power-sec {
  padding: calc(var(--section-padding) * 1.75) 0 var(--section-padding);
  position: relative;
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/hero-banner-scaled.webp) no-repeat;
  background-position: top center;
  background-size: 100% 75%;
}
.power-sec::after {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-before-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 290px;
  top: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: cover;
  background-position: center;
  bottom: 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .power-sec::after {
    height: 13.1758291686vw;
  }
}
.power-sec .webz-heading {
  opacity: 0;
}
@media (max-width: 767.98px) {
  .power-sec .webz-heading {
    line-height: normal;
  }
}
.power-sec p {
  color: var(--white);
  opacity: 0;
}
.power-sec iframe {
  width: 948px;
  height: 526px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .power-sec iframe {
    height: 375px;
  }
}
@media (max-width: 1440.98px) {
  .power-sec iframe {
    height: 375px;
    margin-top: 3%;
    width: 90%;
  }
}
@media (max-width: 575.98px) {
  .power-sec iframe {
    width: 100%;
    margin-top: 14%;
  }
}
.power-sec .col-lg-8 {
  margin: 0 auto;
  text-align: center;
  width: calc(70.666667% - var(--bs-gutter-x));
  position: relative;
}
@media (max-width: 767.98px) {
  .power-sec .col-lg-8 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.power-sec .col-lg-8:before {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/arrow-right.webp) no-repeat;
  width: 120px;
  height: 120px;
  position: absolute;
  right: auto;
  left: -10px;
  top: 47%;
}
@keyframes arrowShrinkHeight {
  0% {
    height: 82px;
  }
  50% {
    height: 0px;
  }
  100% {
    height: 0px;
  }
}
@media (max-width: 1680.98px) {
  .power-sec .col-lg-8:before {
    left: -115px;
    top: 48%;
  }
}
@media (max-width: 1440.98px) {
  .power-sec .col-lg-8:before {
    left: -80px;
    top: 45%;
  }
}
@media (max-width: 767.98px) {
  .power-sec .col-lg-8:before {
    display: none;
  }
}
.power-sec .col-lg-8:after {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/arrow-left.webp) no-repeat;
  width: 120px;
  height: 120px;
  position: absolute;
  left: auto;
  right: -35px;
  top: 50%;
}
@media (max-width: 1680.98px) {
  .power-sec .col-lg-8:after {
    right: -120px;
    top: 47%;
  }
}
@media (max-width: 1440.98px) {
  .power-sec .col-lg-8:after {
    right: -80px;
    top: 43%;
  }
}
@media (max-width: 767.98px) {
  .power-sec .col-lg-8:after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .power-sec .col-lg-8 .d-flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.power-sec .col-lg-8 .clubs-onboard {
  background-color: #40B287;
  width: 190px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding-left: 15px;
  position: relative;
  animation: flip-vertical 1.8s ease-out forwards;
}
.power-sec .col-lg-8 .clubs-onboard.rite {
  background-color: #40B287;
  border-radius: 16px;
  right: 15%;
  top: 40px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .power-sec .col-lg-8 .clubs-onboard.rite {
    border-radius: 0.726942299vw;
  }
}
@media (max-width: 1680.98px) {
  .power-sec .col-lg-8 .clubs-onboard.rite {
    top: -40px;
  }
}
@media (max-width: 767.98px) {
  .power-sec .col-lg-8 .clubs-onboard.rite {
    left: 0;
    margin-bottom: 19px;
    margin-top: 25px;
    border-radius: 5px;
    top: 0;
  }
}
.power-sec .col-lg-8 .clubs-onboard.lft {
  background-color: #0079B3;
  border-radius: 16px;
  width: 167px;
  padding-right: 0;
  margin-left: auto;
  left: 110px;
  top: 55px;
}
.power-sec .col-lg-8 .clubs-onboard.lft h6 {
  padding-left: 10px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .power-sec .col-lg-8 .clubs-onboard.lft h6 {
    padding-left: 0.4543389368vw;
  }
}
@media (max-width: 1680.98px) {
  .power-sec .col-lg-8 .clubs-onboard.lft {
    top: -40px;
  }
}
@media (max-width: 767.98px) {
  .power-sec .col-lg-8 .clubs-onboard.lft {
    top: 0px;
    left: 0;
    margin-left: inherit;
    border-radius: 5px;
  }
}
@media (max-width: 575.98px) {
  .power-sec .col-lg-8 .clubs-onboard.lft {
    width: 60%;
  }
}
.power-sec .col-lg-8 .clubs-onboard h6 {
  font-family: "Sansation", sans-serif;
  color: var(--white);
  font-size: 30px;
  font-weight: 400;
  padding-left: 0px;
}
@media (max-width: 767.98px) {
  .power-sec .col-lg-8 .clubs-onboard h6 {
    font-size: 25px;
  }
}
.power-sec .col-lg-8 .clubs-onboard span {
  font-family: "Roboto", sans-serif;
  color: var(--white);
  width: 50%;
  text-align: left;
  padding-left: 10px;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .power-sec .col-lg-8 .clubs-onboard {
    width: 8.6324398001vw;
    height: 3.1349386642vw;
  }
}
@media (max-width: 575.98px) {
  .power-sec .col-lg-8 .clubs-onboard {
    width: 198px;
    height: 50px;
  }
}
.power-sec a.btn-link {
  margin: 3% auto 0;
  opacity: 0;
}
.power-sec .web-tagline {
  border: 1px solid #fff;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
}
.power-sec.is-inview .webz-heading {
  animation: zoomIn 1s ease forwards;
}
.power-sec.is-inview p {
  animation: zoomIn 1.2s ease forwards;
}
.power-sec.is-inview a.btn-link {
  animation: zoomIn 0.8s ease forwards;
}

.manage-serves {
  padding: 0px 0 100px;
  position: relative;
}
@media (max-width: 575.98px) {
  .manage-serves {
    padding: 0 0 50px;
  }
}
.manage-serves::after {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-after-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  top: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  bottom: 0;
}
.manage-serves .row:nth-child(2) {
  margin-left: -5%;
  margin-right: -5%;
}
@media (max-width: 1199.98px) {
  .manage-serves .row:nth-child(2) {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  .manage-serves .row:nth-child(2) {
    justify-content: center;
  }
}
.manage-serves .col-lg-4 {
  padding-left: 2.5%;
  padding-right: 2.5%;
  width: 28.3333%;
}
@media (max-width: 1680.98px) {
  .manage-serves .col-lg-4 {
    padding: 0 2.5%;
  }
}
@media (max-width: 1280.98px) {
  .manage-serves .col-lg-4 {
    padding: 0 2.1%;
  }
}
@media (max-width: 767.98px) {
  .manage-serves .col-lg-4 {
    width: calc(45.3333% - var(--bs-gutter-x));
  }
}
@media (max-width: 575.98px) {
  .manage-serves .col-lg-4 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.manage-serves .col-lg-5 {
  margin: 0 auto;
  display: table;
  width: calc(48.666667% - var(--bs-gutter-x));
}
@media (max-width: 1440.98px) {
  .manage-serves .col-lg-5 {
    margin: 0 auto 55px;
  }
}
@media (max-width: 1280.98px) {
  .manage-serves .col-lg-5 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
@media (max-width: 575.98px) {
  .manage-serves .col-lg-5 {
    margin: 0 auto 0;
  }
}
.manage-serves .weby-heading {
  text-transform: capitalize;
  opacity: 0;
}
@media (max-width: 575.98px) {
  .manage-serves .weby-heading {
    font-size: 20px;
  }
}
.manage-serves p {
  opacity: 0;
}
.manage-serves .manage-item {
  text-align: center;
  background: #F6F6F6;
  border: 1px solid #E2E2E2;
  border-radius: 16px;
  margin-top: 20%;
}
@media (max-width: 575.98px) {
  .manage-serves .manage-item {
    margin-top: 5rem;
  }
}
.manage-serves .manage-item img {
  width: 100%;
  aspect-ratio: 538/263;
  margin-top: -42px;
  height: auto;
  opacity: 0;
}
.manage-serves .manage-item .contnt {
  padding: 40px 0;
}
.manage-serves .manage-item .contnt .web-small {
  font-size: 26px;
  color: var(--fontcolor);
  font-family: "Sansation", sans-serif;
  opacity: 0;
}
@media (max-width: 1199.98px) {
  .manage-serves .manage-item .contnt .web-small {
    font-size: 20px;
  }
}
.manage-serves .manage-item .contnt p {
  width: 75%;
  margin: 0 auto;
  padding: 15px 0 40px;
}
@media (max-width: 1199.98px) {
  .manage-serves .manage-item .contnt p {
    width: 100%;
    padding: 15px 0 15px;
  }
}
@media (max-width: 1199.98px) {
  .manage-serves .manage-item .contnt p {
    font-size: 13px;
  }
}
.manage-serves .manage-item .contnt a.btn-white {
  margin: 0 auto;
  opacity: 0;
}
.manage-serves.is-inview .weby-heading {
  animation: zoomIn 0.8s ease forwards;
}
.manage-serves.is-inview p {
  animation: zoomIn 1s ease forwards;
}
.manage-serves.is-inview .web-small {
  animation: zoomIn 1s ease forwards;
}
.manage-serves.is-inview a.btn-white {
  animation: zoomIn 1s ease forwards;
}
.manage-serves.is-inview .manage-item img {
  opacity: 1;
}

.page-template-aboutus .bg-sec,
.page-template-optimize .bg-sec {
  height: 100vh;
}
@media (max-width: 1199.98px) {
  .page-template-aboutus .bg-sec,
  .page-template-optimize .bg-sec {
    height: 100%;
  }
}
@media (max-width: 575.98px) {
  .page-template-aboutus .bg-sec,
  .page-template-optimize .bg-sec {
    height: auto;
  }
}

.aboutus-sec-main {
  padding: calc(var(--section-padding) * 1.75) 0 calc(var(--section-padding) - 20px) 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .aboutus-sec-main {
    padding: calc(var(--section-padding) * 1.75) 0 calc(var(--section-padding) - 20px) 0;
  }
}
@media (max-width: 575.98px) {
  .aboutus-sec-main {
    padding: calc(var(--section-padding) + 55px) 0 calc(var(--section-padding) - 20px) 0;
  }
}
.aboutus-sec-main img {
  width: 100%;
  height: auto;
  opacity: 0;
}
.aboutus-sec-main .col-lg-5 {
  width: calc(39.666667% - var(--bs-gutter-x));
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .aboutus-sec-main .col-lg-5 {
    width: calc(50% - var(--bs-gutter-x));
  }
}
@media (max-width: 575.98px) {
  .aboutus-sec-main .col-lg-5 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
@media (max-width: 991.98px) {
  .aboutus-sec-main .col-lg-7 {
    width: calc(50% - var(--bs-gutter-x));
    margin-top: 1%;
  }
}
@media (max-width: 575.98px) {
  .aboutus-sec-main .col-lg-7 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.aboutus-sec-main .common-content {
  margin-top: 3%;
  padding-left: 5%;
}
@media (max-width: 575.98px) {
  .aboutus-sec-main .common-content {
    margin-top: 25px;
    text-align: center;
  }
}
.aboutus-sec-main .common-content .web-tagline {
  opacity: 0;
}
.aboutus-sec-main .common-content .aboutus-para {
  opacity: 0;
}
.aboutus-sec-main .common-content .webz-heading {
  opacity: 0;
}
@media (max-width: 1440.98px) {
  .aboutus-sec-main .common-content .webz-heading {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  .aboutus-sec-main .common-content .webz-heading {
    font-size: 25px;
  }
}
@media (max-width: 575.98px) {
  .aboutus-sec-main .common-content .webz-heading {
    font-size: 17px;
    margin: 15px 0;
  }
}
.aboutus-sec-main .common-content p {
  width: 95%;
}
@media (max-width: 767.98px) {
  .aboutus-sec-main .common-content p::before {
    display: none;
  }
}
@media (max-width: 1440.98px) {
  .aboutus-sec-main .common-content p {
    width: 90%;
  }
}
@media (max-width: 991.98px) {
  .aboutus-sec-main .common-content p {
    padding-left: 22px;
  }
}
@media (max-width: 575.98px) {
  .aboutus-sec-main .common-content p {
    padding-left: 0px;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .aboutus-sec-main .common-content .lets-talk::before {
    display: none;
  }
}
.aboutus-sec-main .common-content .lets-talk a {
  opacity: 0;
}
@media (max-width: 575.98px) {
  .aboutus-sec-main .common-content .lets-talk a.scroll-downs {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.aboutus-sec-main.is-inview img {
  animation: fadeLeft 1s ease forwards;
}
.aboutus-sec-main.is-inview .web-tagline {
  animation: fadeRight 1s ease forwards;
}
.aboutus-sec-main.is-inview .webz-heading {
  animation: fadeRight 1s ease forwards;
}
.aboutus-sec-main.is-inview .aboutus-para {
  animation: fadeRight 1s ease forwards;
}
.aboutus-sec-main.is-inview .lets-talk a.scroll-downs {
  animation: zoomIn 0.8s ease forwards;
}

.northstar-story-sec {
  padding: calc(var(--section-padding) - 90px) 0 calc(var(--section-padding) - 75px) 0;
}
@media (max-width: 1440.98px) {
  .northstar-story-sec .col-lg-9 {
    width: calc(77% - var(--bs-gutter-x));
  }
}
@media (max-width: 1280.98px) {
  .northstar-story-sec .col-lg-9 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.northstar-story-sec .col-lg-9 .heading .weby-heading {
  opacity: 0;
}
.northstar-story-sec .col-lg-9 .heading p {
  opacity: 0;
}
.northstar-story-sec img {
  width: 100%;
}
.northstar-story-sec p {
  color: var(--grey);
}
@media (max-width: 991.98px) {
  .northstar-story-sec .common-content .lets-talk a.scroll-downs {
    left: 32%;
  }
}
.northstar-story-sec.is-inview .weby-heading {
  animation: zoomIn 0.8s ease forwards;
}
.northstar-story-sec.is-inview p {
  animation: zoomIn 0.8s ease forwards;
}

.aboutsec-serv {
  margin-top: -6%;
  position: relative;
  padding-top: 0;
}
@media (max-width: 1440.98px) {
  .aboutsec-serv {
    margin-top: -4%;
  }
}
@media (max-width: 991.98px) {
  .aboutsec-serv {
    margin-top: 10%;
  }
}
@media (max-width: 575.98px) {
  .aboutsec-serv {
    margin-top: 0;
    padding-top: 13%;
  }
}
@media (max-width: 991.98px) {
  .aboutsec-serv .col-lg-4 {
    width: calc(50% - var(--bs-gutter-x));
  }
}
@media (max-width: 575.98px) {
  .aboutsec-serv .col-lg-4 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
@media (max-width: 991.98px) {
  .aboutsec-serv .row {
    align-items: center;
    justify-content: center;
  }
}
.aboutsec-serv .our-services {
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  background-color: var(--white);
  height: 350px;
  opacity: 0;
}
@media (max-width: 1440.98px) {
  .aboutsec-serv .our-services {
    height: 310px;
  }
}
@media (max-width: 1280.98px) {
  .aboutsec-serv .our-services {
    height: 322px;
  }
}
@media (max-width: 1024px) {
  .aboutsec-serv .our-services {
    height: 365px;
  }
}
@media (max-width: 991.98px) {
  .aboutsec-serv .our-services {
    margin-bottom: 25px;
  }
}
@media (max-width: 575.98px) {
  .aboutsec-serv .our-services {
    padding: 13px;
  }
}
.aboutsec-serv .our-services img {
  height: auto;
  width: auto;
}
.aboutsec-serv .our-services .web-small {
  font-size: 28px;
  color: var(--black);
  margin: 30px 0 0;
}
@media (max-width: 575.98px) {
  .aboutsec-serv .our-services .web-small {
    font-size: 23px;
  }
}
.aboutsec-serv .our-services p {
  font-size: 16px;
}
@media (max-width: 1440.98px) {
  .aboutsec-serv .our-services p {
    font-size: 14px;
    line-height: 23px;
  }
}
.aboutsec-serv .heading {
  margin-bottom: 2%;
}
.aboutsec-serv.is-inview .our-services {
  animation: zoomIn 0.8s ease forwards;
}

@media (max-width: 1440.98px) {
  .story-content-main {
    padding: calc(var(--section-padding) - 90px) 0 calc(var(--section-padding) - 20px) 0;
  }
}
@media (max-width: 1024px) {
  .story-content-main {
    padding: calc(var(--section-padding) - 90px) 0 0 0;
  }
}
@media (max-width: 991.98px) {
  .story-content-main {
    padding: calc(var(--section-padding) - 90px) 0 30px 0;
  }
}
.story-content-main .weby-heading {
  font-size: 46px;
}
.story-content-main .webx-heading {
  opacity: 0;
}
.story-content-main .web-title {
  font-size: 16px;
  color: var(--black);
  margin: 15px 0;
  opacity: 0;
}

@media (max-width: 575.98px) {
  .story-content {
    text-align: left;
    margin-top: 20px;
  }
}
.story-content ul {
  padding-left: 25px;
}
@media (max-width: 991.98px) {
  .story-content ul {
    padding-left: 15px;
  }
}
.story-content ul li {
  color: #657584;
  font-size: 16px;
  margin: 15px 0;
  line-height: 26px;
  position: relative;
  opacity: 0;
}
@media (max-width: 1440.98px) {
  .story-content ul li {
    font-size: 14px;
  }
}
.story-content ul li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #35C8AE;
  left: -18px;
  top: 9px;
  border-radius: 100%;
}

@media (max-width: 991.98px) {
  .right-content .align-items-center {
    flex-direction: row-reverse;
  }
}
.right-content .col-lg-5:nth-child(1) {
  width: calc(37.666667% - var(--bs-gutter-x));
}
@media (max-width: 991.98px) {
  .right-content .col-lg-5:nth-child(1) {
    width: calc(48.666667% - var(--bs-gutter-x));
  }
}
@media (max-width: 575.98px) {
  .right-content .col-lg-5:nth-child(1) {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.right-content .col-lg-5:nth-child(1) img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  aspect-ratio: 115/83;
  opacity: 0;
}
.right-content .col-lg-5:nth-child(2) {
  margin-left: auto;
  width: calc(37.666667% - var(--bs-gutter-x));
}
@media (max-width: 1024px) {
  .right-content .col-lg-5:nth-child(2) {
    width: calc(41.666667% - var(--bs-gutter-x));
  }
}
@media (max-width: 991.98px) {
  .right-content .col-lg-5:nth-child(2) {
    width: calc(50.666667% - var(--bs-gutter-x));
  }
}
@media (max-width: 575.98px) {
  .right-content .col-lg-5:nth-child(2) {
    width: calc(100% - var(--bs-gutter-x));
    text-align: center;
    margin-top: 25px;
  }
}
.right-content.is-inview img {
  animation: fadeLeft 1s ease forwards;
}
.right-content.is-inview ul li {
  animation: fadeRight 1s ease forwards;
}
.right-content.is-inview .webx-heading {
  animation: fadeRight 1s ease forwards;
}
.right-content.is-inview .web-title {
  animation: fadeRight 1s ease forwards;
}

.left-content ul li {
  opacity: 0;
}
.left-content .webx-heading {
  opacity: 0;
}
.left-content .web-title {
  opacity: 0;
}
@media (max-width: 991.98px) {
  .left-content .align-items-center {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575.98px) {
  .left-content .align-items-center {
    flex-direction: column-reverse;
  }
}
.left-content .col-lg-5:nth-child(1) {
  margin-right: auto;
  width: calc(41.66666667% - var(--bs-gutter-x));
}
@media (max-width: 991.98px) {
  .left-content .col-lg-5:nth-child(1) {
    width: calc(49.666667% - var(--bs-gutter-x));
  }
}
@media (max-width: 575.98px) {
  .left-content .col-lg-5:nth-child(1) {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.left-content .col-lg-5:nth-child(2) {
  width: calc(37.666667% - var(--bs-gutter-x));
  padding-right: 60px;
}
@media (max-width: 991.98px) {
  .left-content .col-lg-5:nth-child(2) {
    width: calc(50.666667% - var(--bs-gutter-x));
    padding-right: 0px;
  }
}
@media (max-width: 575.98px) {
  .left-content .col-lg-5:nth-child(2) {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.left-content .col-lg-5:nth-child(2) img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 115/83;
  opacity: 0;
}
.left-content.is-inview img {
  animation: fadeLeft 1s ease forwards;
}
.left-content.is-inview ul li {
  animation: fadeRight 1s ease forwards;
}
.left-content.is-inview .webx-heading {
  animation: fadeRight 1s ease forwards;
}
.left-content.is-inview .web-title {
  animation: fadeRight 1s ease forwards;
}

main.story-content-detail {
  position: relative;
  padding-bottom: 15%;
  padding-top: 5%;
}
@media (max-width: 1440.98px) {
  main.story-content-detail {
    padding-bottom: 6%;
    overflow: hidden;
  }
}
main #animShipPath {
  overflow: visible;
  height: 100%;
  position: absolute;
  left: 13%;
  top: 18vw;
  max-height: 165.5vw;
  width: 100%;
  right: 0;
  margin: 0 auto;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  main #animShipPath {
    top: 10.9041344843vw;
    left: 8.359836438vw;
    max-height: 211.5856428896vw;
  }
}
@media (max-width: 1440.98px) {
  main #animShipPath {
    top: 16vw;
    left: 11.5vw;
    max-height: 155vw;
  }
}
@media (max-width: 1280.98px) {
  main #animShipPath {
    max-height: 145vw;
  }
}
@media (max-width: 1024px) {
  main #animShipPath {
    top: 25vw;
    left: 13.5vw;
  }
}
@media (max-width: 1199.98px) {
  main #animShipPath {
    top: 20vw;
    left: 11.5vw;
    max-height: 155vw;
  }
}
@media (max-width: 991.98px) {
  main #animShipPath {
    display: none;
  }
}
main #animShipPath #motionCship {
  visibility: hidden;
}
main #animShipPath #motionCship path {
  stroke-width: 1;
}
main #animShipPath #path2 {
  opacity: 0.5;
}

.engage-hero-sec {
  padding: calc(var(--section-padding) * 1.75) 0 var(--section-padding) 0;
}
@media (max-width: 575.98px) {
  .engage-hero-sec {
    padding: calc(var(--section-padding) + 15%) 0 calc(var(--section-padding) + 0px) 0;
  }
}
.engage-hero-sec .web-tagline {
  color: var(--white);
  border: 1px solid var(--white);
  display: inline-block;
  text-align: center;
  opacity: 0;
}
.engage-hero-sec .webz-heading {
  color: var(--white);
  margin: 20px auto 0;
  text-transform: capitalize;
  opacity: 0;
}
.engage-hero-sec p {
  color: var(--white);
  width: 80%;
  margin: 20px auto 0;
  opacity: 0;
}
.engage-hero-sec img {
  margin-top: 7%;
  width: 100%;
  height: auto;
  opacity: 0;
}
.engage-hero-sec a.btn-link {
  margin: 5% auto 0;
}
.engage-hero-sec.is-inview .web-tagline {
  animation: zoomIn 0.8s ease forwards;
}
.engage-hero-sec.is-inview .webz-heading {
  animation: zoomIn 0.8s ease forwards;
}
.engage-hero-sec.is-inview img {
  animation: zoomOut 0.8s ease forwards;
}
.engage-hero-sec.is-inview p {
  animation: zoomIn 0.5s ease forwards;
}
.engage-hero-sec.is-inview a.btn-link {
  animation: zoomIn 1s ease forwards;
}

.page-template-ContentSystemPage .footersec {
  background-color: #F0EEFF;
}

.engage-member-sec {
  position: relative;
  padding: calc(var(--section-padding) - 30px) 0 0 0;
}
.engage-member-sec .eng_mem_sec_1 .engage-member-info {
  padding-left: 4%;
}
@media (max-width: 991.98px) {
  .engage-member-sec .eng_mem_sec_1 .engage-member-info {
    padding-left: 0;
    padding-top: 6%;
  }
}
@media (max-width: 767.98px) {
  .engage-member-sec .eng_mem_sec_1 .engage-member-info {
    text-align: center;
    padding-top: 6%;
  }
}
.engage-member-sec img {
  width: 100%;
  height: auto;
  opacity: 0;
}
.engage-member-sec::before {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-before-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  bottom: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  top: 0;
}
@media (max-width: 767.98px) {
  .engage-member-sec .left-cotnt {
    flex-direction: column-reverse;
    padding-top: 10%;
  }
}
.engage-member-sec .row {
  margin-bottom: 4%;
}
.engage-member-sec .row:last-child {
  margin-bottom: 0;
}
.engage-member-sec .row.right-cotnt .engage-member-info {
  padding-left: 8%;
}
@media (max-width: 991.98px) {
  .engage-member-sec .row.right-cotnt .engage-member-info {
    padding-left: 0;
    padding-top: 6%;
  }
}
@media (max-width: 767.98px) {
  .engage-member-sec .row.right-cotnt .engage-member-info {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .engage-member-sec .row.right-cotnt {
    padding-top: 10%;
  }
}
.engage-member-sec .row.right-cotnt.is-inview img {
  animation: fadeLeft 1s ease forwards;
}
.engage-member-sec .row.right-cotnt.is-inview .weby-heading {
  animation: fadeRight 1s ease forwards;
}
.engage-member-sec .row.right-cotnt.is-inview .web-tagline {
  animation: fadeRight 1s ease forwards;
}
.engage-member-sec .row.right-cotnt.is-inview .web-title {
  animation: fadeRight 1s ease forwards;
}
.engage-member-sec .row.right-cotnt.is-inview p {
  animation: fadeRight 1s ease forwards;
}
.engage-member-sec .row.right-cotnt.is-inview a.btn-white {
  animation: fadeRight 1s ease forwards;
}
.engage-member-sec .row.right-cotnt.is-inview .image-comparison-thumb {
  opacity: 1 !important;
}
.engage-member-sec .row.left-cotnt .engage-member-info {
  padding-right: 8%;
}
@media (max-width: 991.98px) {
  .engage-member-sec .row.left-cotnt .engage-member-info {
    padding-right: 0;
    padding-top: 6%;
  }
}
@media (max-width: 767.98px) {
  .engage-member-sec .row.left-cotnt .engage-member-info {
    text-align: center;
    padding-top: 10%;
  }
}
@media (max-width: 767.98px) {
  .engage-member-sec .row.left-cotnt {
    padding-top: 10%;
  }
}
.engage-member-sec .row.left-cotnt.is-inview img {
  animation: fadeRight 1s ease forwards;
}
.engage-member-sec .row.left-cotnt.is-inview .weby-heading {
  animation: fadeLeft 1s ease forwards;
}
.engage-member-sec .row.left-cotnt.is-inview .web-tagline {
  animation: fadeLeft 1s ease forwards;
}
.engage-member-sec .row.left-cotnt.is-inview .web-title {
  animation: fadeLeft 1s ease forwards;
}
.engage-member-sec .row.left-cotnt.is-inview p {
  animation: fadeLeft 1s ease forwards;
}
.engage-member-sec .row.left-cotnt.is-inview a.btn-white {
  animation: fadeLeft 1s ease forwards;
}
.engage-member-sec .web-tagline {
  opacity: 0;
}
.engage-member-sec .weby-heading {
  margin: 25px 0;
  opacity: 0;
}
.engage-member-sec .web-title {
  opacity: 0;
}
.engage-member-sec p {
  opacity: 0;
}
.engage-member-sec .btn-white {
  opacity: 0;
}
@media (max-width: 767.98px) {
  .engage-member-sec .btn-white {
    margin: 20px auto 0;
  }
}
.engage-member-sec.is-inview .eng_mem_sec_1 img {
  animation: fadeLeft 1s ease forwards;
}
.engage-member-sec.is-inview .eng_mem_sec_1 .weby-heading {
  animation: fadeRight 1s ease forwards;
}
.engage-member-sec.is-inview .eng_mem_sec_1 .web-tagline {
  animation: fadeRight 1s ease forwards;
}
.engage-member-sec.is-inview .eng_mem_sec_1 .web-title {
  animation: fadeRight 1s ease forwards;
}
.engage-member-sec.is-inview .eng_mem_sec_1 p {
  animation: fadeRight 1s ease forwards;
}
.engage-member-sec.is-inview .eng_mem_sec_1 a.btn-white {
  animation: fadeRight 1s ease forwards;
}
.engage-member-sec.is-inview .image-comparison-thumb {
  opacity: 1;
}

.page-template-optimize .footersec {
  background-color: #efeeff;
}

.optimize-hero-banner {
  padding-top: calc(var(--section-padding) * 1.75);
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .optimize-hero-banner {
    padding-top: calc(var(--section-padding) * 1.75);
  }
}
@media (max-width: 575.98px) {
  .optimize-hero-banner {
    padding: calc(var(--section-padding) + 15%) 0 calc(var(--section-padding) + 0px) 0;
  }
}
.optimize-hero-banner .web-tagline {
  border: 1px solid var(--white);
  color: var(--white);
  margin-bottom: 3%;
}
.optimize-hero-banner p {
  color: var(--white);
}
.optimize-hero-banner a.btn-link {
  margin: 5% auto 0;
}

.optimize-sec {
  margin-top: -15%;
  position: relative;
  padding-top: 0;
}
@media (max-width: 1680.98px) {
  .optimize-sec {
    margin-top: -11%;
  }
}
@media (max-width: 1199.98px) {
  .optimize-sec {
    margin-top: 0;
    padding-top: 5%;
  }
}
.optimize-sec::after {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-before-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 290px;
  top: 0;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: cover;
  background-position: center;
  bottom: 0;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .optimize-sec {
    padding-top: 0;
  }
}
.optimize-sec img {
  width: 100%;
  aspect-ratio: 108/85;
  border-radius: 15px;
  height: auto;
}
@media (min-width: 2201px) and (max-width: 4000px) {
  .optimize-sec img {
    border-radius: 0.6815084053vw;
  }
}
@media (max-width: 1199.98px) {
  .optimize-sec img {
    margin-top: 5%;
  }
}
@media (max-width: 1280.98px) {
  .optimize-sec .program-detial-sec {
    padding-bottom: 10%;
  }
}

.empower-banner-sec {
  padding: calc(var(--section-padding) * 1.75) 0 var(--section-padding) 0;
}
@media (max-width: 991.98px) {
  .empower-banner-sec {
    padding: calc(var(--section-padding) + 10%) 0 calc(var(--section-padding) + 0px) 0;
  }
}
@media (max-width: 767.98px) {
  .empower-banner-sec {
    padding: calc(var(--section-padding) + 15%) 0 calc(var(--section-padding) + 0px) 0;
  }
}
@media (max-width: 991.98px) {
  .empower-banner-sec .col-lg-7 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
@media (max-width: 991.98px) {
  .empower-banner-sec .col-lg-5 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.empower-banner-sec img {
  width: 100%;
  height: auto;
  aspect-ratio: 847/862;
  opacity: 0;
}
@media (max-width: 991.98px) {
  .empower-banner-sec img {
    display: none;
  }
}
.empower-banner-sec .common-content {
  padding-left: 7%;
  padding-right: 7%;
}
@media (max-width: 767.98px) {
  .empower-banner-sec .common-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575.98px) {
  .empower-banner-sec .common-content {
    text-align: center;
  }
}
.empower-banner-sec .common-content p {
  opacity: 0;
}
@media (max-width: 767.98px) {
  .empower-banner-sec .common-content p {
    padding-left: 0;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .empower-banner-sec .common-content p::before {
    display: none;
  }
}
.empower-banner-sec .common-content .web-tagline {
  opacity: 0;
}
.empower-banner-sec .common-content .webz-heading {
  opacity: 0;
}
@media (max-width: 767.98px) {
  .empower-banner-sec .common-content .webz-heading {
    margin: 20px 0;
  }
}
.empower-banner-sec .common-content .lets-talk {
  position: relative;
  left: 10%;
  top: 50px;
}
@media (max-width: 575.98px) {
  .empower-banner-sec .common-content .lets-talk::before {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .empower-banner-sec .common-content .lets-talk {
    left: 0%;
    top: 0;
  }
}
.empower-banner-sec .common-content .lets-talk a {
  opacity: 0;
}
@media (max-width: 1440.98px) {
  .empower-banner-sec .common-content .lets-talk a {
    left: 25%;
  }
}
@media (max-width: 1280.98px) {
  .empower-banner-sec .common-content .lets-talk a {
    left: 30%;
  }
}
@media (max-width: 575.98px) {
  .empower-banner-sec .common-content .lets-talk a {
    left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 575.98px) {
  .empower-banner-sec .common-content .lets-talk {
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
    display: table;
  }
}
.empower-banner-sec.is-inview .webz-heading {
  animation: fadeLeft 1s ease forwards;
}
.empower-banner-sec.is-inview .web-tagline {
  animation: fadeLeft 1s ease forwards;
}
.empower-banner-sec.is-inview p {
  animation: fadeLeft 1s ease forwards;
}
.empower-banner-sec.is-inview img {
  animation: fadeRight 1s ease forwards;
}
.empower-banner-sec.is-inview a.scroll-downs {
  animation: zoomIn 1.8s ease forwards;
}

.empower-sec {
  padding: calc(var(--section-padding) - 0px) 0 calc(var(--section-padding) - 90px) 0;
}
.empower-sec img {
  width: 100%;
  height: auto;
  aspect-ratio: 411/334;
  opacity: 0;
}
@media (max-width: 767.98px) {
  .empower-sec .empower-content {
    text-align: center;
  }
}
.empower-sec .empower-content .weby-heading {
  margin: 20px 0;
  opacity: 0;
}
.empower-sec .empower-content a.btn-white {
  margin-top: 5%;
  opacity: 0;
}
@media (max-width: 767.98px) {
  .empower-sec .empower-content a.btn-white {
    margin: 40px auto 0;
  }
}
.empower-sec .empower-content .web-tagline {
  opacity: 0;
}
.empower-sec .empower-content .web-title {
  opacity: 0;
}
.empower-sec .empower-content p {
  opacity: 0;
}
.empower-sec.is-inview .web-tagline {
  animation: fadeRight 1s ease forwards;
}
.empower-sec.is-inview .weby-heading {
  animation: fadeRight 1s ease forwards;
}
.empower-sec.is-inview .web-title {
  animation: fadeRight 1s ease forwards;
}
.empower-sec.is-inview p {
  animation: fadeRight 1s ease forwards;
}
.empower-sec.is-inview img {
  animation: fadeLeft 1s ease forwards;
}
.empower-sec.is-inview a.btn-white {
  animation: fadeRight 1s ease forwards;
}

.empower-app-detial {
  padding: calc(var(--section-padding) - 90px) 0 0 0;
}
@media (max-width: 1280.98px) {
  .empower-app-detial {
    padding: calc(var(--section-padding) - 5px) 0 calc(var(--section-padding) - 20px) 0;
  }
}
@media (max-width: 1280.98px) {
  .empower-app-detial .col-lg-5 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.empower-app-detial .col-lg-5 p {
  opacity: 0;
}
.empower-app-detial .weby-heading {
  opacity: 0;
}
.empower-app-detial .align-items-center {
  align-items: center;
  justify-content: center;
  margin-top: 1%;
}
.empower-app-detial .align-items-center .col-lg-3 {
  opacity: 0;
}
@media (max-width: 767.98px) {
  .empower-app-detial .align-items-center .col-lg-3 {
    order: 1;
    margin-top: 30px;
  }
}
@media (max-width: 575.98px) {
  .empower-app-detial .align-items-center .col-lg-3 {
    width: calc(60% - var(--bs-gutter-x));
  }
}
.empower-app-detial .align-items-center .col-lg-4 {
  opacity: 0;
}
@media (max-width: 767.98px) {
  .empower-app-detial .align-items-center .col-lg-4 {
    order: 2;
  }
}
.empower-app-detial .text-right {
  text-align: right;
  padding-right: 5%;
}
@media (max-width: 767.98px) {
  .empower-app-detial .text-right {
    text-align: center;
  }
}
.empower-app-detial .text-right p {
  margin-left: auto;
}
.empower-app-detial .text-left {
  text-align: left;
  padding-left: 5%;
}
@media (max-width: 767.98px) {
  .empower-app-detial .text-left {
    text-align: center;
    padding-left: 0px;
  }
}
.empower-app-detial .app img {
  width: 100%;
  aspect-ratio: 327/668;
  height: auto;
}
.empower-app-detial .app-detail-info {
  margin-bottom: 35%;
  margin-top: 25%;
}
@media (max-width: 767.98px) {
  .empower-app-detial .app-detail-info {
    margin-bottom: 0;
    margin-top: 8%;
    padding-right: 0;
  }
}
@media (max-width: 1680.98px) {
  .empower-app-detial .app-detail-info {
    margin-bottom: 20%;
  }
}
@media (max-width: 575.98px) {
  .empower-app-detial .app-detail-info {
    margin-bottom: 5%;
  }
}
.empower-app-detial .app-detail-info p {
  width: 70%;
}
@media (max-width: 991.98px) {
  .empower-app-detial .app-detail-info p {
    width: 100%;
  }
}
.empower-app-detial .app-detail-info .webz-subtitle {
  color: var(--black);
  font-size: 24px;
  margin-top: 20px;
}
.empower-app-detial.is-inview .weby-heading {
  animation: zoomIn 0.8s ease forwards;
}
.empower-app-detial.is-inview .align-items-center .col-lg-4:nth-child(1) {
  animation: fadeLeft 1s ease forwards;
}
.empower-app-detial.is-inview .align-items-center .col-lg-4:nth-child(3) {
  animation: fadeRight 1s ease forwards;
}
.empower-app-detial.is-inview .align-items-center .col-lg-3 {
  animation: zoomIn 0.8s ease forwards;
}
.empower-app-detial.is-inview .col-lg-5 {
  animation: zoomIn 0.8s ease forwards;
}

.northstargroup-banner-sec {
  padding: calc(var(--section-padding) * 1.75) 0 0 0;
  height: 80vh;
}
@media (max-width: 1280.98px) {
  .northstargroup-banner-sec {
    height: 60vh;
  }
}
@media (max-width: 1199.98px) {
  .northstargroup-banner-sec {
    height: 50vh;
  }
}
@media (max-width: 575.98px) {
  .northstargroup-banner-sec {
    height: 100%;
    padding: calc(var(--section-padding) * 2.2) 0 8% 0;
  }
}
@media (max-width: 1280.98px) {
  .northstargroup-banner-sec .col-lg-7 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.northstargroup-banner-sec .web-tagline {
  color: var(--white);
  border: 1px solid var(--white);
  opacity: 0;
}
.northstargroup-banner-sec .webz-heading {
  margin: 25px 0px;
  opacity: 0;
}
.northstargroup-banner-sec p {
  color: var(--white);
  opacity: 0;
}
.northstargroup-banner-sec.is-inview .web-tagline {
  animation: slideDown 0.5s ease-out forwards;
}
.northstargroup-banner-sec.is-inview .webz-heading {
  animation: slideUp 0.8s ease forwards;
}
.northstargroup-banner-sec.is-inview p {
  animation: slideUp 0.8s ease forwards;
}

.img-frame {
  position: relative;
  padding: 0;
  z-index: 1;
  margin-top: -19%;
}
@media (max-width: 1680.98px) {
  .img-frame {
    margin-top: -13%;
  }
}
@media (max-width: 1199.98px) {
  .img-frame {
    margin-top: -13%;
  }
}
@media (max-width: 1440.98px) {
  .img-frame {
    margin-top: -15%;
  }
}
@media (max-width: 1280.98px) {
  .img-frame {
    margin-top: -12%;
  }
}
@media (max-width: 575.98px) {
  .img-frame {
    margin-top: 10%;
  }
}
.img-frame img {
  width: 100%;
  border-radius: 24px;
  height: auto;
  opacity: 0;
}
.img-frame .lets-talk {
  position: relative;
  text-align: center;
  margin: -65px auto 0;
  display: table;
}
.img-frame .lets-talk a {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  right: auto;
  border-radius: 100%;
  overflow: hidden;
}
.img-frame .lets-talk a.scroll-downs {
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}
.img-frame .lets-talk a .circle-arrow {
  background-repeat: no-repeat;
  background-image: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/05/bigarrow.png);
  width: 42px;
  height: 42px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  top: 35%;
  background-size: contain;
  transform: rotate(136deg);
}
.img-frame .lets-talk a .circle-image {
  display: flex;
  width: 147px;
  height: 147px;
  background-image: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/07/let-bg.webp);
  background-size: initial;
  background-repeat: no-repeat;
  background-position: center;
  animation: circleSpin 8s linear infinite;
}
@media (max-width: 1440.98px) {
  .img-frame .lets-talk a .circle-image {
    width: 100px;
    height: 100px;
    background-size: 115%;
  }
}
@keyframes circleSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1440.98px) {
  .img-frame .lets-talk a .circle-arrow {
    width: 25px;
    height: 25px;
  }
}
.img-frame.is-inview img {
  animation: slideUp 0.8s ease forwards;
}

.gredient-bg {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.gredient-bg:before {
  background-image: url(/wp-content/uploads/2025/07/ns_group_sec_2_bg.webp);
  width: 100%;
  height: 200vh;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: top;
  top: -22vh;
  z-index: -1;
  pointer-events: none;
}

.whyus-sec-banner {
  padding: calc(var(--section-padding) * 1.75) 0 var(--section-padding) 0;
}
@media (max-width: 767.98px) {
  .whyus-sec-banner {
    padding: calc(var(--section-padding) + 10%) 0 calc(var(--section-padding) - 30px);
  }
}
.whyus-sec-banner .web-tagline {
  opacity: 0;
}
.whyus-sec-banner .webz-heading {
  opacity: 0;
}
.whyus-sec-banner .position-relative {
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .whyus-sec-banner .position-relative {
    margin-top: 5%;
  }
}
.whyus-sec-banner .common-content {
  padding: 0;
}
@media (max-width: 767.98px) {
  .whyus-sec-banner .common-content {
    text-align: center;
  }
}
.whyus-sec-banner img {
  opacity: 0;
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.whyus-sec-banner p {
  opacity: 0;
}
.whyus-sec-banner .clubs-onboard {
  position: absolute;
  width: 195px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding-left: 0px;
}
@media (max-width: 575.98px) {
  .whyus-sec-banner .clubs-onboard {
    width: 198px;
    height: 50px;
  }
}
.whyus-sec-banner .clubs-onboard.rite {
  background-color: #40B287;
  right: auto;
  width: 205px;
  padding-right: 0;
  margin-left: auto;
  left: -12%;
  top: auto;
  bottom: 85px;
  opacity: 0;
  z-index: 9;
}
@media (max-width: 991.98px) {
  .whyus-sec-banner .clubs-onboard.rite {
    bottom: -20px;
  }
}
@media (max-width: 767.98px) {
  .whyus-sec-banner .clubs-onboard.rite {
    left: 0;
    margin-bottom: 19px;
    margin-top: 25px;
    border-radius: 5px;
  }
}
.whyus-sec-banner .clubs-onboard.lft {
  background-color: #0079B3;
  border-radius: 16px;
  left: auto;
  top: 40px;
  right: -65px;
}
@media (max-width: 1680.98px) {
  .whyus-sec-banner .clubs-onboard.lft {
    right: -9%;
  }
}
@media (max-width: 991.98px) {
  .whyus-sec-banner .clubs-onboard.lft {
    right: auto;
    left: -30px;
    top: -30px;
  }
}
@media (max-width: 767.98px) {
  .whyus-sec-banner .clubs-onboard.lft {
    top: 0px;
    left: 0;
    margin-left: inherit;
    border-radius: 5px;
    bottom: -20px;
  }
}
@media (max-width: 575.98px) {
  .whyus-sec-banner .clubs-onboard.lft {
    width: 60%;
  }
}
.whyus-sec-banner .clubs-onboard h6 {
  font-family: "Sansation", sans-serif;
  color: var(--white);
  font-size: 30px;
  font-weight: 400;
  padding-left: 18px;
}
@media (max-width: 767.98px) {
  .whyus-sec-banner .clubs-onboard h6 {
    font-size: 25px;
  }
}
.whyus-sec-banner .clubs-onboard span {
  font-family: "Roboto", sans-serif;
  color: var(--white);
  width: 50%;
  text-align: left;
  padding-left: 10px;
}
.whyus-sec-banner .common-content .lets-talk {
  margin-top: 5%;
}
.whyus-sec-banner .common-content .lets-talk::before {
  display: none;
}
.whyus-sec-banner .common-content .lets-talk a {
  opacity: 0;
  left: 0;
}
@media (max-width: 767.98px) {
  .whyus-sec-banner .common-content .lets-talk a {
    margin: 0 auto;
  }
}
.whyus-sec-banner .common-content .lets-talk a .scroll-downs {
  left: 0px !important;
}
.whyus-sec-banner .common-content .lets-talk a .scroll-downs span.circle-arrow {
  transform: rotate(137deg);
}
.whyus-sec-banner .common-content p {
  padding: 0px;
  opacity: 0;
}
.whyus-sec-banner .common-content p::before {
  display: none;
}
.whyus-sec-banner.is-inview img {
  animation: zoomIn 0.8s ease forwards;
}
.whyus-sec-banner.is-inview .web-tagline {
  animation: fadeLeft 1s ease forwards;
}
.whyus-sec-banner.is-inview .webz-heading {
  animation: fadeLeft 1s ease forwards;
}
.whyus-sec-banner.is-inview p {
  animation: fadeLeft 1s ease forwards;
}
.whyus-sec-banner.is-inview .lets-talk a.scroll-downs {
  animation: zoomIn 0.8s ease forwards;
}
.whyus-sec-banner.is-inview .clubs-onboard.rite {
  animation: flip-vertical 0.8s ease-out forwards;
}
.whyus-sec-banner.is-inview .clubs-onboard.lft {
  animation: flip-vertical 0.8s ease-out forwards;
}
.whyus-sec-banner.is-inview a .scroll-downs {
  animation: zoomIn 0.8s ease forwards;
}

.northstar-support {
  position: relative;
}
.northstar-support .weby-heading {
  opacity: 0;
}
.northstar-support p {
  opacity: 0;
}
.northstar-support::before {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-before-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  bottom: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  top: 0;
}
@media (max-width: 1199.98px) {
  .northstar-support::before {
    top: -25px;
  }
}
.northstar-support::after {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-after-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  top: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  bottom: 0;
}
@media (max-width: 767.98px) {
  .northstar-support .col-lg-7 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.northstar-support .d-flex {
  align-items: center;
  border-left: 2px solid rgba(16, 16, 16, 0.1);
  padding: 70px;
  background: linear-gradient(90deg, #F7F7F7 0%, #FFFFFF 100%);
}
@media (max-width: 991.98px) {
  .northstar-support .d-flex {
    padding: 25px;
  }
}
@media (max-width: 767.98px) {
  .northstar-support .d-flex {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .northstar-support .d-flex {
    padding: 0;
    background: inherit;
    border-left: none;
  }
}
.northstar-support .d-flex .tab-img {
  margin-right: 45px;
  opacity: 0;
}
@media (max-width: 767.98px) {
  .northstar-support .d-flex .tab-img {
    margin-right: 0px;
  }
}
.northstar-support .d-flex .tab-img img {
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 479/466;
}
.northstar-support .d-flex .tab-content {
  opacity: 0;
}
@media (max-width: 767.98px) {
  .northstar-support .d-flex .tab-content {
    text-align: center;
    margin-top: 30px;
  }
}
.northstar-support .d-flex .tab-content .weby-heading {
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .northstar-support .d-flex .col-lg-7 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
@media (max-width: 767.98px) {
  .northstar-support .d-flex .col-lg-5 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.northstar-support .tabs {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  align-items: center;
}
.northstar-support .tabs .tab-nav {
  opacity: 0;
  width: calc(15.333333% - var(--bs-gutter-x));
}
@media (max-width: 991.98px) {
  .northstar-support .tabs .tab-nav {
    width: calc(100.333333% - var(--bs-gutter-x));
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
  }
}
@media (max-width: 767.98px) {
  .northstar-support .tabs .tab-nav {
    width: calc(100% - var(--bs-gutter-x));
  }
}
@media (max-width: 767.98px) {
  .northstar-support .tabs .tab-nav {
    justify-content: space-around;
  }
}
.northstar-support .tabs .tab-div {
  margin-left: 40px;
  width: calc(85% - var(--bs-gutter-x));
  opacity: 0;
}
@media (max-width: 767.98px) {
  .northstar-support .tabs .tab-div {
    margin-left: 0px;
    width: calc(100% - var(--bs-gutter-x));
  }
}
.northstar-support [role=tablist] {
  display: flex;
  flex-direction: column;
}
.northstar-support [role=tabpanel] {
  padding: 2rem;
}
@media (max-width: 991.98px) {
  .northstar-support [role=tabpanel] {
    padding: 0;
  }
}
.northstar-support button {
  display: flex;
  margin: 0;
  cursor: pointer;
  font-size: 24px;
  padding: 10px 0px 10px 0;
  background-color: transparent;
  text-align: left;
  border: 2px solid transparent;
  text-transform: capitalize;
}
@media (max-width: 1680.98px) {
  .northstar-support button {
    font-size: 18px;
  }
}
@media (max-width: 1440.98px) {
  .northstar-support button {
    font-size: 14px;
  }
}
.northstar-support button[aria-selected=true] {
  box-shadow: none;
  border-bottom: 2px solid #35C8AE;
  color: #35C8AE;
}
.northstar-support button[aria-selected=true]:focus {
  outline: 0;
  --bs-color: rgba(0, 0, 0, 0.6);
}
.northstar-support.is-inview .weby-heading {
  animation: zoomIn 0.8s ease forwards;
}
.northstar-support.is-inview p {
  animation: zoomIn 0.5s ease forwards;
}
.northstar-support.is-inview .tabs .tab-nav {
  animation: fadeLeft 1s ease forwards;
}
.northstar-support.is-inview .tabs .tab-div {
  animation: fadeRight 1s ease forwards;
}
.northstar-support.is-inview .tabs .tab-img {
  animation: fadeLeft 1s ease forwards;
}
.northstar-support.is-inview .tabs .tab-content {
  animation: fadeRight 1s ease forwards;
}
.northstar-support.is-inview .tabs .tab-content .weby-heading {
  animation: fadeRight 1s ease forwards;
}
.northstar-support.is-inview .tabs .tab-content p {
  animation: fadeRight 1s ease forwards;
}

.whyus-emp {
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/07/gredent-bg.webp) no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .whyus-emp {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .whyus-emp .col-lg-7 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
@media (max-width: 767.98px) {
  .whyus-emp .col-lg-5 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.whyus-emp .weby-heading {
  color: var(--white);
  opacity: 0;
}
.whyus-emp p {
  color: var(--white);
  opacity: 0.7;
}
.whyus-emp .whyus-content {
  opacity: 0;
}
.whyus-emp img {
  aspect-ratio: 595/198;
  margin: 0 auto;
  display: block;
  width: 60%;
  height: auto;
  opacity: 0;
}
.whyus-emp.is-inview .weby-heading {
  animation: fadeLeft 1s ease forwards;
}
.whyus-emp.is-inview .whyus-content {
  animation: fadeLeft 1s ease forwards;
}
.whyus-emp.is-inview img {
  animation: fadeRight 1s ease forwards;
}

.whyus-feautres-sec {
  padding: calc(var(--section-padding) - 30px) 0 calc(var(--section-padding) - 40px) 0;
  position: relative;
}
.whyus-feautres-sec::before {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-before-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  bottom: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  top: 0;
}
@media (max-width: 1199.98px) {
  .whyus-feautres-sec::before {
    top: -25px;
  }
}
.whyus-feautres-sec .m-auto .weby-heading {
  opacity: 0;
}
.whyus-feautres-sec .m-auto p {
  opacity: 0;
}
@media (max-width: 575.98px) {
  .whyus-feautres-sec .col-lg-3 {
    width: calc(100% - var(--bs-gutter-x));
  }
}
.whyus-feautres-sec .feature-item {
  text-align: center;
  margin-top: 9%;
  opacity: 0;
}
.whyus-feautres-sec .feature-item img {
  width: auto;
  height: auto;
}
.whyus-feautres-sec .feature-item .web-small {
  color: var(--black);
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
}
@media (max-width: 991.98px) {
  .whyus-feautres-sec .feature-item .web-small {
    font-size: 17px;
  }
}
.whyus-feautres-sec.is-inview .weby-heading {
  animation: fadeLeft 1s ease forwards;
}
.whyus-feautres-sec.is-inview .m-auto .weby-heading {
  animation: slideUp 0.8s ease forwards;
}
.whyus-feautres-sec.is-inview .m-auto p {
  animation: slideUp 0.8s ease forwards;
}
.whyus-feautres-sec.is-inview .feature-item {
  animation: flip-vertical 0.8s ease-out forwards;
}

.blog-main {
  padding-top: 10%;
}
.blog-main .card {
  border: 1px solid #ccc;
  margin-top: 2rem;
}
.blog-main .card img {
  height: auto;
  aspect-ratio: 538/293;
}
.blog-main .card .card-body {
  padding: 30px 30px;
}
.blog-main .card .card-body .card-title {
  font-size: 22px;
  line-height: 27px;
}
.blog-main .card .card-body a.btn-primary {
  border: 1px solid var(--black);
  color: var(--black);
  padding: 9px 20px;
  margin-top: 10px;
  display: inline-block;
  border-radius: 6px;
}
.blog-main .card .card-body a.btn-primary:hover {
  border: 1px solid var(--black);
  color: var(--white);
  background-color: var(--black);
}

.page-template-blog header.site_header,
.single-post header.site_header {
  background-color: #000;
}
.page-template-blog .blog-detail-sec,
.single-post .blog-detail-sec {
  padding-top: 10%;
  padding-bottom: 7%;
  position: relative;
  overflow: visible;
}
.page-template-blog .blog-detail-sec .web-tagline,
.single-post .blog-detail-sec .web-tagline {
  padding: 7px 15px;
  margin-bottom: 20px;
  font-size: 16px;
}
.page-template-blog .blog-detail-sec h1.entry-header,
.single-post .blog-detail-sec h1.entry-header {
  margin: 0px 0 25px;
}
.page-template-blog .blog-detail-sec .entry-content img,
.single-post .blog-detail-sec .entry-content img {
  width: 100%;
  margin: 25px 0;
  aspect-ratio: 1103/467;
}
.page-template-blog .blog-detail-sec .col-lg-3,
.single-post .blog-detail-sec .col-lg-3 {
  margin-left: auto;
}
.page-template-blog .blog-detail-sec .side-post img,
.single-post .blog-detail-sec .side-post img {
  width: 100%;
  height: auto;
  aspect-ratio: 135/73;
}
.page-template-blog .blog-detail-sec .side-post .webz-subtitle,
.single-post .blog-detail-sec .side-post .webz-subtitle {
  color: var(--blue);
  font-size: 27px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.page-template-blog .blog-detail-sec .side-post .gettitle,
.single-post .blog-detail-sec .side-post .gettitle {
  border: 1px solid #004484;
  padding: 30px 20px 10px;
  border-radius: 10px;
  margin-top: 1rem;
}
.page-template-blog .blog-detail-sec .side-post .gettitle ul li,
.single-post .blog-detail-sec .side-post .gettitle ul li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 20px;
}
.page-template-blog .blog-detail-sec .side-post .gettitle ul li a,
.single-post .blog-detail-sec .side-post .gettitle ul li a {
  color: #000;
}
.page-template-blog .blog-detail-sec .side-post .gettitle ul li a:hover,
.single-post .blog-detail-sec .side-post .gettitle ul li a:hover {
  color: #35C8AE;
}
.page-template-blog .blog-detail-sec .side-post .gettitle ul li:before,
.single-post .blog-detail-sec .side-post .gettitle ul li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #000;
  top: 8px;
  left: 0;
  border-radius: 100%;
}
.page-template-blog .blog-detail-sec .post-thumbnail,
.single-post .blog-detail-sec .post-thumbnail {
  margin-bottom: 45px;
}
.page-template-blog .blog-detail-sec .post-thumbnail img,
.single-post .blog-detail-sec .post-thumbnail img {
  width: 100%;
  aspect-ratio: 270/233;
  height: auto;
}
.page-template-blog footer.footersec .club-form,
.single-post footer.footersec .club-form {
  display: none;
}

.sec_7 .sec_7_inner .sec_7_inner_left {
  opacity: 0;
}
.sec_7 .sec_7_inner .sec_7_inner_right {
  opacity: 0;
}
.sec_7.is-inview .sec_7_inner_left {
  animation: fadeLeft 1s ease forwards;
}
.sec_7.is-inview .sec_7_inner_right {
  animation: fadeRight 1s ease forwards;
}

.content-system-wrapper .layout-style-centre {
  padding: calc(var(--section-padding) + 3%) 0 calc(var(--section-padding) - 20px) 0;
  background-color: hsl(305, 0%, 0%);
  background-image: radial-gradient(circle at 65% -10%, hsla(246.8571428571, 39%, 50%, 0.75) 0%, transparent 44.8073061324%), radial-gradient(circle at 100% 100%, rgba(78, 150, 183, 0.76) 0%, transparent 25%), radial-gradient(circle at 0% -1%, hsla(162.8571428571, 64%, 34%, 0.9) 0%, transparent 25.7069182313%), radial-gradient(circle at 25% 150%, hsl(246.6666666667, 41%, 47%) 0%, transparent 50%);
  background-blend-mode: normal, normal, normal, normal;
}
.content-system-wrapper .layout-style-centre .web-tagline {
  color: var(--white);
  border: 1px solid var(--white);
}
.content-system-wrapper .layout-style-centre .webz-heading {
  margin: 35px 0px;
}
.content-system-wrapper .layout-style-centre p {
  color: var(--white);
}
.content-system-wrapper .layout-style-centre img {
  width: 100%;
  height: auto;
}
.content-system-wrapper .layout-style-right .right-cotnt .engage-member-info {
  margin-right: 10%;
}
.content-system-wrapper .layout-style-right .right-cotnt .engage-member-info .weby-heading {
  margin-top: 25px;
}
.content-system-wrapper .layout-style-right .right-cotnt img {
  width: 100%;
  height: auto;
}
.content-system-wrapper .layout-style-left .left-cotnt .engage-member-info {
  margin-left: 10%;
}
.content-system-wrapper .layout-style-left .left-cotnt .engage-member-info .weby-heading {
  margin-top: 25px;
}
.content-system-wrapper .layout-style-left .left-cotnt img {
  width: 100%;
  height: auto;
}

.program-sec {
  padding: calc(var(--section-padding) - 60px) 0 0 0;
  position: relative;
}
@media (max-width: 1280.98px) {
  .program-sec {
    padding: calc(var(--section-padding) - 60px) 0 calc(var(--section-padding) + 60px) 0;
  }
}
@media (max-width: 575.98px) {
  .program-sec .container {
    padding: 0;
  }
}
.program-sec::after {
  content: "";
  background: url(https://wordpress.globalnorthstar.net/wp-content/uploads/2025/06/sec-after-1.webp) no-repeat;
  position: absolute;
  width: 100%;
  height: 300px;
  top: auto;
  right: 0;
  left: auto;
  z-index: -1;
  background-size: 100%;
  background-position: center;
  bottom: 0;
}
@media (max-width: 1199.98px) {
  .program-sec::after {
    height: 233px;
  }
}
.program-sec .program-item {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .program-sec .program-item {
    text-align: center;
  }
}
.program-sec .program-item h2 {
  font-size: 40px;
  font-weight: 600;
}
.program-sec .program-item p {
  margin: 35px 0;
  border-bottom: 1px solid #A2A2A2;
  padding-bottom: 35px;
}
@media (max-width: 575.98px) {
  .program-sec .program-item p {
    border-bottom: none;
  }
}
.program-sec .program-item img {
  height: auto;
}
@media (max-width: 575.98px) {
  .program-sec .program-item img {
    margin-top: 5%;
  }
}
.program-sec .program-item .btn-white {
  margin-top: 3%;
}
@media (max-width: 767.98px) {
  .program-sec .program-item .btn-white {
    margin: 3% auto 3%;
  }
}
.program-sec .program-item .col-lg-5 {
  margin-left: auto;
}
.program-sec .program-item ul {
  margin: 0;
  padding: 0;
}
.program-sec .program-item ul li {
  display: inline-block;
  color: var(--black);
  font-size: 17px;
  padding-right: 28px;
  position: relative;
  padding-bottom: 20px;
  font-weight: 500;
}
@media (max-width: 1199.98px) {
  .program-sec .program-item ul li {
    padding-bottom: 4px;
    font-size: 15px;
  }
}
.program-sec .program-item ul li:nth-child(3):before {
  display: none;
}
.program-sec .program-item ul li:before {
  content: "";
  position: absolute;
  background-color: var(--black);
  height: 15px;
  right: 10px;
  top: 3px;
  width: 2px;
}
@media (max-width: 575.98px) {
  .program-sec .program-item ul li:before {
    display: none;
  }
}
.program-sec .program-item ul li:last-child:before {
  display: none;
}
.program-sec .curve-tag {
  position: relative;
  text-align: center;
  top: 5px;
}
@media (max-width: 575.98px) {
  .program-sec .curve-tag::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ccc;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -54px;
    top: auto;
  }
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag {
    margin-top: 8%;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag {
    margin-top: 5%;
  }
}
@media only screen and (min-width: 1570.99px) and (max-width: 1749.99px) {
  .program-sec .curve-tag img {
    width: 83%;
  }
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag img {
    width: 70%;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag img {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .program-sec .curve-tag img {
    width: 100%;
    position: relative;
    top: 45px;
  }
}
.program-sec .curve-tag .program-nav {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  width: calc(100% - var(--container-padding) * 1.5);
  margin: 0 auto;
  left: 0;
  right: 0;
}
@media only screen and (min-width: 1750.99px) and (max-width: 1799.99px) {
  .program-sec .curve-tag .program-nav {
    width: calc(100% - var(--container-padding) * 0.6);
  }
}
@media only screen and (min-width: 1300.99px) and (max-width: 1749.99px) {
  .program-sec .curve-tag .program-nav {
    width: 100%;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav {
    width: 100%;
  }
}
@media only screen and (min-width: 1299.99px) and (max-width: 6000.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer {
    height: 100%;
    overflow: visible !important;
  }
}
@media (max-width: 575.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer {
    overflow: visible !important;
  }
}
@media only screen and (min-width: 1299.99px) and (max-width: 6000.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage {
    margin: 0 auto;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item {
  position: relative;
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item .item {
  padding: 10px 20px;
}
@media (max-width: 1680.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item .item {
    padding: 5px 10px;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item .item a {
  color: var(--grey);
  font-size: 18px;
}
@media (max-width: 1680.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item .item a {
    font-size: 16px;
  }
}
@media (max-width: 1680.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item .item a {
    font-size: 14px;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  background-color: #fff;
  border: 2px solid #ccc;
  right: -35px;
  border-radius: 100%;
  top: 25px;
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:before {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:before {
    display: block;
    width: 14px;
    height: 14px;
    left: 0;
    right: 0;
    margin: 20px auto 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(1) {
  top: 13rem;
  left: 6rem;
}
@media only screen and (min-width: 1799.99px) and (max-width: 1850.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(1) {
    top: 9rem;
    left: 8rem;
  }
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(1) {
    top: 9rem;
    left: 8rem;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(1) {
    top: 0;
    left: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(2) {
  top: 8rem;
  left: 1rem;
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(2) {
    top: 6rem;
    left: 3rem;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(2) {
    top: 0;
    left: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(3) {
  top: 54px;
  left: -4.1rem;
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(3) {
    top: 2rem;
    left: -2rem;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(3) {
    top: 0;
    left: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(4) {
  top: -4px;
  left: -3.1rem;
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(4) {
    top: -14px;
    left: -1.1rem;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(4) {
    top: 0;
    left: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(5) {
  top: -23px;
  left: -7.1rem;
}
@media (max-width: 1680.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(5) {
    left: -6.1rem;
  }
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(5) {
    left: -90px;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(5) {
    top: 0;
    left: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(5) > .item {
  position: relative;
  left: 135px;
  top: -25px;
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(5) > .item {
    left: 119px;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(5) > .item {
    left: 0;
    top: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(6) {
  top: 10px;
  left: 0.9rem;
}
@media (max-width: 1680.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(6) {
    top: 0;
  }
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(6) {
    top: -5px;
    left: -1.1rem;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(6) {
    top: 0;
    left: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(6) > .item {
  position: relative;
  left: 70px;
  top: -25px;
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(6) > .item {
    left: 0;
    top: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(7) {
  top: 70px;
  left: 1.9rem;
}
@media (max-width: 1680.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(7) {
    top: 4rem;
    left: 4rem;
  }
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(7) {
    top: 2rem;
    left: -1.7rem;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(7) {
    top: 0;
    left: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(7) > .item {
  position: relative;
  left: 99px;
  top: -20px;
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(7) > .item {
    top: 0;
    left: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(8) {
  top: 9rem;
  left: -19px;
}
@media (max-width: 1680.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(8) {
    top: 9rem;
    left: 1.9rem;
  }
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(8) {
    top: 5rem;
    left: -5rem;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(8) {
    top: 0;
    left: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(8) > .item {
  position: relative;
  left: 138px;
  top: -20px;
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(8) > .item {
    left: 0;
    top: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(9) {
  top: 13.2rem;
  left: -12%;
}
@media (max-width: 1680.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(9) {
    left: -7em;
  }
}
@media only screen and (min-width: 1300.99px) and (max-width: 1569.99px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(9) {
    left: -13.4rem;
    top: 8.2rem;
  }
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(9) {
    top: 0;
    left: 0;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(9) > .item {
  top: -26px;
  left: 13.9rem;
  position: relative;
}
@media (max-width: 1280.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(9) > .item {
    top: 0;
    left: 0;
  }
}
@media (max-width: 575.98px) {
  .program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .owl-item:nth-child(9) > .item {
    margin-top: 0px;
  }
}
.program-sec .curve-tag .program-nav .owl-stage-outer .owl-stage .syned:nth-child(1):before {
  background-color: #ccc;
}
.program-sec .synced::before {
  background-color: #35C9AE !important;
  border: 2px solid #35C9AE !important;
}
.program-sec .synced .item {
  background: linear-gradient(87.43deg, #3AD4B1 -10.06%, #0F779A 127.53%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}
.program-sec .synced .item a {
  color: var(--white) !important;
}

#button {
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border-radius: 100%;
  background: linear-gradient(85deg, #4AF7BA -25.45%, #086896 104.04%);
  display: flex;
  align-items: center;
  justify-content: center;
}
#button svg {
  width: 28px;
  height: 28px;
  stroke-width: 5;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=main.css.map */