@charset "UTF-8";
@-webkit-keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  25% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.animation-element.slide-down {
  position: relative;
  top: -100px;
  opacity: 0.3;
  transition: 1.5s ease;
}
.animation-element.slide-down.in-view {
  animation: slideDown 1s ease forwards;
  opacity: 1;
}
.animation-element.slide-left {
  position: relative;
  right: -100px;
  opacity: 0.3;
  transition: 1.5s ease;
}
.animation-element.slide-left.in-view {
  animation: slideLeft 1s ease forwards;
  opacity: 1;
}
.animation-element.slide-right {
  position: relative;
  left: -100px;
  opacity: 0.3;
  transition: 1.5s ease;
}
.animation-element.slide-right.in-view {
  animation: slideRight 1s ease forwards;
  opacity: 1;
}
.animation-element.slide-up {
  position: relative;
  bottom: -100px;
  opacity: 0.3;
  transition: 1.5s ease;
}
.animation-element.slide-up.in-view {
  animation: slideUp 1s ease forwards;
  opacity: 1;
}

@keyframes slideLeft {
  from {
    right: -100px;
  }
  to {
    right: 0;
  }
}
@keyframes slideDown {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
@keyframes slideUp {
  from {
    bottom: -100px;
  }
  to {
    bottom: 0;
  }
}
@keyframes slideRight {
  from {
    left: -100px;
  }
  to {
    left: 0;
  }
}
@font-face {
  font-family: "Chido";
  src: url("/assets/fonts/chido.otf") format("opentype");
}
.btn {
  padding: 12px 26px;
}

.btn-rounded {
  border-radius: 30px;
}

.btn-outline-custom {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  letter-spacing: 1px;
  transition: all 0.5s;
  font-size: 15px;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus,
.btn-outline-custom:active,
.btn-outline-custom.active,
.btn-outline-custom.focus,
.btn-outline-custom:active,
.btn-outline-custom:focus,
.btn-outline-custom:hover,
.open > .dropdown-toggle.btn-outline-custom {
  background-color: #fff !important;
  border-color: #fff !important;
  color: #000 !important;
}

.btn-outline-black {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.5s;
  font-size: 15px;
}

.btn-outline-black:hover,
.btn-outline-black:focus,
.btn-outline-black:active,
.btn-outline-black.active,
.btn-outline-black.focus,
.btn-outline-black:active,
.btn-outline-black:focus,
.btn-outline-black:hover,
.open > .dropdown-toggle.btn-outline-black {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

.btn-custom {
  background-color: #2F4A60;
  border: 2px solid #2F4A60;
  color: #eaf5ff !important;
  transition: all 0.5s;
  font-family: "Barlow";
  font-size: 16px;
  border-radius: 46px;
  text-transform: capitalize;
  padding: 0 30px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active,
.btn-custom.active,
.btn-custom.focus,
.btn-custom:active,
.btn-custom:focus,
.btn-custom:hover,
.open > .dropdown-toggle.btn-custom {
  background-color: #00294a;
  border-color: #2F4A60;
  color: #2F4A60;
}

@font-face {
  font-family: "Chido";
  src: url("/assets/fonts/chido.otf") format("opentype");
}
.custom-nav .navbar-nav::before {
  content: "";
  position: absolute;
  left: anchor(var(--target) left);
  right: anchor(var(--target) right);
  bottom: anchor(var(--target) bottom);
}
.custom-nav .navbar-nav:has(:nth-child(1) a:is(:hover, :focus-visible)) {
  --target: --item-1;
}
.custom-nav .navbar-nav:has(:nth-child(2) a:is(:hover, :focus-visible)) {
  --target: --item-2;
}
.custom-nav .navbar-nav li.nav-item:nth-child(1) {
  --anchor: --item-1;
}
.custom-nav .navbar-nav li.nav-item:nth-child(2) {
  --anchor: --item-2;
}

.custom-nav {
  padding: 8px 0px;
  width: 100%;
  border-radius: 0px;
  z-index: 999;
  margin-bottom: 0px;
  transition: all 0.5s ease-in-out;
  background-color: transparent;
}
.custom-nav .navbar:not(.stickyadd) .navbar-nav li a {
  color: #daeeff;
}
.custom-nav.stickyadd, .custom-nav:has(.navbar-toggler[aria-expanded=true]) {
  background-color: rgba(0, 41, 74, 0.6);
  padding: 8px 0;
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  background: rgba(17, 94, 183, 0.35) !important;
  box-shadow: 0 4px 22px 0 rgba(31, 38, 135, 0.27) !important;
  backdrop-filter: blur(14.5px) !important;
  -webkit-backdrop-filter: blur(14.5px) !important;
}
.custom-nav.stickyadd .navbar-nav li a, .custom-nav:has(.navbar-toggler[aria-expanded=true]) .navbar-nav li a {
  color: #FFFFFF;
  text-align: center;
}
.custom-nav.stickyadd .navbar-nav li a:before, .custom-nav:has(.navbar-toggler[aria-expanded=true]) .navbar-nav li a:before {
  background: #FFFFFF !important;
}
.custom-nav.stickyadd .navbar-nav li.active a, .custom-nav:has(.navbar-toggler[aria-expanded=true]) .navbar-nav li.active a {
  color: #FFFFFF;
  font-weight: bold;
}
.custom-nav .navbar-nav li a {
  color: #FFFFFF;
  background-color: transparent !important;
  padding: 15px 0;
  position: relative;
  margin: 0 7px;
  font-weight: 600;
  transition: all 0.4s ease;
  font-family: "Chido";
  text-align: center;
  font-size: 20px;
}
.custom-nav .navbar-nav li.active a {
  color: #FFFFFF;
  font-weight: bold;
}
.custom-nav #navbarCollapse {
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .custom-nav #navbarCollapse {
    margin-bottom: 10px;
  }
}

.navLink {
  display: block;
  visibility: hidden;
  position: relative;
  margin-top: -65px;
  height: 65px;
}
@media (min-width: 768px) {
  .navLink {
    margin-top: -70px;
    height: 70px;
  }
}

.custom-nav .navbar-nav li.active a:before,
.custom-nav .navbar-nav li:hover a:before,
.custom-nav .navbar-nav li:active a:before,
.custom-nav.stickyadd .navbar-nav li.active a:before,
.custom-nav.stickyadd .navbar-nav li:hover a:before,
.custom-nav.stickyadd .navbar-nav li:active a:before {
  opacity: 1;
}

.custom-nav .navbar-nav li a:before,
.custom-nav.stickyadd .navbar-nav li a:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10%;
  height: 6px;
  width: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.navbar-toggler {
  font-size: 40px;
  margin-bottom: 0px;
  color: #fff;
  border: none;
}
.navbar-toggler i {
  font-size: 40px;
  font-weight: 800;
  position: relative;
  top: 3px;
}

.navbar-toggle {
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 0px;
  color: #ffffff;
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
  background-color: transparent;
  border-color: #337ab7;
}

.logo-link {
  position: relative;
}
.logo-link .logo {
  display: inline-block;
  fill: #fff;
  transition: 0.3s ease;
  height: 44px;
  width: 100px;
}
@media (max-width: 767px) {
  .logo-link .logo {
    height: 35px;
  }
}

.stickyadd .logo-link .logo {
  fill: #daeeff;
}

.custom-nav .navbar-brand {
  position: relative;
}
.custom-nav .navbar-brand .logo {
  padding: 0;
}
.custom-nav .navbar-brand .logo img {
  height: 40px;
}
.custom-nav .navbar-brand .sprout-icon {
  transition: 1s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  position: absolute;
  bottom: 78%;
  right: 56%;
  width: 0;
  height: 0;
}
@media (max-width: 767px) {
  .custom-nav .navbar-brand .sprout-icon {
    bottom: 76%;
    right: 55%;
  }
}
.custom-nav.stickyAdd .navbar-brand .sprout-icon {
  width: 15px;
  height: 15px;
}

@font-face {
  font-family: "Chido";
  src: url("/assets/fonts/chido.otf") format("opentype");
}
#about {
  padding: 0;
  overflow: initial;
}
#about .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  #about .row {
    margin: 0;
  }
}
#about .video-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  top: 40px;
  position: -webkit-sticky;
  position: sticky;
  float: left;
  margin: 50px 0 30px;
}
@media (max-width: 767px) {
  #about .video-container {
    position: relative;
    margin: 0 0 20px;
  }
}
#about .video-container .video-iframe {
  width: 100%;
  height: auto;
  padding-right: 30px;
  aspect-ratio: 560/300;
}
@media (max-width: 767px) {
  #about .video-container .video-iframe {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#about .video-container img {
  position: relative;
}
#about .about-col {
  padding: 130px 0;
  height: 100%;
  position: relative;
  top: 0;
}
@media (max-width: 767px) {
  #about .about-col {
    padding: 70px 0;
  }
}

.about-img-container {
  width: 100%;
  height: 100%;
  max-height: 88vh;
  display: flex;
}
.about-img-container img {
  width: 100%;
  object-fit: contain;
  margin-top: 0;
}

.read-more-p {
  margin: 0;
  background: none;
  padding: 0;
  text-align: left;
  font-family: "Barlow";
  cursor: initial;
  display: block;
}
.read-more-p .read-more {
  cursor: pointer;
  color: #008bff !important;
}
.read-more-p .read-more:hover {
  color: #085fa6 !important;
}
.read-more-p > span:last-child {
  display: none;
}
.read-more-p.show-less > span:first-child {
  display: none;
}
.read-more-p.show-less > span:last-child {
  display: block;
}

.read-more-text {
  max-height: 0;
  overflow: hidden;
  display: flex;
  transition: 1s ease;
}
.read-more-text.shown {
  max-height: 1100px;
}
@media (max-width: 767px) {
  .read-more-text.shown {
    max-height: 1500px;
  }
}

.contact-caption {
  width: 460px;
  max-width: 100%;
}

.about-content .about-text {
  text-align: left;
  position: relative;
  margin-bottom: 0;
}
.about-content .about-text span {
  text-align: left;
}
.about-content .about-text a {
  color: #008bff !important;
  text-decoration: none;
}
.about-content .about-text a:hover {
  color: #085fa6 !important;
}
@media (max-width: 767px) {
  .about-content {
    margin-top: 0;
  }
}

.about-detail {
  max-width: 850px;
}
.about-detail .about-work li {
  font-size: 18px;
  font-weight: 600;
}
.about-detail .about-work li::after {
  content: "";
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background-color: #757575;
  margin: 0px 12px;
  position: relative;
  display: inline-block;
  top: -3px;
}
.about-detail .about-work li:last-child:after {
  content: "";
  display: none;
}

.skill-custom .progress {
  height: 4px;
  margin-bottom: 40px;
  margin-top: 10px;
}
.skill-custom .progress-bar {
  background: #000;
}

@font-face {
  font-family: "Chido";
  src: url("/assets/fonts/chido.otf") format("opentype");
}
@media (max-width: 991px) {
  #contact .mt-4 {
    margin-top: 0 !important;
  }
}
@media (max-width: 991px) {
  #contact .col-lg-4 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  #contact .col-lg-4 .mt-4:first-child {
    position: relative;
    right: 50px;
    top: 2px;
  }
  #contact .col-lg-4 .mt-4:last-child {
    margin-left: 20px;
  }
}
@media (max-width: 480px) {
  #contact .col-lg-4 .mt-4:first-child {
    right: 30px;
  }
  #contact .col-lg-4 .mt-4:last-child {
    margin-left: 0;
  }
}
@media (max-width: 370px) {
  #contact .col-lg-4 .mt-4:first-child {
    right: 20px;
  }
}

.form-sub-title {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 50px;
}

.contact_form .form-control {
  box-shadow: none !important;
  height: 44px;
  border-radius: 0px;
}
.contact_form .form-control:focus {
  border-color: #000;
}
.contact_form textarea.form-control {
  height: auto;
}

.error {
  margin: 8px 0px;
  display: none;
  color: red;
}

.error_msg {
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
  color: red;
  font-weight: 700;
}

.gig_loader {
  display: none;
}

#success_msg {
  text-align: center;
  margin-bottom: 20px;
}

#success_msg h3 {
  color: #0dba26;
  font-size: 22px;
}

@font-face {
  font-family: "Chido";
  src: url("/assets/fonts/chido.otf") format("opentype");
}
.bg-cta {
  position: relative;
  background-image: url(/assets/img/peaceful.jpg);
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center bottom !important;
  display: flex;
}
@media (max-width: 767px) {
  .bg-cta {
    background-attachment: initial !important;
  }
}
.bg-cta .bg-overlay:after {
  background: rgba(0, 0, 0, 0.5);
}
.bg-cta .btn {
  font-size: 20px;
  font-weight: 500;
  font-family: "Chido";
}

@font-face {
  font-family: "Chido";
  src: url("/assets/fonts/chido.otf") format("opentype");
}
@media (min-width: 800px) {
  .footer .footer-container {
    margin: 0 40px;
  }
}
@media (max-width: 1500px) {
  .footer .footer-container {
    margin-right: 70px;
  }
}
@media (max-width: 767px) {
  .footer .footer-container {
    margin: 0;
  }
}
.footer .footer-container .footer-content {
  flex-direction: column-reverse;
}
@media (min-width: 800px) {
  .footer .footer-container .footer-content {
    flex-direction: row;
  }
}

.fot_social .social-icon {
  border: 2px solid #000000;
  border-radius: 50%;
  transition: 0.3s ease;
  width: 42px;
  height: 42px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 38px;
  text-align: center;
}
.fot_social .social-icon:hover {
  color: #FFFFFF;
  background-color: #000000;
}
.fot_social .social-icon:hover svg {
  fill: #FFFFFF;
}
.fot_social .social-icon svg {
  height: 100%;
  width: 100%;
  transition: 0.3s ease;
  fill: #000000;
}
.fot_social .social-icon .tiktok-icon {
  transform: scale(0.8);
}

.copy-rights {
  line-height: 43px;
  text-align: center;
}
@media (max-width: 600px) {
  .copy-rights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.9;
  }
}
@media (min-width: 800px) {
  .copy-rights {
    text-align: left;
  }
}
.copy-rights .dean {
  transition: 0.2s ease;
  color: #2F4A60;
}
.copy-rights .dean:hover {
  color: #00294a !important;
  font-weight: 500;
}

[popovertarget] {
  cursor: pointer;
  transition: 0.2s ease;
  margin: 0;
  background: none;
  border: none;
}
[popovertarget]:hover {
  text-decoration: underline !important;
}

/*   IS-OPEN STATE   */
[popover]:popover-open {
  opacity: 1;
  pointer-events: initial;
  z-index: 999999;
  translate: initial !important;
}

/*   EXIT STATE   */
[popover] {
  border: none;
  display: block !important;
  translate: initial !important;
  transition: 0.3s ease;
  pointer-events: none;
  opacity: 0;
  position: fixed;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.36);
}
[popover] .modal-container {
  max-width: 1476px;
  width: 100%;
  max-height: 80dvh;
  padding: 30px;
}
[popover] .modal-container [data-custom-class=body] > div:last-child {
  padding-bottom: 40px;
}
[popover]:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

[popover]:-internal-popover-in-top-layer::backdrop {
  background: rgba(0, 0, 0, 0.374);
  transition: 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

/*   0. BEFORE-OPEN STATE   */
@starting-style {
  [popover]:popover-open {
    translate: 0 -22rem;
  }
}
@font-face {
  font-family: "Chido";
  src: url("/assets/fonts/chido.otf") format("opentype");
}
.home-bg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 0 !important;
  min-height: 550px;
}
.home-bg .scroll_down {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 13px;
  z-index: 8;
  bottom: 30px;
}
.home-bg .scroll_down i {
  position: relative;
  height: 50px;
  width: 30px;
  line-height: 60px;
  border-radius: 30px;
  border: 2px solid #ffffff;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.9));
  transform: translatey(0px);
  animation: float 6s linear infinite;
  animation-timing-function: linear;
}
.home-bg .scroll_down i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.2s;
}
@keyframes float {
  0% {
    filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.9));
    transform: translatey(0px);
  }
  50% {
    filter: drop-shadow(0px 18px 3px rgba(0, 0, 0, 0.7));
    transform: translatey(-20px);
  }
  100% {
    filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.9));
    transform: translatey(0px);
  }
}
.home-bg .home-content {
  margin-top: 84px;
  height: calc(100dvh - 272px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-bg .get-started {
  margin-bottom: 22px;
  font-size: 30px;
}
.home-bg .next-steps {
  margin: 0 auto 20px;
  font-size: 25px;
  font-weight: 200;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .home-bg .next-steps {
    max-width: 320px;
    font-size: 20px;
  }
}
.home-bg .next-steps b {
  font-weight: bold;
}
.home-bg .mbri-arrow-down:before {
  font-weight: bold;
}
.home-bg .mbri-arrow-down:after {
  content: "\e908";
  top: -1px;
  font-size: 13px;
  font-weight: bold;
}

.header_title {
  font-size: 8vw;
  font-weight: 400;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  container-name: mainTitle;
  line-height: 1.1;
  visibility: hidden;
}
@media (min-width: 768px) {
  .header_title {
    font-size: 45px;
  }
}
@media (min-width: 981px) {
  .header_title {
    font-size: 4em;
  }
}
@media (min-width: 1300px) {
  .header_title {
    font-size: 6em;
  }
}

.header_subtitle {
  line-height: 2;
  font-size: 18px;
  max-width: 600px;
}

#home-slides {
  position: absolute;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
  list-style-type: none;
  height: 100dvh;
  width: 100vw;
  min-height: 100%;
}
#home-slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out !important;
  background-size: cover !important;
  background-position: 50% 60% !important;
  background-attachment: fixed !important;
}
@media (max-width: 767px) {
  #home-slides .slide {
    background-attachment: initial !important;
  }
}
#home-slides .slide.active {
  opacity: 1;
}
#home-slides .slide.active h2 {
  opacity: 1;
}
#home-slides .slide h2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 8vw;
  font-weight: 400;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  container-name: mainTitle;
  line-height: 1.1;
  color: #ffffff;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  top: 84px;
  height: calc(100dvh - 302px);
}
@media (min-width: 768px) {
  #home-slides .slide h2 {
    font-size: 45px;
  }
}
@media (min-width: 981px) {
  #home-slides .slide h2 {
    font-size: 4em;
  }
}
@media (min-width: 1300px) {
  #home-slides .slide h2 {
    font-size: 6em;
  }
}
#home-slides .slide-1 {
  background-image: url("/assets/img/homeSlides/deadlift.jpg");
}
#home-slides .slide-2 {
  background-image: url("/assets/img/homeSlides/stretch.jpg");
}
#home-slides .slide-3 {
  background-image: url("/assets/img/homeSlides/program.jpg");
}
#home-slides .slide-4 {
  background-image: url("/assets/img/homeSlides/cross-leg.jpg");
}

.services-container {
  display: flex;
  flex-direction: column;
}
.services-container .services-row {
  display: flex;
  align-items: center;
  margin: 0;
}
@media (max-width: 767px) {
  .services-container .services-row {
    margin: 30px 0;
  }
}
.services-container .services-row.row-1 {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .services-container .services-row.row-1 {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .services-container .services-row.row-2 {
    margin: 0;
  }
}
.services-container .services-row.row-2 .services-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .services-container .services-row.row-2 .services-content {
    align-items: flex-start;
  }
}
.services-container .services-row.row-2 .services-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .services-container .services-row.row-2 .services-content ul {
    align-items: flex-start;
  }
}
@media (min-width: 768) {
  .services-container .services-row.row-2 .image-col .image-container {
    top: 45px;
    left: -90px;
  }
}
.services-container .services-row.row-2 .service-img {
  transform: rotate(354deg);
}
.services-container .services-row .image-col .image-container {
  position: relative;
}
.services-container .services-row .image-col .image-container .service-blob {
  width: 100%;
}
.services-container .services-row .image-col .image-container .service-img {
  position: absolute;
  top: 45px;
  left: -30px;
  width: 97%;
  transform-origin: center;
}
.services-container .services-row .image-col .image-container .center-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
}
.services-container .services-row .services-content {
  z-index: 1;
}
.services-container .services-row .services-content a:not(.button) {
  color: #008bff !important;
  text-decoration: none;
}
.services-container .services-row .services-content a:not(.button):hover {
  color: #085fa6 !important;
}
.services-container .services-row .services-content h2 {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.services-container .services-row .services-content ul {
  padding: 0 0 0 10px;
  display: flex;
  flex-direction: column;
}
.services-container .services-row .services-content ul li {
  list-style-type: none;
  font-size: 18px;
  line-height: 1.8;
}
.services-container .services-row .services-content ul li.child {
  margin-left: 35px;
}
.services-container .services-row .services-content ul li.child:before {
  content: "•";
}
.services-container .services-row .services-content ul li:before {
  content: "✓";
  font-size: 18px;
  margin-right: 3px;
}
.services-container .services-row .services-content h3 {
  text-transform: uppercase;
}
.services-container .services-row .services-content a {
  display: inline-flex;
  font-weight: 400;
  margin-top: 20px;
}

@font-face {
  font-family: "Chido";
  src: url("/assets/fonts/chido.otf") format("opentype");
}
.blog_sidebar g .sidebar_widget_title {
  font-size: 14px;
}

.side_widget_search form {
  position: relative;
  box-shadow: none;
}
.side_widget_search form input {
  box-shadow: none !important;
  height: 46px;
  border-radius: 0px;
}
.side_widget_search form input:focus {
  border-color: #000;
}

.search_icon {
  top: 0;
  font-size: 20px;
  height: 100%;
  background-color: transparent;
  border: none;
  position: absolute;
  transition: all 0.3s ease-out;
  cursor: pointer;
  right: 10px;
}
.search_icon:hover {
  color: #000;
}

.search_icon:focus,
.search_icon.focus,
.search_icon.active.focus,
.search_icon.active:focus,
.search_icon:active.focus,
.search_icon:active:focus {
  outline: 0;
}

.blog_sidebar .widget_list li a {
  color: #777;
  font-size: 14px;
  transition: all 0.5s;
  padding: 5px 0px;
  display: inline-block;
}
.blog_sidebar .widget_list li a:hover {
  color: #000;
}

.widget_recent_entries_custom ul li {
  border-bottom: 1px solid rgba(238, 238, 238, 0.7);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.widget_recent_entries_custom ul li:last-child {
  border: 0;
}
.widget_recent_entries_custom .re_post_img {
  float: left;
  width: 68px;
}
.widget_recent_entries_custom .re_post_desc {
  margin-left: 80px;
}
.widget_recent_entries_custom .re_post_desc a {
  color: #303133;
  font-size: 14px;
  display: block;
}
.widget_recent_entries_custom .re_post_desc span {
  font-size: 12px;
  color: #777;
}

.widget ul li:last-child {
  border: 0;
}

.blog_tag a {
  background: #f8f9fa;
  border-radius: 2px;
  border: 1px solid #e7e7e7;
  color: #9c9c9c;
  display: inline-block;
  transition: all 0.5s;
  font-size: 9px;
  letter-spacing: 1px;
  margin: 5px 10px 5px 0;
  padding: 7px 8px 5px 10px;
  text-transform: uppercase;
}
.blog_tag a:hover {
  border-color: #000;
  color: #000;
}

@font-face {
  font-family: "Chido";
  src: url("/assets/fonts/chido.otf") format("opentype");
}
#get-started {
  overflow: hidden;
}
#get-started a:hover {
  color: #C1E0ff;
}
#get-started .button-container {
  position: relative;
}
#get-started .get-started-content {
  display: flex;
  align-items: flex-start;
}
#get-started .get-started-content > .col-lg-5 {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 40px;
  margin-bottom: 40px;
}
#get-started .get-started-content > .col-lg-5 .section-main-title {
  margin-top: 30px;
}
@media (max-width: 767px) {
  #get-started .get-started-content > .col-lg-5 {
    padding-right: 12px;
  }
}
@media (max-width: 991px) {
  #get-started .get-started-content > .col-lg-7 {
    padding: 0 20px;
  }
}
@media (min-width: 1400px) {
  #get-started .get-started-content > .col-lg-7 {
    padding-left: 50px;
  }
}

.cgf__copy {
  display: none !important;
}

#regForm.signup-container {
  border-radius: 20px;
  backdrop-filter: blur(10px) !important;
  color: rgba(92, 92, 92, 0.561);
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.24);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 110px;
  background: rgba(136, 207, 255, 0.6588235294);
  transition: 0.5s ease;
}
#regForm.signup-container progress {
  display: block;
  width: 100%;
  height: 30px;
  padding: 15px 0 30px 0;
  margin: 0;
  background: none;
  border: 0;
  border-radius: 30px;
  text-align: left;
  position: relative;
  font-size: 15px;
}
#regForm.signup-container progress::-webkit-progress-bar {
  height: 20px;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(75, 184, 237, 0.4);
  border-radius: 20px;
  box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#regForm.signup-container progress::-webkit-progress-value {
  display: inline-block;
  float: left;
  height: 20px;
  margin: 0;
  padding-left: 20px;
  background: #4BB8ED;
  border-radius: 20px;
  box-shadow: 0px 2px 8px -1px rgba(0, 0, 0, 0.3);
  clip-path: inset(0 -120% 0 0);
  overflow: hidden;
  transition: 0.8s ease-in-out;
}
#regForm.signup-container progress.finish::-webkit-progress-value {
  background: #2bbab2;
}
#regForm.signup-container input.invalid {
  border: 1px solid rgba(255, 0, 0, 0.277);
}
#regForm.signup-container .cgf-theme-base .cgf__checkbox-input:checked ~ .cgf__checkbox-control {
  background: none;
}
#regForm.signup-container .cgf__checkbox-control {
  padding: 2px;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#regForm.signup-container .cgf__checkbox-control svg {
  height: 100%;
  width: 100%;
}
#regForm.signup-container .tab {
  display: none;
}
#regForm.signup-container button:hover {
  opacity: 0.8;
}
#regForm.signup-container #prevBtn {
  background-color: #bbbbbb;
}
#regForm.signup-container .custom-form-btns {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
#regForm.signup-container input[type=text] {
  width: 100%;
  font-size: 18px;
  color: #2F4A60 !important;
  border: none;
  outline: none !important;
  border-radius: 30px;
  backdrop-filter: blur(10px) !important;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 6px 10px 1px rgba(0, 0, 0, 0.03);
  font-weight: 500;
  padding: 9px 18px;
}
@media (max-width: 767px) {
  #regForm.signup-container input[type=text] {
    font-size: 16px;
    padding: 7px 18px;
  }
}
#regForm.signup-container input[type=text]:placeholder {
  color: #daeeff;
}
#regForm.signup-container .cgf__section .cgf__group {
  padding-left: 0;
  padding-right: 0;
}
#regForm.signup-container .cgf__section .cgf__group:not(:last-child) {
  margin-bottom: 0;
  padding-bottom: 0;
}
#regForm.signup-container .cgf__container {
  box-shadow: none;
  border: none !important;
}
#regForm.signup-container .cgf-theme-custom {
  border: none !important;
}
#regForm.signup-container .cgf__label {
  font-size: 20px;
}
#regForm.signup-container .cgf__radio-group {
  display: grid;
  grid-template-columns: auto auto;
}
@media (max-width: 470px) {
  #regForm.signup-container .cgf__radio-group {
    grid-template-columns: auto;
  }
}
#regForm.signup-container .cgf__btn {
  background-color: #2F4A60;
  border: 2px solid #2F4A60;
  color: #eaf5ff !important;
  transition: all 0.5s;
  font-family: "Barlow";
  font-size: 16px;
  border-radius: 46px;
  text-transform: capitalize;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none !important;
  padding: 9px 30px;
}
#regForm.signup-container .cgf__btn:hover {
  background-color: #00294a;
}
#regForm.signup-container .cgf__btn:disabled {
  opacity: 0.5;
}
@media (max-width: 767px) {
  #regForm.signup-container .cgf__btn {
    height: 42px;
  }
}
#regForm.signup-container .cgf__actions:has(.cgf__btn:nth-child(2)) .cgf__btn:first-child {
  background-color: transparent;
  color: #2F4A60 !important;
}
#regForm.signup-container .cgf__radio-item {
  padding-right: 10px;
  cursor: pointer;
}
#regForm.signup-container input:not([type=text]) {
  cursor: pointer;
}
#regForm.signup-container input:-webkit-autofill, #regForm.signup-container input:-webkit-autofill:hover, #regForm.signup-container input:-webkit-autofill:focus, #regForm.signup-container input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}
#regForm.signup-container .cgf__textarea {
  color: #2F4A60;
}
#regForm.signup-container .cgf-theme-base .cgf__radio:before {
  background-color: #2F4A60 !important;
}
#regForm.signup-container .cgf__description {
  font-size: 19px;
}
#regForm.signup-container .cgf__btn-link {
  color: #008bff !important;
}
#regForm.signup-container .cgf__btn-link:hover {
  color: #085fa6 !important;
}

@font-face {
  font-family: "Chido";
  src: url("/assets/fonts/chido.otf") format("opentype");
}
.spotify-container {
  position: fixed;
  bottom: 0;
  right: -450px;
  transition: 0.3s linear;
  max-width: calc(100% - 63px);
  width: 450px;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-top: 20px;
  z-index: 48;
  height: 88%;
}
@media (max-width: 767px) {
  .spotify-container {
    width: 100%;
    right: calc(-100% + 63px);
  }
}
.spotify-container:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 87px;
  top: 30px;
  left: 0px;
  background: #083048;
}
.spotify-container.is-open {
  right: -5px;
}
.spotify-container .spotify-toggle {
  padding: 8px 9px 8px 9px;
  background: #083048;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  position: absolute;
  right: calc(100% - 1px);
  top: 45px;
  cursor: pointer;
  box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.58) !important;
  clip-path: inset(-16px 1px -16px -16px);
}
@media (max-width: 767px) {
  .spotify-container .spotify-toggle {
    padding: 8px 6px 8px 9px;
  }
}
.spotify-container .spotify-toggle .corner-svg {
  width: 16px;
  height: 16px;
  right: 1px;
  position: absolute;
  fill: #083048;
}
@media (max-width: 767px) {
  .spotify-container .spotify-toggle .corner-svg {
    width: 12px;
    height: 12px;
  }
}
.spotify-container .spotify-toggle .corner-svg.top {
  bottom: 100%;
  transform: rotate(180deg);
}
.spotify-container .spotify-toggle .corner-svg.bottom {
  top: 100%;
  transform: rotate(90deg);
}
.spotify-container .spotify-toggle .spotify-icon {
  width: 40px;
  height: 40px;
  transition: 0.3s cubic-bezier(0.47, 1.64, 0.81, 0.8);
  cursor: pointer;
  fill: #7DA1BF !important;
}
@media (max-width: 767px) {
  .spotify-container .spotify-toggle .spotify-icon {
    width: 30px;
    height: 30px;
  }
}
.spotify-container .spotify-toggle:hover .spotify-icon {
  transform: scale(1.1);
}
.spotify-container iframe {
  box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.58) !important;
}

@font-face {
  font-family: "Chido";
  src: url("/assets/fonts/chido.otf") format("opentype");
}
html {
  background-color: #C1E0ff;
}
html:has([popover]:popover-open) {
  overflow-y: hidden;
}
html:has([popover]:popover-open) > body > *:not([popover]) {
  pointer-events: none !important;
}

body {
  font-family: "Barlow";
  background-color: #C1E0ff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Chido";
}

h1.fw-bold,
h2.fw-bold,
h3.fw-bold,
h4.fw-bold,
h5.fw-bold,
h6.fw-bold {
  font-weight: 600 !important;
}

.fw-bold {
  font-family: "Chido";
}

a,
a:hover,
a:focus,
button,
button:focus {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.button--primary {
  background-color: #2F4A60;
  border: 2px solid #2F4A60;
  color: #eaf5ff !important;
  transition: all 0.5s;
  font-family: "Barlow";
  font-size: 16px;
  border-radius: 46px;
  text-transform: capitalize;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none !important;
  padding: 9px 30px;
}
.button--primary:hover {
  background-color: #00294a;
}
.button--primary:disabled {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .button--primary {
    height: 42px;
  }
}
::selection {
  background: rgba(166, 175, 189, 0.3);
}

::-moz-selection {
  background: rgba(166, 175, 189, 0.3);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999999;
}

#status {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
}

.spinner {
  margin: 0 auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
  border-right: 5px solid rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid rgba(0, 0, 0, 0.2);
  border-left: 5px solid #000;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

.spinner,
.spinner:after {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
svg.hidden {
  display: none;
}

.container {
  max-width: 1476px;
  width: 100%;
  padding: 0 16px;
}
.container.large {
  max-width: 1716px;
}

.back_top {
  text-align: center;
  position: absolute;
  bottom: 15px;
  height: 60px;
  width: 60px;
  z-index: 10000;
  right: calc(100% + 20px);
  transition: all 0.7s;
  transition: 0.3s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  transform: scale(0);
}
.back_top.show {
  transform: scale(1);
}
.back_top.show .speech-bubble {
  transform: scale(1);
}
.back_top .hiro {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.361));
}
.back_top .speech-bubble {
  position: absolute;
  background: rgba(59, 208, 222, 0.7490196078);
  border-radius: 10px;
  bottom: 110%;
  right: 0;
  font-size: 12px;
  color: #FFFFFF;
  font-family: "Chido";
  font-weight: bold;
  width: 97px;
  padding: 7px 4px 3px;
  transform-origin: bottom right;
  transform: scale(0);
  transition: 0.4s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.361));
}
.back_top .speech-bubble:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 70%;
  width: 0;
  height: 0;
  border: 11px solid transparent;
  border-top-color: rgba(59, 208, 222, 0.7490196078);
  border-bottom: 0;
  border-right: 0;
  margin-left: -22.5px;
  margin-bottom: -45px;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
.section.section-theme4 {
  background-color: #eaf5ff !important;
}
.section.section-theme4 * {
  color: #2F4A60;
}
.section.section-theme3 {
  background-color: #daeeff !important;
}
.section.section-theme3 * {
  color: #00294a;
}
.section.section-theme2 {
  background-color: #C1E0ff !important;
}
.section.section-theme2 * {
  color: #00294a;
}
.section.section-theme1 {
  background: linear-gradient(135deg, #1abc9c 0%, #50b1f8 100%);
}
.section.section-theme1 * {
  color: #daeeff;
}

.bg-dark {
  background-color: #000;
}

.bg-custom {
  background-color: #000;
}

.text-dark {
  color: #000 !important;
}

.header_section {
  padding: 200px 0px 120px;
  background-image: url(/assets/img/header_img.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
}

.page_link {
  font-size: 14px;
}
.page_link a {
  color: rgba(255, 255, 255, 0.55);
}

.text-muted {
  color: #777;
}

.text-custom {
  color: #000 !important;
}

.h-100vh {
  height: 100dvh;
}

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

.bg-custom {
  background-color: #000;
}

.headerFont {
  font-family: "Chido" !important;
}

.section-main-title {
  max-width: 720px;
  font-size: 20px;
}
.section-main-title h2 {
  font-size: 40px;
  line-height: 1.1;
}
@media (min-width: 801px) {
  .section-main-title h2 {
    font-size: 70px;
  }
}

.main-title-border::after,
.main-title-border::before {
  display: inline-block;
  margin-top: -7px;
  vertical-align: middle;
  content: "";
  background-color: #d0d0d0;
  width: 30px;
  height: 1px;
}

.main-title-border i {
  font-size: 24px;
  padding: 0 5px;
  font-weight: 700;
}
.main-title-border i:before {
  position: relative;
  top: 2px;
}
.main-title-border svg {
  height: 57px;
  width: 50px;
  fill: #00294a;
  position: relative;
  bottom: 4px;
}

.bg-overlay-gredient {
  background: linear-gradient(32deg, rgba(18, 166, 181, 0.8) 0%, rgba(16, 12, 242, 0.7) 100%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.social_home {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social_home li {
  width: 45px;
  height: 45px;
  margin: 15px;
}
@media (max-width: 767px) {
  .social_home li {
    width: 30px;
    height: 30px;
    margin: 10px;
  }
}
.social_home li a {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #ffffff;
  display: inline-block;
  text-align: center;
}
.social_home li a svg {
  fill: #FFFFFF;
  width: 100%;
  height: 99%;
  font-size: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social_home li a svg.tiktok-icon {
  transform: scale(0.8);
}
.social_home li a svg, .social_home li a svg:before {
  transition: 0.3s ease;
  filter: drop-shadow(0px 0px 0px rgba(150, 150, 150, 0.561));
}
.social_home li a:hover svg, .social_home li a:hover svg:before {
  filter: drop-shadow(0px 2px 5px rgba(150, 150, 150, 0.561));
}

.ff-b {
  font-family: "Barlow";
}