@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;
}
header.scrolled, .default-nav ul li ul.dropdown,.mobile-nav{
    background: #000000;
}
.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: fixed;
    transition: background 0.8s ease-in-out, opacity 0.8s ease-in-out;
    box-shadow: none;
    z-index: 10;
}
header.scrolled{
    box-shadow: 5px 5px 15px 0 rgba(31, 31, 31, 0.07);
    opacity: 1;
    .mobile-nav-button{
        backdrop-filter: blur(4px);
    }
}
.default-nav{
    display: flex;
    margin:0;
    height: auto;
    width: 100%;
}
.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;
    margin-left: 15vw;
}
.default-nav ul{
    list-style: none;
    margin-right: 20vw;
}
.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: 0;
    transition: opacity 0.8s ease-in-out;
}
.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: #1b303091;
    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;
    background: #000000;
    transform: translateX(100vw);
    transition: transform 0.7s ease-in-out;
    overflow: hidden;
}
.mobile-nav-close {
    background: #1f1f1f;
    display: flex;
    align-items: center;
    border: 0;
    padding: 15px 25px;
    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;
    text-decoration: none;
    color: #dddddd;
}
.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;
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width:1681px) {
    .default-nav-links li.nav-logo{
        margin-left: 10%;
        margin-right: 2vw;
    }
    .default-nav ul{
        margin-right: 15%;
    }
    .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;
    }
    .mobile-nav{
        display: none;
    }
    .mobile-nav-button {
        display: none;
    }
}
@media (min-width: 1201px) and (max-width: 1680px){
    .default-nav-links li.nav-logo{
        margin-left: 10%;
        margin-right: 2vw;
    }
    .default-nav ul{
        margin-right: 7%;
    }
    .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.85vw;
        letter-spacing: 0.8px;
    }
    .mobile-nav{
        display: none;
    }
    .mobile-nav-button {
        display: none;
    }
}
/* --------------------- */
/*   TABLET BREAKPOINTS  */
/* --------------------- */
@media only screen and (min-width: 767px) and (max-width: 1200px) and (orientation: portrait){
    header.scrolled{
        background: none;
        box-shadow: none;
    }
    header{
        top: 1vw;
        width: fit-content;
        right: 0;
    }
    .default-nav{
        justify-content: flex-end;
    }
    .mobile-nav-button {
        display: flex;
        margin-right: 3vw;
    }
    .default-nav ul li{
        display: none;
    }
    .default-nav-links li.nav-logo{
        margin-left: 20%;
        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: 767px) and (max-width: 1200px) and (orientation: landscape){
    header.scrolled{
        background: none;
        box-shadow: none;
    }
    header{
        top: 1vw;
        width: fit-content;
        right: 0;
    }
    .default-nav{
        justify-content: flex-end;
    }
    .mobile-nav-button {
        display: flex;
        margin-right: 3vw;
    }
    .default-nav ul li{
        display: none;
    }
    .default-nav-links li.nav-logo{
        margin-left: 20%;
        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%;
    }
}
/* -------------------- */
/*  MOBILE BREAKPOINTS  */
/* -------------------- */
@media (max-width: 767px) and (orientation: portrait){
    header.scrolled{
        background: none;
        box-shadow: none;
    }
    header{
        top: 4vw;
        width: fit-content;
        right: 0;
    }
    .default-nav{
        justify-content: flex-end;
    }
    .mobile-nav-button {
        display: flex;
        margin-right: 5vw;
        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;
    }
    .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: 767px) and (orientation: landscape){
    header.scrolled{
        background: none;
        box-shadow: none;
    }
    header{
        top: 1vw;
        width: fit-content;
        right: 0;
    }
    .default-nav{
        justify-content: flex-end;
    }
    .mobile-nav-button {
        display: flex;
        margin-right: 3vw;
    }
    .default-nav ul li{
        display: none;
    }
    .default-nav-links li.nav-logo{
        margin-left: 20%;
    }
    .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: 6px 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%;
    }
}
