@charset "UTF-8";

/*!
* Start Bootstrap - Agency v7.0.12 (https://startbootstrap.com/theme/agency)
* Copyright 2013-2023 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-agency/blob/master/LICENSE)
*/
/*!
* Bootstrap  v5.2.3 (https://getbootstrap.com/)
* Copyright 2011-2022 The Bootstrap Authors
* Copyright 2011-2022 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc800;
    --bs-green: #198754;
    --bs-teal: #164A68;
    --bs-cyan: #4E90B6;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #ffc800;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #4E90B6;
    --bs-warning: #ffc800;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 255, 200, 0;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 200, 0;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: 'Poppins', sans-serif;
    --bs-font-monospace: 'Poppins', sans-serif;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: 'Poppins', sans-serif;
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #fff;
    --bs-link-hover-color: #fff;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff4cc;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    /* font-size: var(--bs-body-font-size); */
    /* font-weight: var(--bs-body-font-weight); */
    line-height: var(--bs-body-line-height);
    /* color: var(--bs-body-color); */
    /* text-align: var(--bs-body-text-align); */
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: 0.25;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 150;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

.sticky-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
}

@media (min-width: 576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-sm-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-md-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-lg-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 1200px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-xl-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 1400px) {
    .sticky-xxl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-xxl-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

.hstack {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
}

.vstack {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

html {
    scroll-padding-top: 4.5rem;
}

body {
    position: relative;
}


/* Navbar */
#mainNav {
    width: 100%;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-right: 16px;
    /* padding-left: 10px; */
    background-color: #062435;
}

#mainNav .navbar-toggler {
    padding: 0.75rem, 0;
    font-size: 0.75rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

#mainNav.navbar-shrink {
    padding-top: 30px;
    background-color: #062435;
}

#mainNav .navbar-brand {
    height: 28px;
    width: 217px;
    background-image: url('/assets/landing/posgym_logo.png');
    background-repeat: no-repeat;
}

#mainNav.navbar-shrink .navbar-brand {
    height: 28px;
    width: 217.5px;
    background-image: url('/assets/landing/posgym_logo.png');
    background-repeat: no-repeat;
}

#mainNav.navbar-shrink .navbar-toggler {
    padding: 0.75rem, 0;
    font-size: 0.75rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    border-color: transparent;
}

#mainNav.navbar-shrink .nav-item .nav-link {
    font-size: 15px;
    padding-right: 30px;
    font-weight: 500;
    color: #fff !important;
    letter-spacing: 0.0625em;
}

#mainNav .navbar-nav .nav-item .nav-link {
    font-size: 15px;
    padding-right: 30px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.0625em;
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #FFF;
    text-shadow: 24px 24px 24px 24px #00B4EB;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link.active,
#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
    color: #000;
    text-shadow: 0px 0px 24px 0px #00B4EB;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.navbar-login-button {
    width: 112px;
    height: 48px;
    background-color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.text-login {
    font-size: 15px;
    font-weight: 600;
    color: #062435;
}

@media (min-width: 992px) {

    #mainNav .navbar-brand {
        height: 28px;
        width: 217.1px;
    }

    #mainNav .container-fluid {
        padding-bottom: 20px;
        /* border-bottom: 2px solid #fff */
    }

    #mainNav {
        padding-top: 28px;
        padding-right: 70px;
        padding-left: 70px;
        padding-bottom: 0px !important;
        background-color: #062435;
        transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
    }

    #mainNav .navbar-brand {
        transition: font-size 0.3s ease-in-out;
    }

    #mainNav .navbar-brand img {
        transition: height 0.3s ease-in-out;
    }

    #mainNav.navbar-shrink {
        padding-top: 1rem;
        /* padding-bottom: 1rem; */
        background-color: #062435;
    }

    #mainNav.navbar-shrink .navbar-brand {
        height: 28px;
        width: 218px;
        background-image: url('/assets/landing/posgym_logo.png') !important;
    }

    #mainNav.navbar-shrink .navbar-brand svg,
    #mainNav.navbar-shrink .navbar-brand img {
        /* height: 1.5rem; */
    }

    #mainNav .navbar-nav .nav-item {
        /* margin-right: 1rem; */
    }

    #mainNav .navbar-nav .nav-item:last-child {
        /* margin-right: 0; */
    }
}

/* End Navbar */

/* Footer */
.bg-footer {
    background: var(--hitam, #062435);
    padding: 30px;
}

.footer-content .logo-img {
    height: 34px;
    width: 250px;
}

.footer-content h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer-content p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-content i {
    font-size: 15px;
}

.footer-content a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

@media (min-width: 768px) {

    .footer-content .logo-img {
        height: 40px;
        width: 300px;
    }

    .footer-content {
        padding-top: 40px;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 992px) {

    .bg-footer {
        padding: 30px;
    }

    .footer-content i {
        font-size: 20px;
    }

    .footer-content iframe {
        width: 500px;
        height: 250px;
    }

    .footer-content {
        padding-top: 80px;
        padding-left: 80px;
        padding-right: 80px;
    }

    .footer-content h3 {
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
    }

    .footer-content a {
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        text-decoration: none;
    }

    .footer-content p {
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px
    }

}

/* End Footer */
