/* @import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap'); */

@font-face {
    font-family: Montserrat;
    src: url(../font/Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-family: OpenSans;
    src: url(../font/OpenSans-VariableFont_wdth\,wght.ttf);
}

@font-face {
    font-family: Outfit;
    src: url(../font/Outfit-VariableFont_wght.ttf);
}

@font-face {
    font-family: Poppins;
    src: url(../font/Poppins-Black.ttf);
}

@font-face {
    font-family: InriaSans;
    src: url(../font/InriaSans-Regular.ttf);
}

:root {
    --color-1: #008073;
    --color-2: #004280;
    --color-3: #acc52f;
    --color-4: #f5f6f8;
    --color-5: #F6F6F6;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

* {
    margin: 0;
    box-sizing: border-box !important;
    scrollbar-width: none !important;
    scroll-behavior: smooth !important;
    font-family: Montserrat !important;
}

a,
button {
    transition: .15s ease-in-out;
}

body {
    background: var(--color-2);
}

.adjust {
    width: 100%;
    height: 80px;
    background: transparent;
}

.ls-3 {
    letter-spacing: 3px;
}

.anchor {
    text-decoration: none;
}

.t-white {
    color: white;
}

.t-black {
    color: black;
}

.t-gray {
    color: gray;
}

.t-justify {
    text-align: justify;
}

/* loader */
.loader-container {
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
}

.loader {
    width: 70px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: var(--color-1);
    animation: spin 1s infinite linear;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
    animation: spin 2s infinite;
}

.loader::after {
    margin: 8px;
    animation-duration: 3s;
}

@keyframes spin {
    100% {
        transform: rotate(1turn)
    }
}

/* loader end */

/* navbar */

.c-navbar {
    width: 100%;
    background: white;
    min-height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 98;
    box-shadow: 0px 1px 10px 0px rgba(141, 141, 141, 0.723);
}

.c-navbar-logo-img {
    width: 200px;
}

.c-navbar-menu {
    width: 100%;
    padding: 10px 0;
}

.top-bar {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
    border-bottom: .5px solid #c4c4c4;
}

.topbar-anchor {
    display: block;
    width: max-content;
    padding: 5px 15px;
    text-decoration: none;
    color: black;
    border: 2px solid transparent;
    font-weight: 500;

    &:hover {
        border-bottom: 2px solid var(--color-3);
    }
}

.topbar-button {
    display: block;
    width: max-content;
    padding: 8px 15px;
    background: var(--color-2);
    color: white;
    outline: none;
    border: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;

    &:hover {
        background: var(--color-3);
    }
}

.bottom-bar {
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.bottom-anchor {
    display: block;
    width: max-content;
    padding: 5px 15px;
    text-decoration: none;
    color: black;
    border: 2px solid transparent;
    font-weight: 500;

    &:hover {
        border-bottom: 2px solid var(--color-3);
    }
}

.navbar-offcanvas-open {
    display: none;
    font-size: 40px;
}

.navbar-offcanvas-close {
    color: white;
    font-size: 40px;
}

.c-navbar-offcanvas {
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    overflow-y: scroll;
    /* background: var(--color-2); */
    display: none;
    transform: translateX(100vw);
    transition: .8s ease-in-out;
    background: rgba(0, 0, 0, 0.6);
    /* background: rgba(255, 255, 255, 0.6); */
    backdrop-filter: blur(5px);
}

.c-offcanvas-top {
    width: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.c-offcanvas-anchor {
    display: block;
    width: max-content;
    padding: 10px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    border: 2px solid transparent;
    font-size: 20px;
    border: 2px solid transparent;

    &:hover {
        border-bottom: 2px solid var(--color-3);
    }
}

.offcanvas-item-container {
    width: 100%;
}

.c-navbar-active {
    border-bottom: 2px solid var(--color-3);
}


@media (max-width:992px) {
    #c-navbar-lg {
        display: none;
    }

    .navbar-offcanvas-open,
    .navbar-offcanvas-close {
        display: block;
    }
}

/* navbar end */

/* footer */
.footer {
    background: #001e3a;
}

.footer-card {
    width: 100%;
    height: 100%;
}

.footer-item {
    display: block;
    width: 100%;
    padding: 10px;
    color: white;
    font-weight: 500;
    text-decoration: none;

    &:hover {
        font-weight: 700;
    }
}

.footer-info {
    display: block;
    width: 100%;
    text-decoration: none;
    color: white;

    &:hover {
        font-weight: 700;
        letter-spacing: 3px;
    }
}

.fugipie {
    margin: 0;
    margin-top: 30px;
    padding: 10px;
    color: white;
    background: #001224;
}

.fugipie-text {
    color: white;
}

/* footer end */