*{
    padding: 0;
    margin: 0;
}

header{
    background-color: white;
    color: white;
}

.header-nav-base{
    background-color: #ffbc66;
    position: relative;
    transition: .5s ease;
    height: 52px;
    margin-bottom: 10vh;
    z-index: 100;
}

.menu-icon{
    display: none;
}

.footer-static-base{
    background-color: #ffeacf;
    position: relative;
    transition: .5s ease;
    height: 250px;
    margin-top: 10vh;
}

.footer-container h1{
    color: #ffbc66;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container ul{
    list-style: none;
}

.footer-container a{
    color: #b58e53;
    line-height: 25px;
    text-decoration: none;
    font-weight: lighter;
    font-size: 17px;
    transition: .5s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container a:hover{
    color: #ffbc66;
}

.footer-left img{
    height: 12vh;
  }

  .header-nav-base a{
    color: white;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

/* Computer Version */

@media (min-width: 900px) {

    .header-image{
        display: flex;
        height: 200px;
    }
    
    .header-image img{
        height: 134px;
        margin: 0 auto;
        transform: translate(0, 25%);
    }

    .navbar ul{
        width: fit-content;
        display: flex;
        margin: 0 auto;
        list-style: none;
        padding: 1px;
    }


    .navbar ul li{
        padding: 0 10px;
        height: 50px;
        transition: 0.5s ease;
    }

    .navbar ul li a{
        color: white;
        text-decoration: none;
        line-height: 50px;
        font-size: 15px;
        transition: .5s ease;
        cursor: pointer;
    }

    .navbar ul li a:hover{
        color: #b58e53;
    }

    .sub-navbar ul li a{
        font-size: 16px;
    }

    .sub-navbar ul li a:hover{
        color: #ffbc66;
    }

    .sub-navbar{
        display: none;
        position: absolute;
        background: #b58e53;
        color: #fff;
        transition: 0.5s ease;
        margin: 0px 0 0 -10px;
        border-top: 4px solid #ffffff;
        border-radius: 5px;
    }

    #sub-navbar-2{
        margin: 0 0 0 -45px; 
    }

    .sub-navbar ul{
        display: block;
        background:  transparent;
        text-align: center;
    }

    .sub-navbar ul li{
        padding-bottom: 18px;
        height: 20px;
    }

    .sub-navbar ul :last-child{
        padding-bottom: 35px;
    }

    .navbar ul li:hover .sub-navbar{
        display: block;
    }


    .navbar ul li:hover .sub-navbar ul li:hover{
        padding-top: 5px;
    }

    .header-nav-base button{
        position: absolute;
        border: 0px ;
        background-color: #b58e53;
        color: white;
        width: 123px;
        height: 30px;
        right: 15%;
        top: 50%;
        transform: translate(0, -50%);
        border-radius: 5px;
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.685);
    }

    .footer-container{
        display: flex;
        padding: 1vw;
        gap: 8vw;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 1200px) {

    .header-nav-base button{
        right: 5%;
    }
}


/* Phone Version */

@media (max-width: 900px) {

    .header-image{
        display: flex;
        height: 40vw;
    }

    .header-image img{
        height: 20vw;
        margin: 0 auto;
        transform: translate(0, 50%);
    }
    
    .menu-icon{
        display: inline-block;
        cursor: pointer;
        transform: translate(50%, 20%);
    }

    .bar1, .bar2, .bar3 {
        width: 35px;
        height: 5px;
        background-color: #ffffff;
        margin: 6px 0;
        transition: 0.4s;
        border-radius: 5px;
      }
      
      .change .bar1 {
        transform: translate(0, 11px) rotate(-45deg);
        width: 25px;
      }
      
      .change .bar2 {opacity: 0;}
      
      .change .bar3 {
        transform: translate(0, -11px) rotate(45deg);
        width: 25px;
      }

    .navbar ul{
        display: none;
        list-style: none;
        padding: 20px 1px 1px;
        transition: .5s ease;
        background-color: #ffbc66;
    }
    
    
    .navbar ul li{
        display: block;
        padding: 0 10px 0 50px;
        transition: 0.5s ease-in-out;
    }
    
    .navbar ul li a{
        color: white;
        text-decoration: none;
        line-height: 50px;
        font-size: 18px;
        transition: .5s ease;
        cursor: pointer;
    }
    
    .sub-navbar ul li a{
        font-size: 18px;
        cursor: pointer;
    }
    
    .sub-navbar{
        display: none;
        background: #b58e53;
        color: #fff;
        transition: 0.5s ease;
       margin: 0 auto;
        width: 80%;
        border-radius: 5px;
    }
    
    .sub-navbar ul{
        padding: 10px 1px;
        display: block;
        background:  transparent;
        text-align: center;
    }

    .sub-navbar ul li{
        padding: 0 10px;
    }
    
    
    .navbar ul li:hover .sub-navbar ul li:hover{
        padding-top: 5px;
    }
    
    .header-nav-base button{
        float: right;
        border: 0px ;
        background-color: #b58e53;
        color: white;
        width: 123px;
        height: 30px;
        transform: translate(-15%, 40%);
        border-radius: 5px;
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.685);
    }

    .arrow {
        border: solid rgb(255, 255, 255);
        border-width: 0 4px 4px 0;
        display: inline-block;
        padding: 4px;
        margin: 0px 15px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transition: .5s ease;
      }

      .arrow-active{
        margin: 2px 15px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        
      }

      .footer-container{
        display: flex;
        padding: 1vw;
        gap: 5vw;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

      .footer-left{
        display: none;
      }

    .footer-container h1{
        color: #ffbc66;
        font-size: 4vw;
    }
      
      .footer-container a{
        font-size: 2.5vw;
    }
}

.copyright p{
    padding: 20px 10px;
    color: lightgray;
    text-align: center;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}