/* NAV */
header{
    /* position: absolute; */
    width: 100%;
    z-index: 1000;
    background-color: #122a3d;
}
header .logo{
    max-width: 200px;
}
.nav-container{
    padding-top:1%;
    padding-bottom:1%;
}
.navigation{
    text-align: right;
}
.navigation .menu-main-menu-container, .navigation .tel-link{
    text-align: center;
    display: inline-block;
}
.navigation li{
    text-align: center;
    display: inline-block;
    margin: 0 5px;
}
.navigation li a{
    padding: 0 5px;
    color: #fff;
    font-size: 1.3em;
    font-weight: 600;
}
.tel-link {
    color: #857867;
    font-size: 1.4em;
    margin-left: 5px;
    font-weight: 800;
}
.tel-link i{
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #c58785;
    transition: .3s ease;
}
.navigation li a, .tel-link{
    /* letter-spacing:1px; */
    text-transform: uppercase;
    transition: .3s ease;
}
.navigation li a:hover, .tel-link:hover, .tel-link:hover i{
    color: #c58785;
    text-decoration: none;
}
.hamburger {
    cursor: pointer;
    z-index: 1000;
    float: right;
}
.hamburger div {
    width: 35px;
    height: 1px;
    background-color: #fcfcfc;
    margin: 10px 0;
    opacity: 1;
    transition: .3s ease-in-out;
    text-align: right;
}
/* .hamburger:hover div {
    background-color: #c58785;
} */
/* .hamburger div:nth-child(2) {
    width: 25px;
    margin-left: 10px;
}
.hamburger:hover div:nth-child(2) {
    width: 35px;
    margin-left: 0;
} */
.nav-cross div:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    transform: rotate(-45deg) translate(-10px, 10px);
    transition: .3s ease;
}
.nav-cross div:nth-child(2) {
    opacity: 0;
    transform: translate(100px, 0);
    transition: .3s ease;
}
.nav-cross div:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-5px, -5px);
    transform: rotate(45deg) translate(-5px, -5px);
    transition: .3s ease;
}
.open-nav {
    height: 100%;
}

@media (max-width:995px) {
    .nav-container {
        padding-top: 3%;
        padding-bottom: 3%;
    }
    header .logo {
        max-width: 130px;
    }
    .nav-container{
        overflow: hidden;
    }
    .hamburger-col{
        z-index: 1000;
        display: none;
    }
    .navigation-col{
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        height: 0;
        background-color: #333;
        z-index: 999;
        transition: .5s ease;
        overflow: hidden;
        display: none;
    }
    .open-nav{
        height: 100vh;
    }
    .navigation{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }
    .navigation .menu-main-menu-container, .navigation .tel-link, .navigation li{
        display: block;
        text-align: center;
    }
    .navigation .tel-link, .navigation li{
        margin: 20px auto;
    }
    .navigation a, .navigation li a{
        font-weight: 900;
        letter-spacing: 1px;
    }
    .nav-row{
        text-align: center;
    }
}
