/* fonts */
@font-face{
    font-family:"neco";
    src: url(../fonts/Neco-Variable.ttf);
    src: url(../fonts/Neco-Variable.ttf),format("truetype");
    font-style:normal;
    font-weight:300 800;
}

@font-face{
    font-family:"neco-italic";
    src: url(../fonts/Neco-VariableItalic.ttf);
    src: url(../fonts/Neco-VariableItalic.ttf),format("truetype");
    font-style:italic;
    font-weight:300 800;
}

@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');
/* fonts */

@media (max-width: 500px) {
    html{
        font-size:10px !important;
    }
}

html{
    font-size:16px;
    background-color:#EBE8E4;
}
/* NAVBAR SETTINGS */
nav{
    width:100%;
    padding-top: 1rem !important;
    display:flex;
    height:104px;
}
div .navbar-nav a{
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    color: #54504E;
    width:100px;
    text-align: center;
    margin-left:30px;
    margin-right: 30px;
    padding-left:0 !important;
    padding-right:0 !important;
}

.navbar-nav .nav-link{
    position:relative;
    width:auto;
}
.nav-link::after{
    content:'';
    height: 2px;
    width: 100%;
    background-color: #54504E;
    position: absolute;
    left:0;
    bottom: 0;
    opacity:0;
    pointer-events: none;
    transform-origin: bottom center;
    transform: scaleX(0);
    transition: transform 0.25s ease-out;
}
.nav-link:hover::after,
.nav-link:focus::after{
    opacity: 1;
    transform: scaleX(1);
    transform-origin: bottom center;
}

.navbar-toggler{
    /* calculate toggle button size */
    /* (80px - button height 34px) / 2 = 23px */
  margin-top: 1rem;
  /* padding: 0.5rem 0.5rem !important; */
  border:none;
  outline:none;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus{
    outline:none;
}

/* override icone size */
.navbar-toggler-icon{
    font-size: 2rem !important;
  }

@media (max-width: 500px) {
.navbar-nav > a {
    /* calculate padding top and bottom */
    /* (80px - line-height of 27px) / 2 = 26.5px */
    padding-top: 2%;
    padding-bottom: 2%;
    line-height: 1.5rem;
}
}

/* Fix for mobile navbar dropdown */
@media (max-width: 991px) {
    nav {
        height: auto;
        min-height: 80px;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 104px;
        left: 0;
        right: 0;
        background-color: #EBE8E4;
        z-index: 1000;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    div .navbar-nav a {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
}

.navbar{
    background: #EBE8E4;
    /* background: pink; */
}
/* NAVBAR SETTINGS */


/* FOOTER SETTINGS */
footer{
    margin-top: auto;
    background:#54504E;
    padding-top: 3rem;
    display:flex;
    padding-bottom: 2rem;
    flex-direction: column;
}

footer .container{
width: 100%;
}

.footer-heading{
    width: 40%;
    margin-left: auto;
    margin-right: auto;
}
.footer-heading > img{
    width:100%;
    height: 100%;
    display:block;
}
footer .footer-heading, .menu{
    margin-bottom: 30px;
}

footer .menu a {
    margin:0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color:black;
    font-size:1.1rem;
}
footer .social{
    margin-left: auto;
    margin-right: auto;
    width:20%;
    height:30%;
    display:flex;
    justify-content: center;
}

.social-p{
    height:100%;
    width: 100%;
    padding:0 5% 0 5%;
}

@media (max-width: 500px) {
    footer .social{
        width:50%;
    }
    footer .footer-heading{
        width:80%;
    }
    footer .menu a {
        font-size:1rem;
    }
}

/* @media (min-width: 5000px) {
    footer .container{
        width: 70%;
    }
} */


footer .social .social-icon img{
    width:100%;
    height: 100%;
    display:block;
}

footer .cright{
    margin-top: 30px;
}
