@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

body{
    background-color: #0a263e;
    font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6{
    font-weight: 700;
}

.logo {
        width: 10rem;
    }

footer .logo{
    width: 120px;
}

footer a{
    text-decoration: none;
    color: khaki;
    font-weight: 600;
}
    
.container.hero{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0;
    margin-right: 0;
}

.bg-milton{
    background: url('../images/closets/closet-14.webp') rgba(0,0,0,0.85);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.nav-item{
    margin-right: 2rem;
}

.nav-item a{
    font-weight: 500;
}

.go-top{
    position: fixed;
    top: 90%;
    left: 96%;
    z-index: 2001;
}

.go-top a{
    color: rgb(240, 121, 9);
}

@media only screen and (max-width : 480px) {
    .go-top {
            top: 80%;
            left: 80%;
        }
}

.hide {
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

.show {
    opacity: 1;
    transition: opacity 0.25s ease-in-out;
}

.to-validate span{
    font-size: 0.7rem;
    font-weight: 500;
    color: red;
}

/* TRANSPARENT NAVBAR */
.navbar-transparent{
    /* background-color: transparent !important; */
    position: fixed;
    width: 100%;
    z-index: 3500;
    padding: 0;
}

.unpaint {
    background-color: rgba(1, 3, 30, 0);
    box-shadow: 0px 7px 8px 0px #00000000;
    height: auto;
    transition: all 0.25s ease-in-out;
}

.paint {
    background-color: rgba(1, 3, 30, 1);
    box-shadow: 0px 7px 8px 0px #00000070;
    height: 6rem;
    transition: all 0.25s ease-in-out;
}


@media only screen and (max-width : 480px) {
    .navbar-collapse {
        background-color: rgba(1, 3, 30, 1) !important;
        padding: 0 0.8rem;
    }
}