@charset "UTF-8";
/*
    This CSS stylesheet was created by the Crattivo Department of Gocreattivo.
    It is designed to style NavbarStyle-1.html template with a customizable logo positioned at the center.
    Our team specializes in Full Stack Development, Database Management, API Integration,
    Frontend & Backend Coordination, and Code Optimization.
    Gocreattivo is dedicated to providing high-quality, efficient, and scalable design solutions.
*/

*{
    padding:0;
    margin:0;
}
.default-nav,.mobile-nav__text{
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
}

/*Base css for default-nav*/
header{
    display: flex;
    height: auto;
    width: 100%;
    top: 0;
    position: sticky;
    justify-content: center;
    transition: background 0.8s ease-in-out, opacity 0.8s ease-in-out;
    box-shadow: none;
    border-bottom: 2px solid #3c3c3cb4;
    z-index: 10;
}
header::after {
    content: "";
    position: absolute;
    z-index: 11;
    inset: 0;
    background-color: #1b4ea747;
    pointer-events: none;
}
header.scrolled{
    box-shadow: 0px 2px 15px 0 rgba(31, 31, 31, 0.5);
    opacity: 1;
    .mobile-nav-button{
        backdrop-filter: blur(4px);
    }
}
.default-nav{
    display: flex;
    margin:0;
    height: auto;
    width: 80%;
    position: relative;
    z-index: 12;
}
.default-nav-links{
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center;
}
.default-nav-links li.nav-logo{
    display: flex;
    flex-grow: 1;
    justify-content: flex-start;
}
.default-nav ul{
    list-style: none;
}
.default-nav ul li {
    display: inline-block;
    position: relative;
}
.default-nav li.nav-logo a{
    display: block;
}
.default-nav li.nav-logo img{
    height: 5vw;
    width:auto;
    display: inline;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}
.nav-logo-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    span{
        font-weight: 700;
        font-size: 1.15vw;
    }
}
.default-nav ul li a{
    display: block;
    padding: 5px 25px;
    color:white;
    text-decoration: none;
    text-align: center;
    font-size: 0.7vw;
}
.default-nav ul li ul.dropdown li{
    display: block;
    text-align: center;
}
.default-nav ul li ul.dropdown{
    width: 100%;
    height: auto;
    background-color:#222222;
    position: absolute;
    z-index:10;
    display: none;
    border: #222222;
}
.default-nav ul li a:hover{
    background: rgba(70, 70, 70, 0.5);
}
.default-nav ul li ul.dropdown a:hover {
    background: rgba(70, 70, 70, 0.5);
}
.default-nav ul li.nav-logo a:hover{
    background: none;
}
.default-nav ul li:hover ul.dropdown{
    display: block;
}

/*Base css for mobile-nav*/
.mobile-nav-button {
    display: none;
    background: linear-gradient(to top,#10204C 0%,#253766 50%,#545D77 100%);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    padding: 10px;
    cursor: pointer;
    margin-top: 1vw;
    align-items: center;
    justify-content: flex-end;
    box-shadow: 0px 0px 2vw rgba(31, 31, 31, 0.507);
    backdrop-filter: blur(4px);
    z-index: 5;
}
.mobile-nav-open .mobile-nav {
    transform: translateX(30vw);
}
.mobile-nav {
    width: 70vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    border-left: 1px solid #ffffff69;
    background: linear-gradient(to top,#10204C 0%,#253766 50%,#545D77 100%);
    transform: translateX(100vw);
    transition: transform 0.7s ease-in-out;
    overflow: hidden;
}
.mobile-nav-close {
    background: linear-gradient(to top, #545D77 0%, #7A849C 50%, #AAB2C4 100%);
    display: flex;
    align-items: center;
    border: 0;
    padding: 15px 25px 15px 15px;
    color: #dddddd;
    margin-right: auto;
    width: 100%;
    cursor: pointer;
}
.mobile-nav-close:hover {
    background: rgba(87, 87, 87, 0.5);
}
.mobile-nav-links-container {
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.15);
}
.mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px 5px 10px;
    text-decoration: none;
    color: #dddddd;
}
.mobile-nav__dropdown {
    display: flex;
    flex-direction: column;
}
.mobile-nav__submenu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
}
.mobile-nav__sublink {
    padding: 12px 40px;
    text-decoration: none;
    color: #dddddd;
    font-size: 18px;
}
.mobile-nav__sublink:hover {
    background: rgba(70, 70, 70, 0.5);
    color: white;
}
.mobile-nav__dropdown.active .mobile-nav__submenu {
    display: flex;
}
.mobile-nav__text {
    font-size: 22px;
}
.mobile-nav__link:hover {
    background: rgba(70, 70, 70, 0.5);
    text-decoration: none !important;
    color: white;
}
dl, ol, ul {
    margin-bottom: 0;
}


/* -------------------- */
/*  MOBILE BREAKPOINTS  */
/* -------------------- */
@media (max-width: 776px) and (orientation: portrait){
    header.scrolled{
        background: none;
        box-shadow: none;
    }
    header{
        top: 4vw;
        width: unset;
        right: 0.5rem;
        position: fixed;
        border-bottom: none;
        background: none;
    }
    .default-nav{
        justify-content: flex-end;
        z-index: 10;
    }
    .mobile-nav-button {
        display: flex;
        margin-right: 0;
        box-shadow: 0px 0px 2vw rgba(31, 31, 31, 0.507);
    }
    .default-nav ul li{
        display: none;
    }
    .default-nav-links li.nav-logo{
        display: none;
    }
    .default-nav li.nav-logo a{
        padding: 5px 10px;
    }
    .default-nav li.nav-logo img{
        height: 7vh;
    }
    .mobile-nav-close {
        height: 8vh;
    }
    .mobile-nav-open .mobile-nav {
        transform: translateX(40vw);
    }
    .mobile-nav {
        width: 60vw;
    }
    .mobile-nav__link {
        padding: 15px 25px 5px 15px;
    }
    .mobile-nav__text {
        font-size: 1.35em;
        letter-spacing: 0.8px;
    }
    .mobile-nav__contact-button{
        width: 70%;
        margin: 5vw auto 0 25px ;
        padding: 0;
        a.default-nav__contact-button-text{
            font-size: 1.15em;
            letter-spacing: 0;
            font-weight: bold;
        }
    }
}
@media (max-width: 776px) and (orientation: landscape){
    header.scrolled{
        background: none;
        box-shadow: none;
    }
    header{
        top: 1vw;
        width: 100%;
        left: 0.5rem;
        position: fixed;
        border-bottom: none;
        background: none;
    }
    .default-nav{
        justify-content: flex-end;
        width: 95%;
        z-index: 10;
    }
    .mobile-nav-button {
        display: flex;
        margin-right: 0;
    }
    .default-nav ul li{
        display: none;
    }
    .default-nav-links li.nav-logo{
        display: none;
    }
    .default-nav li.nav-logo a{
        padding: 5px 10px;
    }
    .default-nav li.nav-logo img{
        height: 7vh;
    }
    .mobile-nav-close {
        height: 15vh;
        padding: 15px 25px 15px 5px;
    }
    .mobile-nav-open .mobile-nav {
        transform: translateX(60vw);
    }
    .mobile-nav {
        width: 40vw;
    }
    .mobile-nav__link {
        padding: 5px 25px 5px 10px;
    }
    .mobile-nav__sublink{
        font-size: 16px;
    }
    .mobile-nav__text {
        font-size: 2vw;
        letter-spacing: 1px;
    }
    .mobile-nav__contact-button{
        width: 70%;
        margin: 5vw auto 0 25px ;
        padding: 0;
        a.default-nav__contact-button-text{
            font-size: 1.15em;
            letter-spacing: 0;
            font-weight: bold;
        }
    }
    .icon-inner, .ionicon, svg {
        height: 90%;
        width: 100%;
    }
}
/* --------------------- */
/*   TABLET BREAKPOINTS  */
/* --------------------- */
@media only screen and (min-width: 776px) and (max-width: 1200px) and (orientation: portrait){
    header.scrolled{
        background: none;
        box-shadow: none;
    }
    header{
        top: 1vw;
        width: 100%;
        right: 0;
        position: fixed;
        border-bottom: none;
        background: none;
    }
    .default-nav{
        justify-content: flex-end;
        width: 100%;
        z-index: 10;
    }
    .mobile-nav-button {
        display: flex;
        margin-right: 3vw;
    }
    .default-nav ul li{
        display: none;
    }
    .default-nav-links li.nav-logo{
        display: none;
    }
    .default-nav li.nav-logo a{
        padding: 5px 10px;
    }
    .default-nav li.nav-logo img{
        height: 7vh;
    }
    .mobile-nav-close {
        height: 8vh;
        padding: 25px 25px;
    }
    .mobile-nav-open .mobile-nav {
        transform: translateX(60vw);
    }
    .mobile-nav {
        width: 40vw;
    }
    .mobile-nav__link {
        padding: 15px 25px;
    }
    .mobile-nav__text {
        font-size: 2.75vw;
        letter-spacing: 1px;
    }
    .mobile-nav__contact-button{
        width: 70%;
        margin: 5vw auto 0 25px ;
        padding: 0;
        a.default-nav__contact-button-text{
            font-size: 1.15em;
            letter-spacing: 0;
            font-weight: bold;
        }
    }
    .icon-inner, .ionicon, svg {
        height: 90%;
        width: 100%;
    }
}
@media only screen and (min-width: 776px) and (max-width: 1200px) and (orientation: landscape){
    header.scrolled{
        background: none;
        box-shadow: none;
    }
    header{
        top: 1vw;
        width: 100%;
        right: 0;
        position: fixed;
        border-bottom: none;
        background: none;
    }
    .default-nav{
        justify-content: flex-end;
        z-index: 10;
        width: 95%;
    }
    .mobile-nav-button {
        display: flex;
        margin-right: 0;
    }
    .default-nav ul li{
        display: none;
    }
    .default-nav-links li.nav-logo{
        display: none;
    }
    .default-nav li.nav-logo a{
        padding: 5px 10px;
    }
    .default-nav li.nav-logo img{
        height: 7vh;
    }
    .mobile-nav-close {
        height: 8vh;
        padding: 25px 25px;
    }
    .mobile-nav-open .mobile-nav {
        transform: translateX(65vw);
    }
    .mobile-nav {
        width: 35vw;
    }
    .mobile-nav__link {
        padding: 15px 25px;
    }
    .mobile-nav__text {
        font-size: 2.25vw;
        letter-spacing: 1px;
    }
    .mobile-nav__contact-button{
        width: 70%;
        margin: 5vw auto 0 25px ;
        padding: 0;
        a.default-nav__contact-button-text{
            font-size: 1.15em;
            letter-spacing: 0;
            font-weight: bold;
        }
    }
    .icon-inner, .ionicon, svg {
        height: 90%;
        width: 100%;
    }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width:1681px) {
    .default-nav li.nav-logo svg{
        height: 10.5vh;
    }
    .default-nav li.nav-logo a{
        padding: 3px 15px;
    }
    .default-nav ul li a{
        padding: 15px 20px;
        font-size: 0.7vw;
        letter-spacing: 0.8px;
    }
    .default-nav{
        width: 82%;
    }
    .mobile-nav{
        display: none;
    }
    .mobile-nav-button {
        display: none;
    }
}
@media (min-width: 1201px) and (max-width: 1680px){
    .default-nav li.nav-logo svg{
        height: 10.5vh;
    }
    .default-nav li.nav-logo a{
        padding: 3px 15px;
    }
    .default-nav ul li a{
        padding: 15px 20px;
        font-size: 0.95vw;
        letter-spacing: 0.8px;
    }
    .default-nav{
        width: 90%;
    }
    .mobile-nav{
        display: none;
    }
    .mobile-nav-button {
        display: none;
    }
    .nav-logo-header{
        span{
            font-size: 1.2vw;
        }
    }
}