@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

html, body {
    height: 100%;
    margin: 0;    
}

::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background-color: #2e2e2e;
    /* border-radius: 10px; */
}

::-webkit-scrollbar-thumb {
    background-color: #1f6e60;
    border-radius: 10px;
    border: 2px solid #232e33;
}

h1, h2, h3, h4, p {
    font-family: "Manrope", sans-serif!important;
    /* font-optical-sizing: auto; */
    font-weight: 100;
    font-style: normal;
}

.page {
    height: 100vh;
    overflow-y: auto !important;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
}

.section {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden; /* important */
}

.section-inner {
    position: relative;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5rem 2rem;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-inner::-webkit-scrollbar {
    display: none;
}

.section-content {
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

.section-overlay {
    position: relative;
}

.section-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* adjust darkness */
    z-index: 0;
}

.section-overlay .section-inner {
    position: relative;
    z-index: 1;
}

.side-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    margin-right: 5px;
}

.side-nav a {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(35, 46, 51, 0.8);
    display: block;
    border: 1px solid #fff;
}

.side-nav a:hover {
    background: rgba(31, 110, 96, 0.8);
}

.page {
    scroll-behavior: smooth;
}

.uk-overlay-secondary {
    background: rgba(34, 34, 34, .6);
}

.hero h1 {
    font-size: 9vh;
    font-weight: 300;
}

.width-50 {
    width:100%;
}

@media all and (min-width: 769px) {
    .width-50 {
        width:50%;
    }
}

.hp-card {
    border: none;
}

h1, .uk-h1 {
    font-weight: 800;
}
h3, .uk-h3 {
    font-weight: 600;
}

.uk-light {
    color: rgba(255, 255, 255, 1);
}

.hp-card .uk-overlay {
    border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
    border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.btn-default {
    background-color: #1f6e60!important;
    text-decoration: none!important;
    font-size: 1.5rem!important;
    color: #FFFFFF!important;
    padding: 1rem 3rem!important;
    border: 1px solid #FFF!important;
    transition: all .3s ease-in-out;
}

.btn-default:hover {
    background-color: #000630!important;
    text-decoration: none;
}

.footer {
    height: fit-content;
    max-height: 100vh;
    background-color: #4a86bb;
}

/* @media all and (min-width: 992px) {
    .footer {
        height: 75vh;
    }
}

@media all and (min-width: 1200px) {
    .footer {
        height: 50vh;
    }
} */

.btn-icon {
    background-color: #1f6e60!important;
    text-decoration: none!important;
    font-size: 1.5rem!important;
    color: #FFFFFF!important;
    width: 50px;
    height: 50px;
    border: 1px solid #FFF!important;
    transition: all .3s ease-in-out;
}

.btn-icon:hover {
    background-color: #000630!important;
    text-decoration: none;
}

footer a {
    font-size: 1rem!important;
    color: #FFFFFF!important;
    text-decoration: none;
    text-transform: capitalize!important;
    transition: all .3s ease-in-out;
}
footer a::before {
    border-bottom: 1px solid #FFF;
}
footer a img {
    opacity: 1;
    transition: all .3s ease-in-out;
    margin-bottom: 5px;
}
footer a:hover {
    color: #FFFFFF;
    text-decoration: none;
}
footer a:hover img {
    opacity: .8;
}

.uk-slidenav-previous, .uk-slidenav-next {
    background-color: rgba(31, 110, 96, 0.6);
    padding: 10px 15px;
    border-radius: 50%;
}

header {
    position: sticky;
    top: 0;
    z-index: 1001;
    /* background-color: rgba(0,0,0,0.7); */
}

header {
    transition: background-color .3s ease;
}

header.is-solid {
    background-color: rgba(46,46,46,0.7);
}

header.is-transparent {
    /* background-color: rgba(46,46,46,0.5); */
    background-color: transparent;
}

.top-menu, .top-menu .list-group-item {
    background: transparent;
    border: none;
}

.top-menu .list-group-item a {
    text-transform: capitalize;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 300;
}

.mobile-menu, .mobile-menu:hover {
    font-size: 1.8rem;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    background: none;
}

#mobilemenu {
    z-index: 1002;
}

.uk-offcanvas-bar {
    width: 90%!important;
}

#mobilemenu a {
    color: #FFFFFF;
}

.form-floating>textarea:focus~label::after, .form-floating>textarea:not(:placeholder-shown)~label::after {
    background-color: transparent;
}

.form-floating>label {
    padding: 1rem 1.5rem;
}

.form-floating>.form-control, .form-floating>.form-control-plaintext {
    padding: 1rem 1.5rem;
}

legend {
    background-color: #000630;
    padding: 1rem 1.5rem;
    color: #FFF;
}

.vh {
    height: 100vh;
}