* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #404040;
  font-size: 14px;
  position: relative;
}


h2, h3, h4, h5, h6 {
    color: #80714c;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: pre-line;
    margin: 0px;
}

ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}

.sbctower {
    font-size: 8em; 
    letter-spacing: 4px; 
    color: white
}

.navbar {
    transition: top 0.3s;
}

#page-hero {
    color: #f5f5f5;
    height: 100vh;
    width: 100%;
    background-image: url('/assets/background.jpg');
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}

.py-lg {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mt-xl {
    margin-top: 160px;
}

.my-xl {
    margin-top: 160px;
    margin-bottom: 160px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.me-40 {
    margin-right: 40px;
}

.pt-240 {
    padding-top: 240px;
}

.bg-nav {
    background: linear-gradient(180deg, rgb(37 37 37) 0%, rgba(138, 138, 138, 0) 100% )
}

.letter-spacing {
    letter-spacing: 2px;
}

.bebas-neue {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hero-tab {
    height: 16px; width: 16px; background: yellow; border: 1px solid yellow; transform: rotate(45deg);
}

.page-title {
    color: #80714c;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    width: fit-content;
    padding-bottom: 16px;
    margin-bottom: 28px;
}

.page-title:before {
    content: "";
    position: absolute;
    width: 30%;
    height: 2px;
    bottom: 0;
    border-bottom: 1px solid #80714c;
}

.page-subtitle {
    color: #80714c;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 28px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.page-body {
    text-align: justify;
}

#page-about {
    height: 100vh;
    width: 100%;
    background-image: url('/assets/background-about.png');
    background-size: cover;
    background-position: top;
    background-color: #eef0eb;
}

.grid-office {
    display: grid;
    grid-template:
    'grid-title'
    'grid-caption'
    'grid-image'
}

.grid-title {
    grid-area: grid-title
}

.grid-caption {
    grid-area: grid-caption
}

.grid-image {
    grid-area: grid-image
}



#page-featured {
    width: 100%;
    overflow: hidden;
    
}

.page-featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    place-items: center;
    height: 100%;
    padding: 80px 0px;
}

#page-promo {
    height: 100vh;
    width: 100%;
    background-color: #eef0eb;
}

.promo-content {
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url('/assets/background-promo.jpg');
    background-size: cover;
    background-position: bottom;
    display: grid;
    place-items: center;
}

#page-progress {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.page-progress-grid {
    height: 100%;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gap-80 {
    gap: 80px;
}

.img-promo {
    background-image: url('/images/gallery/img-promo.png');
    background-size: cover;
    background-position: center;
}

#page-footer {
    background: #80714c;
    color: #fafafa;
    padding: 76px 0 40px;
    font-size: 14px;
}

.footer-title {
    color: #fafafa;
    margin-bottom: 2.6rem;
    margin-top: 0;
    
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    font-size: 24px;
    line-height: 28px;
    line-height: 1.17;
}

.footer-subtitle {
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    margin-bottom: 1pc;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-menu>a {
    text-decoration: none;
}

.btn-custom {
    border: 1px solid #fafafa;
    color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    place-items: center;
    border-radius: 0px;
}

.btn-custom-lg {
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px;
}

.btn-custom-light {
    border: 1px solid #80714c;
    color: #80714c;
}

.footer-content {
    margin-bottom: 75pt;
}

.bullet {
    width: 10px; 
    height: 10px; 
    transform: rotate(45deg);
    border: 2px solid #80714c;
}

.bullet-fill {
    background-color: #80714c;
}

.bullet-pulse {
    animation: pulse 1s infinite;
}

.splide__arrow {
    transform: scale(1.5);
}

@keyframes pulse {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: #80714c;
    }
    100% {
        background-color: transparent;
    }
}

 @media only screen and (max-width: 992px) { 
     
    #page-about {
        background-image: url('/assets/background-about.png');
        background-size: contain;
        background-position: bottom;
        background-color: #eef0eb;
        background-repeat: no-repeat;
    }
     
 }

@media only screen and (max-width: 576px) { 
    
    body {
        font-size: 13px;
    }
    
    
    .desktop-only {
        display: none!important;
    }
    
    .sbctower {
        font-size: 4em; 
        letter-spacing: 2px; 
        color: white
    }
    
    #page-hero {
        background-image: url('/assets/m-background.jpg');
        background-size: cover;
        background-position: bottom;
        background-attachment: unset;
    }
    
    #page-about {
        background-image: url('/assets/m-background-about.png');
        background-size: cover;
    }
    
    .grid-office {
        display: grid;
        grid-template:
        'grid-title'
        'grid-image'
        'grid-caption'
        
    }
    
    .py-lg {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    
    .mt-xl {
        margin-top: 64px;
    }
    
    .my-xl {
        margin-top: 64px;
        margin-bottom: 64px;
    }
    
    .page-title {
        font-size: 21px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .pt-sm-24 {
        padding-top: 24px!important;
    }
    
    .me-sm-24 {
        margin-right: 24px!important;
    }

    .mt-sm-none {
        margin-top: 0px!important;
    }
    
    .pt-sm-none {
        padding-top: 0px!important;
    }
    
    .gap-sm-none {
        gap: 0px!important;
    }

    
}