@font-face {
    font-family: 'Butler Stencil';
    src: url('Butler_Regular_Stencil.otf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Lyon Display Trial';
    src: url('LyonDisplay-Regular-Trial.otf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Whitney Book';
    src: url('whitneybook.otf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Atyp Display Medium';
    src: url('AtypText-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}


  
 
  *{
        margin: 0;
        padding: 0;
        text-decoration: none;
        list-style: none;
        box-sizing: border-box;
        /* overflow: hidden; */
    }

    body{
        position: relative;
        min-height: 100vh;
        width: 100%;
    }
    nav{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(rgba(14,29,51,0.8));
        z-index: 998;
    }
    .navigation{
        display: flex;
    }
    .nav-btn{
        position: fixed;
        top: 24px;
        left: 96%;
        height: 45px;
        width: 45px;
        text-align: center;
        cursor: pointer;
        transition: all .9s ease;
        z-index: 9999;
    }
    .nav-btn.size{
        top: 10px;
    }
    .nav-btn.click{
        /* color: #0F0F17; */
        z-index: 99999;
    }
    .nav-btn span{
        color:#0F0F17;
        font-size: 28px;
        line-height: 45px;
        z-index: 999;
    }
    .nav-btn.click span::before{
        content: '\F62A';
        z-index: 999;
    }
    .sidebar{
        position: fixed;
        display: flex;
        width: 100%;
        height: 100%;
        /* left: 1%;*/
        top: -1200px;
        background: transparent;
        transition: top 1s ease;
        overflow: hidden;
        z-index: 999;
    }
    .sidebar.show{
        top: 10px;
    }
    .sidebar .menu {
        padding: 30px;
        margin-top: 40px;
        background: #F7F5F1;
        width: 100%;
        height: 85%;
        transition: top 3s;
    }
    .sidebar .contact{
        padding: 30px;
        margin-top: 40px;
        background: #F7F5F1;
        width: 100%;
        height: 85%;
        transition: top 5s;
    }
    .sidebar .contact li{
        margin-top: 20px;
    }
    .sidebar .contact .li-1 a{
        text-transform: uppercase;
        font-family: 'Whitney', sans-serif;
        letter-spacing: .1em;
    }
    .sidebar .contact .li-2{
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .sidebar .contact .li-2 a{
        line-height: 27px;
        font-family: 'Whitney Book', sans-serif;
        letter-spacing: .1em;
    }
    .sidebar .contact .li-3{
        margin-bottom: 20px;
    }
    .sidebar .contact .li-3 a{
        line-height: 27px;
        font-family: 'Whitney Book', sans-serif;
        letter-spacing: .1em;
    }
    .sidebar .contact .li-4{
        width: 65%;
        margin-top: 20px;
        border: .1em solid #000000;
        background: #F1ECE5;
        transition: all .5s;
    }
    .sidebar .contact .li-4 a{
        text-align: center;
        line-height: 27px;
        font-family: 'Whitney Book', sans-serif;
        letter-spacing: .1em;
    }
    .sidebar .contact .li-4:hover{
        background: #0F0F17;
    }
    .sidebar .contact .li-4:hover a{
        color: #F7F5F1;
    }
    .sidebar ul li{
        padding: 5px;
        line-height: 50px;
    }
    .sidebar .contact li a{
        position: relative;
        color: #0F0F17;
        text-decoration: none;
        font-size: 21px;
        font-family: 'Whitney Book', sans-serif;
        text-align: start;
        display: block;
        letter-spacing: .1em;
        width: 100%;
        border-right: 5px solid transparent;
        transition: all .5s;
    }
    .sidebar .menu li{
        width: 100%;
        margin-top: 10px;
    }
    .sidebar .menu li a{
        position: relative;
        color: #0F0F17;
        text-decoration: none;
        font-size: 40px;
        font-family: "Lyon Display Trial", sans-serif;
        text-align: start;
        display: block;
        width: 100%;
        line-height: 70px;
        border-right: 5px solid transparent;
        transition: all .5s;
    }
    .sidebar .menu li a:hover{
        color: #acaaaa;
        /* background: #fff; */
        border-right-color: #0F0F17;
        transition: all .5s;
    }
    .sidebar .menu li.active a{
        color: #3f3f3f;
        /* background: #fff; */
        border-right-color: #0F0F17;
        transition: all .5s;
    }
    /* Animasi Navbar */
    .sidebar .contact li.animate{
        animation: slideInUp;
        animation-duration: 4s;
    }
    .sidebar .menu li a.animate{
        animation: slideInUp;
        animation-duration: 3s;
    }
    .sidebar .menu.transisi{
        animation: slideInDown;
        animation-duration: 1s;
    }
    .sidebar .contact.transisi{
        animation: slideInDown;
        animation-duration: 3s;
    }
    .header-content{
        position: fixed;
        top: 0;
        width: 100%;
        background: #EEE9E2;
        z-index: 9998;
        transition: all .5s;
    }
    .header-content.nav{
        position: fixed;
        /* left: 86%; */
        top: 0px;
        max-width: 100%;
        background: #EEE9E2;
        z-index: 9999;
        transition: all .5s;
        text-align: end;
    }
    .content{
        display: flex;
        padding: 30px 10px;
        z-index: 9999;
        overflow: hidden;
        transition: all 1s;
    }
    .content.size {
        background: #EEE9E2;
        padding: 10px;
        transition: all 1s;
    }
    .content .container-content{
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 0px 50px 0px 0px;
        text-align: end;
    }
    .content .container-content .logo{
        position: relative;
        top: 100px;
        /* left: 1%; */
        width: 10%;
        opacity: 1;
        transition: all 1s;
    }
    .content .container-content a img{
        position: relative;
        width: 100%;
        opacity: 1;
        transition: all 1s;
    }
    .content .container-content .logo.display{
        color: #F7F5F1;
        opacity: 1;
        top: -12px;
        transition: all 1s;
    }
    .content .container-content .logo.nav{
        left: 90%;
        opacity: 1;
        top: -12px;
        transition: all 1s;
    } 
    .content .container-content button{
        margin-left: 35px;
        width: 120px;
        border: none;
        background: transparent;
        margin-top: 0px;
        font-size: 18px;
        font-family: "Whitney Book", sans-serif;
    }
    .content .container-content button.nav{
        display: none;
    }
    .content .container-content button.display{
        color: #0F0F17;
    }
    .container-content button i{
        margin-left: 5px;
    }
    .content .container-content ul{
        width: 9%;
        background: #EEE9E2;
    }
    .content .container-content ul{
        width: 9%;
        background: #EEE9E2;
    }
    .title-enquire{
        font-family: 'Whitney Book', sans-serif;
    }
    .enquire{
        position: fixed;
        left: 89%;
        z-index: 5;
    }
    .button{
        top: 850px;
        text-align: end;
        /* z-index: 998; */
    }
    .labelCheck h3{
        font-family: 'Whitney Book', sans-serif;
    }
    .button-input input{
        cursor: pointer;
        position: relative;
        background: #F7F5F1;
        border: .1em solid#000000;
        padding: 3px;
        width: 60px;
        height: 20px;
        font-size: 9px;
        transition: all .6s;
        font-family: 'Whitney Book',sans-serif;
        text-transform: uppercase;
        letter-spacing: .1em;
        text-align: center;
    }
    .button ul{
        background: #EEE9E2;
        width: 100%;
        height: 330px;
    }
    .input-enquire input{
        height: 30px;
    }
    .input-enquire input::placeholder{
        font-size: 13px;
        font-family: 'Whitney Book', sans-serif;
    }
    .input-enquire input[type='text']{
        font-size: 9px;
    }
    .input-enquire input[type='email']{
        font-size: 9px;
    }
    .input-enquire input[type='tel']{
        font-size: 9px;
    }
    .button button{
        background: #F7F5F1;
        border: .1em solid#000000;
        padding: 7px;
        width: 170px;
        height: 50px;
        font-size: 14px;
        transition: all .7s;
        font-family: 'Whitney Book',sans-serif;
        text-transform: uppercase;
        z-index: 998;
    }
    .button button:hover{
        color: #F7F5F1;
        background: #0F0F17;
        transition: all .7s;
    }
    /* HEADER */
    
    /* BODY */
    .body-content{
        background: #EEE9E2;
        margin-top: 80px;
    }
    .container-contact{
        padding: 50px;
    }
    .title-contact h3{
        font-family: 'Whitney Medium', sans-serif;
        font-size: 25px;
        letter-spacing: .1em;
    }
    .title-contact h1{
        font-family: 'Lyon Display Trial', sans-serif;
        font-size: 70px;
        font-weight: 400;
        letter-spacing: .1em;
        margin-top: 20px;
    }
    .body-contact h3{
        font-family: 'Whitney Medium', sans-serif;
        font-size: 25px;
        letter-spacing: .1em;
        margin-top: 30px;
    }
    .body-contact p{
        font-family: 'Whitney Book', sans-serif;
        font-size: 22px;
        letter-spacing: .1em;
        line-height: 20px;
    }
    .contact-phone{
        font-family: 'Whitney Book', sans-serif;
        font-size: 22px;
        letter-spacing: .1em;
        margin-top: 40px;
        gap: 225px;
    }
    /* Google Maps */
    .gmap_canvas {
        overflow: hidden;
        background: none!important;
        height: 300px;
        width: 700px;
    }
    .mapouter{
        position: relative;
        text-align: end;
        height: 300px;
        width: 700px;
    }
    .input-control{
        padding: 10px 16px;
        width: 100%;
        font-size: 15px;
        border: 1px solid #ddd;
    }
    .input-control:focus{
        outline: none;
    }
    .button{
        width: 100%;
        text-align: end;
        margin-top: 20px;
    }
    .btn{
        width: 100px;
        height: 40px;
        scale: 1;
    }
    .button-footer button{
        padding: 10px;
        margin-top: 30px;
        border: .1em solid#000000;
        background: #F7F5F1;
        width: 265px;
        height: 55px;
        font-size: 15px;
        transition: all .7s;
        font-family: 'Whitney Book',sans-serif;
        margin-bottom: 40px;
        letter-spacing: .1em;
        text-transform: uppercase;
    }
    .button-footer button:hover{
        color: #EEE9E2;
        background: #0F0F17;
        transition: all .7s;
    }
    .button-footer button a{
        text-decoration: none;
        color: #0F0F17;
    }
    .button-footer button:hover a{
        color: #EEE9E2;
        transition: all .7s;
    }
    .schedule{
        position: relative;
        left: 7%;
        padding: 50px;
    }
    .title-schedule h1{
        font-family: 'Lyon Display Trial', sans-serif;
        font-size: 70px;
        font-weight: 400;
        letter-spacing: .1em;
        margin-top: 55px;
    }
    .body-schedule{
        margin-top: 40px;
    }
    .body-schedule p{
        font-family: 'Whitney Book', sans-serif;
        font-size: 22px;
        letter-spacing: .1em;
        line-height: 20px;
    }
    .schedule form{
        margin-top: 40px;
    }
    .schedule form .input-header input{
        border: none;
        background: #F7F5F1;
    }
    .schedule form .input-header input::placeholder{
        color: #0F0F17;
        font-family: 'Whitney Book', sans-serif;
        letter-spacing: .1em;
    }
    .schedule form .input-body input{
        border: none;
        background: #F7F5F1;
    }
    .schedule form .input-body input::placeholder{
        color: #0F0F17;
        font-family: 'Whitney Book', sans-serif;
        letter-spacing: .1em;
    }
    .date{
        color: #0F0F17;
    }
    .schedule form select{
        border: none;
        background: #F7F5F1;
        font-family: 'Whitney Book', sans-serif;
        letter-spacing: .1em;
        color: #0F0F17;
    }
    .schedule form  select option{
        color: #0F0F17;
    }
    .schedule textarea{
        border: none;
        background: #F7F5F1;
        font-family: 'Whitney Book', sans-serif;
        letter-spacing: .1em;
    }
    .schedule textarea::placeholder{
        color: #0F0F17;
    }
    .schedule textarea {
        width: 100%;
        height: 150px;
        padding: 12px 20px;
        box-sizing: border-box;
        border: none;
        background-color: #F7F5F1;
        font-size: 16px;
        resize: none;
    }
    .input-header{
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .input-body{
        margin-top: 5px;
        gap: 5px;
    }
    .input-footer{
        display: flex;
        flex-direction: column;
        margin-top: 5px;
        gap: 5px;
    }
    .button-schedule{
        margin-top: 20px;
    }
    .button-schedule input{
        cursor: pointer;
        position: relative;
        background: #f0f0f0;
        border: .1em solid#000000;
        padding: 7px;
        width: 120px;
        height: 40px;
        font-size: 14px;
        transition: all .6s;
        font-family: 'Whitney Book',sans-serif;
        text-transform: uppercase;
        letter-spacing: .1em;
        text-align: center;
    }
    .button-schedule input:hover{
        color: #F7F5F1;
        background: #0F0F17;
        transition: all .6s;
    }

    /* FOOTER */
    .footer{
        display: flex;
        flex-direction: column;
        padding: 50px;
    }
    .container-footer{
        display: flex;
        margin-bottom: 20px;
    }
    .footer-email{
        flex-direction: column;
    }
    .footer-email .title-footer h1{
        width: 70%;
        font-family: 'Lyon Display Trial', sans-serif;
        font-size: 40px;
        letter-spacing: .1em;
        font-weight: 400;
    }
    .footer-email form{
        width: 63%;
        margin-top: 40px;
    }
    .footer-email form .input{
        gap: 5px;
    }
    .footer-email form .input .input-email{
        width: 100%;
    }
    .footer-email form label{
        font-family: 'Whitney Book', sans-serif;
        font-size: 25px;
        font-weight: 300;
        letter-spacing: .1em;
    }
    .footer-email form input{
        background: #EEE9E2;
        border: none;
    }
    .footer-email form input::placeholder{
        font-family: 'Whitney Book', sans-serif;
        color: black;
        letter-spacing: .1em;
    }
    .footer-email form textarea::placeholder{
        font-family: 'Whitney Book', sans-serif;
        color: black;
        letter-spacing: .1em;
    }
    .footer-email form textarea{
        background: #EEE9E2;
    }
    .input-type textarea {
        width: 100%;
        height: 190px;
        padding: 12px 20px;
        box-sizing: border-box;
        border: none;
        background-color: #EEE9E2;
        font-size: 16px;
        resize: none;
    }
    .footer-email form .input-type{
        display: flex;
        flex-direction: column;
        margin-top: 5px;
        gap: 5px;
    }
    .footer-email form .input-type .keterangan{
        border: 1px solid #ddd;
        height: 100%;
    }
    .footer-email form .button-input{
        text-align: start;
        margin-top: 10px;
    }
    .footer-email form .button-input input{
        cursor: pointer;
        position: relative;
        background: #f0f0f0;
        border: .1em solid#000000;
        padding: 7px;
        width: 120px;
        height: 40px;
        font-size: 14px;
        transition: all .6s;
        font-family: 'Whitney Book',sans-serif;
        text-transform: uppercase;
        letter-spacing: .1em;
        text-align: center;
    }
    .footer-email form .button-input input:hover{
        color: #F7F5F1;
        background: #0F0F17;
        transition: all .6s;
    }
    .footer .text-footer label{
        font-size: 15px;
    }
    .footer-location{
        position: relative;
        right: 190px;
    }
    .footer-location h3{
        font-family: 'Whitney Medium', sans-serif;
        text-transform: uppercase;
        letter-spacing: .1em;
        margin-bottom: 30px;
        margin-top: 20px;
    }
    .footer-location p{
        font-family: 'Whitney Book', sans-serif;
        font-size: 14px;
        line-height: 10px;
        letter-spacing: .1em;
    }
    .social-media{
        gap: 20px;
    }
    .social-media .body-media{
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }
    .social-media .body-media a{
        text-decoration: none;
        color: #0F0F17;
        font-size: 25px;
    }
    .footer hr {
        justify-content: center;
        width: 100%;
    }
    .copy p{
        font-size: 17px;
        color: #0F0F17;
        font-family: 'Lyon Display Trial', sans-serif;
        font-weight: 300;
        letter-spacing: .1em;
        text-align: end;
    }
    .copy hr{
        background-color: #0F0F17;
        height: 1px;
        border: none;
    }




@media (max-width: 1400px){
    .nav-btn{
        top: 25px;
        left: 96%;
    }
    .nav-btn.size{
        top: 7px;
    }
    .content .container-content{
        padding: 0px 0px 0px 0px;
    }
    .content .container-content .logo{
        width: 12%;
        right: 2%;
        /* top: 4px; */
    }
    .content .container-content .logo.nav{
        left: 86%;
        top: -15px;
    }
    .sidebar .contact .li-1{
        margin-top: 20px;
    }
    .sidebar .contact li a{
        font-size: 16px;
    }
    .sidebar .menu li a{
        font-size: 27px;
        line-height: 45px;
        margin-top: 20px;
    }
    .enquire{
        left: 84%;
    }
    .button{
        top: 700px;
    }
    .button button{
        width: 150px;
        height: 40px;
    }
    .button ul{
        background: #EEE9E2;
        width: 100%;
        height: 330px;
    }
    .title-contact h1{
        font-size: 50px;
    }
    .body-contact h3{
        font-size: 20px;
    }
    .body-contact p{
        font-size: 18px;
    }
    .contact-phone p{
        font-size: 18px;
    }
    .schedule{
        left: 0;
    }
    .title-schedule h1{
        font-size: 50px;
    }
    .body-schedule p{
        font-size: 18px;
    }
    .footer-email form{
        width: 100%;
        margin-top: 40px;
    }
    .footer-email .title-footer h1{
        font-size: 30px;
    }
    .footer-email form{
        width: 70%;
    }
    .footer-location{
        right: 9%;
    }
    .footer-location h3{
        font-size: 20px;
        margin-top: 10px;
    }
    .footer-location p{
        line-height: 15px;
    }
    .social-media .body-media{
        margin-top: 3px;
    }
    .button-schedule input{
        width: 110px;
        height: 35px;
    }
    .button-footer button{
        width: 220px;
        height: 45px;
        font-size: 12px;
    }
    .mapouter{
        width: 100%;
        height: 200px;
    }
    .gmap_canvas{
        width: 100%;
        height: 200px;
    }
}
@media (max-width: 1200px){
    .nav-btn{
        top: 45px;
        left: 94%;
    }
    .nav-btn.size{
        top: 17px;
    }
    .content .container-content{
        padding: 0px 0px 0px 0px;
    }
    .content .container-content .logo{
        width: 18%;
        right: 3%;
        top: -2px;
    }
    .content .container-content .logo.nav{
        left: 77%;
        top: -5px;
    }
    .sidebar .menu,.contact{
        margin-top: 50px;
    }
    .sidebar .contact li a{
        font-size: 16px;
    }
    .sidebar .menu{
        flex-direction: column;
    }
    .sidebar .menu li a{
        font-size: 24px;
        line-height: 45px;
    }
    .sidebar .menu .menu-2{
        margin-top: -10px;
    }
    .enquire{
        left: 84%;
    }
    .button{
        top: 700px;
    }
    .button button{
        width: 150px;
        height: 40px;
    }
    .button ul{
        background: #EEE9E2;
        width: 100%;
        height: 330px;
    }
    .title-contact h1{
        font-size: 30px;
    }
    .body-contact h3{
        font-size: 20px;
    }
    .body-contact p{
        font-size: 18px;
    }
    .contact-phone{
        flex-direction: column;
        gap: 0;
    }
    .contact-phone p{
        font-size: 18px;
    }
    .schedule{
        left: 0;
    }
    .title-schedule h1{
        font-size: 30px;
    }
    .body-schedule p{
        font-size: 18px;
    }
    .footer-email form{
        width: 100%;
        margin-top: 40px;
    }
    .footer-email .title-footer h1{
        font-size: 18px;
    }
    .footer-email form{
        width: 80%;
    }
    .footer-location{
        right: 10px;
    }
    .footer-location h3{
        font-size: 16px;
        margin-top: 0;
    }
    .footer-location p{
        line-height: 15px;
    }
    .social-media .body-media{
        margin-top: -10px;
    }
    .button-schedule input{
        width: 110px;
        height: 35px;
    }
    .button-footer button{
        width: 220px;
        height: 45px;
        font-size: 14px;
    }
    .mapouter{
        width: 100%;
        height: 200px;
    }
    .gmap_canvas{
        width: 100%;
        height: 200px;
    }
}
@media (max-width: 1080px){
    .nav-btn{
        top: 40px;
        left: 94%;
    }
    .nav-btn.size{
        top: 12px;
    }
    .content .container-content{
        padding: 0px 0px 0px 0px;
    }
    .content .container-content .logo{
        width: 18%;
        right: 3%;
        top: -2px;
    }
    .content .container-content .logo.nav{
        left: 77%;
        top: -5px;
    }
    .sidebar .menu,.contact{
        margin-top: 50px;
    }
    .sidebar .contact li a{
        font-size: 16px;
    }
    .sidebar .menu{
        flex-direction: column;
    }
    .sidebar .menu li a{
        font-size: 24px;
        line-height: 45px;
    }
    .sidebar .menu .menu-2{
        margin-top: -10px;
    }
    .enquire{
        left: 84%;
    }
    .button{
        top: 700px;
    }
    .button button{
        width: 150px;
        height: 40px;
    }
    .button ul{
        background: #EEE9E2;
        width: 100%;
        height: 330px;
    }
    .title-contact h1{
        font-size: 30px;
    }
    .body-contact h3{
        font-size: 20px;
    }
    .body-contact p{
        font-size: 18px;
    }
    .contact-phone{
        flex-direction: column;
        gap: 0;
    }
    .contact-phone p{
        font-size: 18px;
    }
    .schedule{
        left: 0;
    }
    .title-schedule h1{
        font-size: 30px;
    }
    .body-schedule p{
        font-size: 18px;
    }
    .footer-email form{
        width: 100%;
        margin-top: 40px;
    }
    .footer-email .title-footer h1{
        font-size: 18px;
    }
    .footer-email form{
        width: 80%;
    }
    .footer-location{
        right: 10px;
    }
    .footer-location h3{
        font-size: 16px;
        margin-top: 0;
    }
    .footer-location p{
        line-height: 15px;
    }
    .social-media .body-media{
        margin-top: -10px;
    }
    .button-schedule input{
        width: 110px;
        height: 35px;
    }
    .button-footer button{
        width: 220px;
        height: 45px;
        font-size: 14px;
    }
    .mapouter{
        width: 100%;
        height: 200px;
    }
    .gmap_canvas{
        width: 100%;
        height: 200px;
    }
}
@media (max-width: 768px){
    .nav-btn{
        top: 20px;
    }
    .sidebar .contact .li-1{
        margin-top: 30px;
    }
    .content .container-content .logo{
        width: 20%;
        top: -12px;
    }
    .content .container-content .logo.display{
        top: -5px;
    }
    .enquire{
        left: 78%;
    }
    .button{
        top: 950px;
    }
    .button ul{
        height: 330px;
    }
    .title-contact h1{
        font-size: 40px;
    }
    .body-contact h3{
        font-size: 20px;
    }
    .body-contact p{
        font-size: 16px;
    }
    .contact-phone p{
        font-size: 16px;
    }
    .footer-location h3{
        font-size: 15px;
    }
    
}
@media (max-width: 600px){
    .nav-btn{
        left: 92%;
        top: 23px;
    }
    .nav-btn.size{
        top: 8px;
    }
    .content .container-content{
        padding: 0px 0px 0px 0px;
    }
    .content .container-content .logo{
        width: 25%;
        right: 3%;
    }
    .content .container-content .logo.nav{
        left: 72%;
    }
    .content .container-content button{
        margin-left: 15px;
    }
    .container-body{
        flex-direction: column;
    }
    .title-contact h1{
        font-size: 50px;
        text-align: center;
    }
    .body-contact{
        text-align: center;
    }
    .contact-phone{
        flex-direction: unset;
        gap: 90px;
    }
    .button-footer{
        text-align: center;
    }
    .title-schedule h1{
        text-align: center;
        font-size: 50px;
    }
    .enquire{
        left: 70%;
    }
    .button{
        top: 690px;
    }
    .button ul{
        height: 330px;
    }
    .body-schedule{
        text-align: center;
    }
    .container-footer{
        flex-direction: column;
    }
    .footer-email form{
        width: 100%;
    }
    .footer-location{
        right: 0px;
        margin-top: 40px;
    }
    .footer-email .title-footer h1{
        font-size: 30px;
    }
    .copy p{
        text-align: start;
    }
}
@media (max-width: 500px){
    .nav-btn{
        left: 90%;
    }
    .nav-btn.size{
        top: 8px;
    }
    .sidebar .contact {
        margin-top: 40px;
    }
    .sidebar .contact li a{
        font-size: 12px;
    }
    .sidebar .contact .li-2{
        margin-top: 0px;
    }
    .sidebar .menu{
        margin-top: 40px;
    }
    .sidebar .menu li a{
        font-size: 16px;
        line-height: 25px;
    }
    .content .container-content .logo{
        width: 35%;
    }
    .content .container-content .logo.nav{
        left: 62%;
        top: -5px;
    }
    .content .container-content button{
        margin-left: 5px;
        font-size: 15px;
    }
    .content .container-content ul{
        width: 35%;
    }
    .enquire{
        left: 60%;
    }
    .button {
        top: 650px;
    }
    .button ul{
        background: #EEE9E2;
        width: 100%;
        height: 330px;
    }
    .title-contact h3{
        font-size: 20px;
    }
    .title-contact h1{
        font-size: 30px;
    }
    .body-contact h3{
        font-size: 18px;
    }
    .body-contact p{
        font-size: 13px;
        line-height: 10px;
    }
    .contact-phone{
        flex-direction: column;
        gap: 0px;
    }
    .contact-phone p{
        font-size: 13px;
    }
    .button-footer button{
        width: 205px;
        height: 40px;
        padding: 7px;
    }
    .button-footer button a{
        font-size: 12px;
    }
    .title-schedule h1{
        font-size: 30px;
    }
    .body-schedule p{
        font-size: 13px;
        line-height: 13px;
    }
    .footer-email form label{
        font-size: 20px;
    }
    .footer-email form input::placeholder{
        font-size: 13px;
    }
    .footer-email form textarea::placeholder{
        font-size: 13px;
    }
    .footer-email .title-footer h1{
        font-size: 25px;
        width: 100%;
    }
    .footer-location p{
        font-size: 13px;
    }
    .copy p{
        font-size: 12px;
    }
}
@media (max-width: 400px){
    .sidebar .contact .li-3{
        margin-top: 0px;
    }
    .sidebar .contact .li-4{
        margin-top: 5px;
        width: 75%;
    }
    .sidebar .menu li a{
        font-size: 15px;
    }
    
}