body{
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
header {
    width: 100%;
    height: 70px;

}

.myNav{
    width: 100%;
    padding: 25px 20px 10px 20px;
    background-color: rgba(255, 255, 255, 0.181);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    box-shadow: 1px 0px 3px 1px rgba(0, 0, 0, 0.111);
}
.myNav2{    
    width: 100%;
    padding: 5px 20px 5px 40px;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    box-shadow: 1px 0px 3px 1px rgba(0, 0, 0, 0.111);
}


.myNav a{
    text-decoration: none;
    display: inline-block;
    margin: 10px 10px 0 15px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1.5px;
}

.myNav2 a {
    text-decoration: none;
    display: inline-block;
    margin: 10px 10px 0 15px;
    color: #000000;
    text-align: center;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1.5px;
}

.myNav button.btn-sign{
    text-decoration: none;
    position: absolute;
    bottom: 30px;
    right: 130px;
    display: block;
    color: #150013;
    text-align: center;
    padding: 4px 12px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    background-color: transparent;
    border: 2px solid orangered;
    border-radius: 6px;
    transition: 0.2s;
}

.myNav2 button.btn-sign  {
    text-decoration: none;
    position: absolute;
    bottom: 5px;
    right: 130px;
    display: block;
    color: #150013;
    text-align: center;
    padding: 2px 10px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    background-color: transparent;
    border: 2px solid orangered;
    border-radius: 6px;
    transition: 0.2s;
}
.myNav button.btn-sign:hover,
.myNav2 button.btn-sign:hover {
    background-color: orangered;
    color: white;
}
.myNav button.btn-bk{
    text-decoration: none;
    position: absolute;
    bottom: 30px;
    right: 20px;
    display: block;
    color: #150013;
    text-align: center;
    padding: 4px 12px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    background-color: transparent;
    border: 2px solid orangered;
    border-radius: 4px;
    transition: 0.2s;
}
.myNav2 button.btn-bk  {
    text-decoration: none;
    position: absolute;
    bottom: 5px;
    right: 20px;
    display: block;
    color: #150013;
    text-align: center;
    padding: 2px 10px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    background-color: transparent;
    border: 2px solid orangered;
    border-radius: 20px;
    transition: 0.2s;
}
.myNav button.btn-bk:hover,
.myNav2 button.btn-bk:hover {
    background-color: orangered;
    color: white;
}
.myNav a:first-child, 
.myNav2 a:first-child {
    letter-spacing: 1px;
    /* padding: 3px 50px 3px 20px;
    margin-top: 20px; */
    font-size: 30px;
}

.myNav .lgo{
    width: 25%;
}

.myNav2 .lgo {
    width: 15%;
}
.myNav .lgo img, 
.myNav2 .lgo img{
    margin-top: -10px;
    width: 100%;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}


.myNav a:hover, 
.myNav2 a:hover{
    color: maroon
}

.myNav button.ico,
.myNav2 button.ico {
    display: none;
    border: 1px solid orangered;
    color: orangered;
    position: absolute;
    bottom: 5px;
    right: 20px;
    padding: 3px 10px;
    border-radius: 4px;
    transition: 0.2s;
}

.myNav button.ico:hover,
.myNav2 button.ico:hover {    
    background-color: rgb(253, 187, 163);
    ;
}


/* menu animation */
.menu a:not(:first-child) {
    
    text-decoration: none;
    position: relative;
}

.menu a:not(:first-child)::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0px;
    background: #fff;
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
}

.menu a:not(:first-child):hover::before,
.menu a:not(:first-child).activeNav::before {
    transform: scale3d(1, 1, 1);
}

.menu-1 a:not(:first-child)::before {
    background: orangered;
    transform-origin: 100% 50%;
}

.menu-1 a:not(:first-child):hover::before {
    transform-origin: 0 50%;
}
/* end */


.foot1 {
    background-color: #ffece6;
    padding: 10px;
    width: 100%;
    height: auto;
    color: rgb(40, 0, 0);   
    box-shadow: 1px 0px 3px 1px rgba(0, 0, 0, 0.111);
    position: fixed;
    bottom: 0;
    z-index: 9999;
}

.foot1 .footer-logo{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.foot1 .footer-logo .footlnks{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.foot1 .footer-logo .footlnks a{
    margin-left: 20px;
}

@media screen and (max-width: 600px) {
    header {
        width: 100%;
        height: 60px;

    }

    .myNav, 
    .myNav2{
        width: 100%;
        height: 60px;
        padding: 1px;
        padding-left: 0px;
    }
    .myNav button.btn-sign, 
    .myNav2 button.btn-sign {
        padding: 4px 6px;
        bottom: 5px;
        right: 70px;
        font-size: 14px;
        border: 1px solid orangered;
        border-radius: 3px;
    }
    .myNav button.btn-bk,
    .myNav2 button.btn-bk {
        display: none;
    } 
    .myNav a:not(:first-child),
    .myNav2 a:not(:first-child){
        display: none;
    }
    .myNav .lgo, .myNav2 .lgo {
        width: 45%;
    }
    .myNav .lgo img, .myNav2 .lgo img{
        /* margin-top: -20px; */
        width: 100%;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    }
    .myNav button.ico ,     
    .myNav2 button.ico{
        bottom: 5px;
        right: 20px;
        display: block;
        background-color: transparent;
        color: orangered;
    }
    
    /*Responsive menu  */
    .myNav.responsive, 
    .myNav2.responsive {
        /* position: fixed;         */
        padding: 1px;
        padding-left: 0px;
        height: 50px;
        background-color: #fee7deec;
        
    }

    .myNav.responsive button.ico, 
    .myNav2.responsive button.ico {
        position: absolute;
        right: 20px;
        bottom: 10px;
        z-index: 99;
        border: 1px solid rgb(58, 0, 64);
    }
    .myNav.responsive button.btn-sign, 
    .myNav2.responsive button.btn-sign {
        bottom: 10px;
    }
  
        
    .myNav.responsive a, 
    .myNav2.responsive a {
        float: none;
        display: block;
        text-align: left;
        padding: 10px 16px 10px 16px;
        margin: 0;
        font-size: 14px;
        color: black;
        background-color: #fee7de;
        border-bottom: 1px solid rgb(234, 197, 249);

    }
    .myNav.responsive div.menu-model, 
    .myNav2.responsive div.menu-model {
        width: 100%;
        height: 600px;
        background-color: #fee7dee3;
        border-bottom: 1px solid rgb(234, 197, 249);

    }
    .myNav.responsive a:first-child,
    .myNav2.responsive a:first-child {        
        background-color: transparent;
    }
    .foot1 .footer-logo{
        font-size: 12px;
            }
            .foot1 .footer-logo{
            flex-direction: column;
        }
        .foot1 .footer-logo .footlnks{
            flex-direction: row;
            margin-top: 10px;
        }
        .foot1 .footer-logo .footlnks a{
            margin-left: 15px;
        }
    
}
