/**
* Template Name: BizPage
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Montserrat", sans-serif;
  --nav-bebas-font: "Bebas Neue", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #02143D; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #002CDD; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #02226C; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #0090F7; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--background-color);
  color: var(--default-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 100px;
  width: 100px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
  padding-left: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  /* --background-color: rgba(0, 0, 0, 0.9); */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
  padding: 0;
}

.mobile-nav-toggle{
  display: none;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1rem;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: var(--accent-color);
  padding: 9px 15px;
  font-size: 16px;
  font-style: italic;
  font-family: var(--nav-font);
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 0.5rem;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navmenu .btn,
.navmenu .btn:focus {
  border: 2px solid var(--accent-color);
  border-radius: 2rem;
  gap: 1rem;

  background-color: var(--background-color) !important;
}

.navmenu .btn .bi-chevron-right{
  -webkit-text-stroke: 1px var(--accent-color);
  color: var(--accent-color);
}

.navmenu .btn:hover {
  background-color: var(--accent-color) !important;
  color: var(--background-color);

  .bi-chevron-right{
    -webkit-text-stroke: 1px var(--background-color) !important;
    color: var(--background-color);
  }
}

.navmenu li:hover>a {
  color: var(--background-color);
  background-color: var(--surface-color);
}

@media(max-width:792px){
  .navmenu a{
    font-size: 12px;
    padding: 0;
  }

  .navmenu .btn{
    padding: 5px 10px;
    border-radius: 0.5rem;

    span{
      display: none;
    }
  }

  .navmenu a:focus {
    color: var(--accent-color);
    padding: 5px 10px;
    font-size: 12px;
    font-style: italic;
    font-family: var(--nav-font);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 0.5rem;
  }

}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  width: 100%;
  min-height: 110vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.about video, .about .img-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about .img-top-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100vw;
  height: 112vh;
  pointer-events: none; /* Makes sure clicks pass through the decorative image */
}

.about .img-bottom-left {
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .about {
    min-height: auto;       
    padding: 120px 0 30px 0;
  }

  .about .container {
    margin-top: 15vh !important;
    margin-bottom: 0px;
  }

  .about .img-top-right {
    height: 105%;
    object-fit: cover;
  }

  .btn-container {
    margin: 1rem 1rem 0 1rem !important;
  }

  .about h1 {
    font-size: 20px !important;
    line-height: 36px;
  }

  .about .container h2 {
    font-size: 32pt !important;
    line-height: 40px;
  }

  .btn {
    padding: 0.5rem 1rem !important;
    font-size: 10pt !important;
    font-weight: 550 !important;
  }
}

.about .container {
  position: relative;
  z-index: 3;
  margin-top: 8rem;
}

.about h2 {
  font-weight: 300;
  line-height: 120px;
  font-family: var(--nav-bebas-font);
  color: var(--background-color);
  font-size: 100pt !important;
  text-shadow: 3px 3px 10px rgba(0,0,0, 0.8);
}

.about p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}

.btn-container{
  gap: 1rem;
  margin: 1rem;
}

.btn {
  background-color: var(--surface-color);
  color: var(--background-color);
  padding: 0.5rem 2rem;

  font-family: var(--nav-font);
  font-size: 14pt;
  font-weight: 550;
}

.btn:hover, .btn:focus, .btn:active{
  background-color: var(--accent-color) !important;
  color: var(--background-color) !important;
}

.about .btn-scroll {
  transition: 0.4s;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  display: block;
  margin-top: 30px;
  animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
}

.about .btn-scroll i {
  font-size: 48px;
}

.about .btn-scroll:hover {
  color: var(--accent-color);
}

@keyframes btn-up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  clip-path: inset(0);
  background-color: var(--default-color) !important;
  font-family: var(--nav-bebas-font);
}

.call-to-action h3 {
  font-size: 72px !important;
  font-weight: 600;
  color: var(--background-color);
}

.call-to-action p {
  color: var(--background-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.timer-container{
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 32pt;
}

.timer{
  border: 2px solid var(--background-color);
  padding: 1rem;
  border-radius: 2rem;
  width: 200px;
}

.timer p{
  padding: 0;
  margin-bottom: 0;
}

.timer .value{
  font-size: 80pt;
}

@media (max-width: 900px){
  .call-to-action h3{
    font-size: 28pt !important;
  }

  .timer-container{
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 16pt;
  }

  .timer{
    border: 2px solid var(--background-color);
    padding: 0.5rem;
    border-radius: 1rem;
    width: 200px;
  }

  .timer p{
    padding: 0;
    margin-bottom: 0;
  }

  .timer .value{
    font-size: 28pt;
  }

}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.layout-left, 
.layout-right {
  width: 100%;
}

@media (min-width: 992px) {
  .layout-left {
    width: 35% !important;
    flex-shrink: 0;
  }
  
  .layout-right {
    width: 65% !important;
  }

  .featured-services {
    padding: 40px 2rem !important;
  }
}

.featured-services{
  padding: 10px 2rem;
}
  
.layout-right-surabaya .row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px !important;
}

.layout-right-surabaya .row > [class^="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  margin: 0 !important;
}

.layout-right-surabaya .row .service-item {
  height: 100%;
  margin: 0 !important;
}

.layout-right-surabaya .row > div:nth-child(1) {
  grid-column: 1;
  grid-row: span 2;
}

.featured-services h3{
  font-family: var(--nav-bebas-font);
  font-weight: 500;
  font-size: 72pt;

  color: var(--default-color);
}

@media(max-width:768px){
  .layout-right .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 20vh 20vh !important; 
    gap: 8px !important;
  }

  .layout-right .row > [class^="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    margin: 0 !important;
  }

  .featured-services h3{
    font-size: 50pt !important;
  }

  .featured-services .service-item .service-content h4{
    font-size: 28pt !important;
    margin: 5px 0 !important;
  }

  .featured-services .service-item .service-content p{
    font-size: 16pt !important;
  }

  .featured-services .service-item {
    min-height: unset !important; 
    height: 100% !important;
    padding: 15px;
    margin: 0 !important;
  }
  
  .layout-right-surabaya .row > div:nth-child(2) .service-item,
  .layout-right-surabaya .row > div:nth-child(3) .service-item{
    min-height: unset !important;
    height: 100% !important; 
    padding: 8px 12px !important;
  }

  .layout-right-surabaya .row > div:nth-child(2) .service-content h4,
  .layout-right-surabaya .row > div:nth-child(3) .service-content h4{
    font-size: 22pt !important;
    line-height: 1.1;
  }
  
  .layout-right-surabaya .row > div:nth-child(2) .service-content p,
  .layout-right-surabaya .row > div:nth-child(3) .service-content p{
    font-size: 12pt !important;
  }

  .layout-right-surabaya .row > div:nth-child(2) .readmore,
  .layout-right-surabaya .row > div:nth-child(3) .readmore{
    min-height: 32px !important;  
    padding: 4px 10px !important;
    width: 55% !important;
    margin-top: 4px !important;
  }
  
  .layout-right-surabaya .row > div:nth-child(2) .readmore span,
  .layout-right-surabaya .row > div:nth-child(3) .readmore span{
    font-size: 12px !important;
  }
  
  .layout-right-surabaya .row > div:nth-child(2) .readmore i,
  .layout-right-surabaya .row > div:nth-child(3) .readmore i{
    font-size: 12px !important;
  }

  .featured-services .service-item .service-bg {
    object-fit: contain;  
    width: 65%;           
    height: 65%;          
    left: 17.5%;          
    top: 10%;             
  }

  .featured-services .readmore {
    min-height: 50px !important;
    padding: 10px !important;
    width: 70% !important;
    border-radius: 5px !important;
  }

  .featured-services .readmore span{
    font-size: 8pt !important;
  }

  .featured-services .readmore i {
    font-size: 8pt !important;
  }
  
  .featured-services .readmore.top {
    margin-top: 10px !important;
  }
  
  .layout-right .col-6{
    padding: 0;
  }
}

.featured-services p{
  font-family: var(--nav-font);
  font-size: 13pt;
  font-weight: 500;

  color: var(--default-color);
}

.featured-services .service-item {
  min-height: 350px;
  padding: 10px;
  margin: 20px 10px;
  position: relative;
  overflow: hidden;

  border-radius: 10px;
}

.featured-services .service-item .service-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.featured-services .service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.featured-services .service-item .service-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; 
}


.featured-services .service-item .service-content h4{
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 72pt;
  color: var(--background-color);
}


.featured-services .service-item .service-content p{
  line-height: 0;
  font-family: var(--nav-bebas-font);
  font-weight: 400;
  font-size: 24pt;
  color: var(--background-color);
}

.featured-services .readmore {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  
  color: var(--background-color);
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  
  width: 50%; 
  padding: 16px;
  min-height: 130px; 
}

.featured-services .readmore.top{
  margin-top: 50px;
}

.featured-services .readmore span {
  font-family: var(--nav-font);
  font-size: 18px; 
  font-weight: 500;
  line-height: 1.3;
}


.featured-services .readmore i {
  align-self: flex-end;
  font-size: 22px; 
  line-height: 1;
}

@media (min-width: 769px) {
  .featured-services .readmore {
    width: 50%; 
  }
  .featured-services .service-item .service-content h4{
    margin: 0 !important;
  }
  .featured-services .service-item .service-content p{
    margin: 0 !important;
  }

  .featured-services .service-item .service-content {
    padding: 1rem !important;
  }
}

@media (min-width: 1200px) {
  .featured-services .readmore {
    width: 50%; 
    padding: 24px;
    min-height: 90px; 
  }

  .featured-services .readmore span {
    font-size: 24px; 
  }

  .featured-services .readmore i {
    font-size: 28px;
  }

  .first-element{
    display: flex;
    flex-direction: row !important;
    justify-content: space-between !important; 
    align-items: flex-end;
    gap:2rem;
  }

  .first-element .left{
    display: flex;
    flex-direction: column !important;
    justify-content: flex-start !important; 
  }

  .first-element .right{
    flex-grow: 1;
  }

  .first-element .right .readmore{
    width: 100% !important;
  }

  .first-element .left h4, .first-element .left p, .first-element .right .readmore{
    color: var(--default-color) !important;
  }

  .route-modal-close {
    color: var(--default-color) !important;
    background-color: var(--background-color) !important;
    -webkit-text-stroke: 2px var(--default-color) !important;
  }
}

:root:has(.modal.fade.show) .register {
  display: none !important;
}

.featured-services .readmore.bg-danger:hover{
  background-color: color-mix(in srgb, var(--bs-danger), white 30%) !important;
}
.featured-services .readmore.bg-primary:hover{
  background-color: color-mix(in srgb, var(--bs-primary), white 30%) !important;
}
.featured-services .readmore.bg-warning:hover{
  background-color: color-mix(in srgb, var(--bs-warning), white 30%) !important;
}
.featured-services .readmore.bg-success:hover{
  background-color: color-mix(in srgb, var(--bs-success), white 30%) !important;
}
.featured-services .layout-right-surabaya .readmore.bg-primary{
  color: var(--background-color) !important;
}
.featured-services .layout-right-surabaya .readmore.bg-success{
  color: var(--background-color) !important;
}

.route-modal-custom {
  background-color: var(--background-color);
  border: none;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.route-modal-close {
  color: var(--background-color);
  
  background-color: transparent;
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  
  -webkit-text-stroke: 2px var(--background-color);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
}

.route-modal-body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.route-modal-media {
  padding: 10%;
  background-color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-map-img {
  width: 100%;
  display: block;

  border-radius: 1rem;
}

.route-modal-info {
  width: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.modal-route-description.text-bold{
  font-weight: 600 !important;
}

.modal-route-title {
  font-family: var(--nav-bebas-font), sans-serif;
  font-size: 2.5rem;
  color: var(--default-color);
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 700;
}

.modal-route-description {
  font-family: var(--nav-font), sans-serif;
  font-size: 1.1rem;
  color: var(--background-color);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 992px) {
  .route-modal-body {
    flex-direction: row;
    min-height: 500px;  
  }

  .route-modal-media {
    width: 55%;
  }

  .route-modal-info {
    width: 45%;
    padding: 60px;
  }
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.venue{
  margin: 3rem;
}


.venue .content{
  text-align: right;
}

.venue img{
  width: 779px;
  height: 614px;
}

@media(max-width:1200px){
  .venue img{
    width: 100%;
    height: 100%;
  }

  .venue{
    align-items: flex-end !important;
  }
}

@media(max-width:900px){
  .venue .content h2{
    font-size: 30pt !important;
  }
}

@media(min-width:1201px){
  .venue{
    align-items: flex-start !important;
  }
}

.venue .content h2{
  font-family: var(--nav-bebas-font);
  font-weight: 500;
  font-size: 72pt;

  color: var(--default-color);
}

.venue .content p{
  font-family: var(--nav-font);
  font-size: 13pt;
  font-weight: 500;

  color: var(--default-color);
}

.btn-venue{
  border-radius: 3rem;
}


/*--------------------------------------------------------------
# Perks Section
--------------------------------------------------------------*/
.perks-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 794px; 
  padding: 80px 0;
}

.perks-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      
  object-position: center; 
  z-index: 1;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.perks-bg-image.fade-out {
  opacity: 0;
}

.perks-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.perks-section .container {
  position: relative;
  z-index: 3;
  margin: 0;
}

.perks-main-title {
  font-family: var(--nav-bebas-font);
  font-size: 72pt;
  letter-spacing: 1px;
  font-weight: 100 !important;
}

.perks-nav-list {
  max-width: 400px;
}

.perks-nav-list .perks-btn {
  width: 100%;
  padding: 15px 35px;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  
  color: #ffffff !important;
  background-color: #002878 !important; 
  
  clip-path: polygon(0% 0%, 100% 0%, 86% 100%, 0% 100%);
  transform: translateX(0);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.perks-nav-list .perks-btn.active {
  color: #001845 !important;            
  background-color: #ffffff !important;   
  font-size: 1.8rem;                      
  
  transform: translateX(50px) scale(1.1);
  padding-left: 45px;
}

.perks-nav-list .perks-btn:hover:not(.active) {
  background-color: #0036a3 !important;
}

.perks-display-photo {
  width: 100%;       
  height: auto;      
  max-height: 500px;
  object-fit: contain;
}

.min-vh-50 {
  min-height: 450px;
}

@media (max-width: 1399px) {
  .perks-section {
    min-height: 600px; 
    padding: 40px 0;
  }

  .perks-main-title { 
    font-size: 2.2rem;
    margin-bottom: 1.5rem !important;
  }

  .perks-nav-list {
    max-width: 100%; 
    gap: 0.5rem !important;
  }

  .perks-nav-list .perks-btn { 
    font-size: 0.9rem; 
    padding: 10px 18px; 
    letter-spacing: 1px;
  }

  .perks-nav-list .perks-btn.active { 
    font-size: 1rem; 
    transform: translateX(15px) scale(1.05);
    padding-left: 22px;
  }
}

@media (max-width: 768px) {
  .perks-section {
    min-height: auto; 
    padding: 0;       
  }

  .perks-bg-image {
    position: relative;      
    width: 100% !important;  
    height: auto !important; 
    object-fit: contain !important;
    display: block;
    z-index: 1;
  }

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

  .perks-section .container {
    position: absolute;      
    top: 50%;                
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 3;
    width: 90%;              
    text-align: center;      
    margin: 0;
  }

  .perks-main-title {
    font-size: 0.8rem;
    color: #ffffff;
    margin-bottom: 0.8rem !important;
  }

  .perks-nav-list {
    margin: 0 auto;
    gap: 0.25rem !important;
  }

  .perks-nav-list .perks-btn {
    font-size: 0.5rem;
    padding: 5px;
  }

  .perks-nav-list .perks-btn.active {
    font-size: 0.6rem;
    transform: none;
    padding-left: 9px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden !important;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--accent-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--default-color), transparent 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--default-color), transparent 100%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 50px 64px 64px 64px;
  display: flex;
  justify-content: space-around;  
  align-items: center;
  flex-direction: column;
  z-index: 3;
  margin-bottom: 20%;
}

.hero h2 {
  font-size: 120px;
  font-weight: 400;

  font-family: var(--nav-bebas-font);
  color: var(--background-color);
  text-align: center;
}

@media (max-width: 1024px) {
  .hero .carousel {
    min-height: 80vh !important;
  }

  .hero .carousel-container{
    margin-bottom: 25%;
  }

  .hero h2 {
    font-size: 50px;
  }

  .hero .text{
    text-align: center;
    font-size: 14pt !important;
  }
}

@media(min-width: 401px){
  .hero h2 {
    font-size: 60px;
  }

  .hero .text{
    text-align: center;
    font-size: 16pt !important;
  }

  .hero .carousel-control-prev {
    left: 15% !important;           
  }


  .hero .carousel-control-next {
    right: 15% !important;
  }
}

@media(max-width: 400px){
  .hero h2 {
    font-size: 40px;
  }

  .hero .text{
    text-align: center;
    font-size: 12pt !important;
  }
}

.hero .text{
  text-align: center;
  font-size: 24pt;
}

.hero p {
  font-family: var(--nav-font);
  color: var(--background-color);
}

.hero p .text-bold{
  font-weight: 700;
}

@media (min-width: 1024px) {
  .hero h2{
    max-width: 80%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  top: auto;
  bottom: 10%;
  height: 100px;
  width: 100px;
  opacity: 1;
  z-index: 4;
}

.hero .carousel-control-prev {
  left: 30%;           
}


.hero .carousel-control-next {
  right: 30%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none !important;
  color: #ffffff !important;
  font-size: 130px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.95)); 
  
  transition: transform 0.1s ease;
}

.hero .carousel-control-prev-icon.icon-prev {
  transform: rotate(180deg);
}

.hero .carousel-control-prev:hover .carousel-control-prev-icon.icon-prev {
  transform: rotate(180deg) scale(1.1);
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.95));
}

.hero .carousel-control-next:hover .carousel-control-next-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.95));
}

@media (max-width: 1024px) {
  
  .hero .carousel-control-next-icon,
  .hero .carousel-control-prev-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.75));
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    bottom: 0;
  }

  .hero .custom-months-indicators button {
    font-size: 20pt !important;
  }
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .custom-months-indicators {
  position: absolute;
  bottom: 17%;
  left: 50%;
  
  width: max-content !important; 
  max-width: none !important;

  margin: 0;
  
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 4;
  
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 

  --item-width: 300px;
  --gap-width: 40px;
  --step: calc(var(--item-width) + var(--gap-width));
}


.hero .custom-months-indicators button {
  text-indent: 0 !important;
  width: var(--item-width) !important;
  height: auto !important;
  flex: 0 0 var(--item-width) !important;
  margin: 0 !important;
  
  background: transparent !important;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  
  font-family: var(--nav-bebas-font), sans-serif;
  font-size: 70pt;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  color: var(--background-color, #ffffff) !important;
  opacity: 0.3;
  transition: opacity 0.4s ease, color 0.4s ease, transform 0.4s ease;
  padding: 5px 0;
}

.hero .custom-months-indicators button:not(:last-child) {
  margin-right: var(--gap-width) !important;
}

.hero .custom-months-indicators button.active {
  opacity: 1 !important;
  color: var(--background-color) !important;
  transform: scale(1.25);
}

.hero .custom-months-indicators:has(button:nth-child(1).active) {
  transform: translateX(calc(-1 * (var(--item-width) / 2)));
}

.hero .custom-months-indicators:has(button:nth-child(2).active) {
  transform: translateX(calc(-1 * (var(--item-width) / 2) - var(--step)));
}

.hero .custom-months-indicators:has(button:nth-child(3).active) {
  transform: translateX(calc(-1 * (var(--item-width) / 2) - (var(--step) * 2)));
}

.hero .custom-months-indicators:has(button:nth-child(4).active) {
  transform: translateX(calc(-1 * (var(--item-width) / 2) - (var(--step) * 3)));
}

.custom-months-indicators li {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}


@media (max-width: 1024px) {
  .hero .custom-months-indicators {
    --item-width: 170px;
    --gap-width: 25px;
    bottom: 15%;
  }
  .hero .custom-months-indicators button {
    font-size: 36px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team h2{
  color: var(--default-color);
  text-align: center;
  font-weight: 400;
  font-size: 50pt;


  font-family: var(--nav-bebas-font);
}

@media(max-width:900px){
  .team h2{
    font-size: 30pt !important;
  }
  .stats h2{
    font-size: 30pt !important;
  }
}

.gallery-smooth-row {
  opacity: 1;
  transition: opacity 0.4s ease-in-out !important;
  will-change: opacity;
}

.gallery-smooth-row.gallery-hidden {
  opacity: 0 !important;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats h2{
  color: var(--default-color);
  text-align: center;
  font-weight: 400;
  font-size: 50pt;


  font-family: var(--nav-bebas-font);
}

.image-container .image-item{
  width: 234px;
  height: 234px;
}

@media (max-width: 900px){
  .image-container .image-item{
    width: 150px;
    height: 150px;
  }
}

.image-container{
  margin-bottom: 100px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--background-color) !important;
  background-color: var(--default-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 80px;
}

.footer-top > .d-flex {
  width: 100%;
}

.footer-about{
  gap: 3rem;
  width: 35%;
}

.footer-right img{
  width: 115px;
  height: 115px;
}

.footer-about p, .footer-about a{
  font-family: var(--nav-font);
  font-size: 12pt;
  font-weight: 500;
}

.footer-right p, .footer-right a{
  text-align: right;
  font-family: var(--nav-font);

  font-weight: 600;
  color: var(--background-color) !important;
}

@media(max-width:900px){
  .footer .footer-top {
    padding: 40px;
  }

  .footer-about{
    gap: 1rem;
  }

  .footer-about img{
    width: 30% !important;
  }

  .footer-about{
    width: 45% !important;
  }

  .footer-about p{
    font-size: 8pt;
    font-weight: 300;
  }

  .footer-right p,.footer-right a{
    font-size: 8pt;

    font-weight: 400;
  }
}



@media(max-width:540px){
  .footer .footer-top {
    padding: 30px;
  }

  .footer-about{
    gap: 0.5rem;
  }

  .footer-about p{
    font-size: 5pt;
  }

  .footer-right p,.footer-right a{
    font-size: 5pt;
  }
}



.footer-divider {
  border: none;
  height: 1px;
  background-color: var(--background-color);
  margin: 0 auto 20px;
  width: 80%;
}

.footer-bottom{
  font-family: var(--nav-font);
  color: var(--background-color);

  margin: 0 auto 40px;
}

.footer-bottom-right a{
  font-family: var(--nav-font);
  color: var(--background-color);

  font-size: 8pt;
  font-weight: 400;
}

.footer-bottom-right{
  gap: 1rem;
}

.text-underline{
  text-decoration: underline;
}

.img-footer-bottom{
  width: 100%;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--default-color) transparent var(--default-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Regis Button
--------------------------------------------------------------*/
.register {
  position: fixed;
  z-index: 99999;
  transition: all 0.4s;
}

.register i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}

.register:hover {
  color: var(--default-color);
}

.register.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 375px) {
  .register {
	right: 55px;
	bottom: 120px;
	width: 80px;
	height: 80px;
  }

  .register img {
	max-height: 125px;
  }

}

@media (min-width: 376px) {
  .register {
	right: 55px;
	bottom: 120px;
	width: 80px;
	height: 80px;
  }

  .register img {
	max-height: 125px;
  }

}


@media (min-width: 712px) {
  .register {
	right: 55px;
	bottom: 120px;
	width: 80px;
	height: 80px;
  }

  .register img {
	max-height: 125px;
  }

}


@media (min-width: 768px) {
  .register {
	right: 55px;
	bottom: 120px;
	width: 80px;
	height: 80px;
  }

  .register img {
	max-height: 125px;
  }

}

@media (min-width: 820px) {
  .register {
	right: 55px;
	bottom: 120px;
	width: 80px;
	height: 80px;
  }

  .register img {
	max-height: 125px;
  }

}

@media (min-width: 912px) {
  .register {
	right: 55px;
	bottom: 120px;
	width: 80px;
	height: 80px;
  }

  .register img {
	max-height: 125px;
  }

}

@media (min-width: 992px) {
  .register {
	right: 55px;
	bottom: 120px;
	width: 80px;
	height: 80px;
  }

  .register img {
	max-height: 125px;
  }

}

@media (min-width: 1024px) and (height: 600px) {
  .register {
	right: 55px;
	bottom: 120px;
	width: 80px;
	height: 80px;
  }

  .register img {
	max-height: 125px;
  }

}

@media (min-width: 1080px) {
  .register {
	right: 35px;
	bottom: 55px;
	width: 180px;
	height: 180px;
  }

  .register img {
	max-height: 180px;
  }

}

@media (min-width: 1200px) {
  .register {
	right: 15px;
	bottom: 55px;
	width: 180px;
	height: 180px;
  }

  .register img {
	max-height: 180px;
  }

}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--default-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 85px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}