/* =====================================
   RESET
===================================== */
*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial,sans-serif;
}

/* =====================================
   LAYOUT
===================================== */

.container{
    max-width:1200px;
    margin:0 auto;
}

main{
    text-align:center;
}

/* =====================================
   HEADER
===================================== */

header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
}

header img{
    width:140px;
}

.header-title{
    flex:1;
    text-align:center;
}

header h1{
    margin:2px 0 0;
    font-size:28px;
    color:#1B5E20;
    text-transform: uppercase;
}

.sloganCty{
    margin: 0px 0 0;
    font-size:22px;
    font-weight:bold;
    color:#2E7D32;
    text-transform: uppercase;
}
.header-title p {
    margin: 0;
}
.sloganCty {
    font-size: 22px;
    font-weight: bold;
    color: #2E7D32;
    text-transform: uppercase;
}

.slogan1{
    margin:2px 0;
    font-size:20px;
    font-style:italic;
    color:#000;
}
.header-contact{
    width:250px;
    margin-top:8px;
    text-align:left;
    font-size:16px;
    color:#555;
}

.header-contact p{
    margin:8px 0;
}

.header-contact i{
    width:20px;
    color:#2E7D32;
    margin-right:8px;
}

/* =====================================
   NAVIGATION
===================================== */

nav{
    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;
    margin-top:15px;

    background:#2E7D32;
    border-radius:6px;

    box-shadow:0 4px 10px rgba(0,0,0,.15);
}

nav a{
    display:block;

    padding:10px 22px;

    text-decoration:none;
    color:#fff;

    font-size:20px;
    font-weight:600;

    transition:.3s;
}

nav a.active{
    background:#43A047;
    border-radius:4px;
}

nav a:hover{
    background:#388E3C;
}

/* =====================================
   COMMON
===================================== */

.camon{
    margin:2px 0 1px;
    font-size:20px;
    font-style:italic;
    text-align:center;
}

/* =====================================
   FOOTER
===================================== */

footer{
    margin-top:20px;
    padding:15px 10px;

    border-top:1px solid #C0C0C0;

    text-align:center;
    font-size:16px;
    color:#555;
}

footer p{
    margin:5px 0;
}

/* =====================================
   MOBILE
===================================== */

@media (max-width:768px){

    .container{
        width:100%;
        padding:0 15px;
    }

    header{
        flex-direction:column;
        align-items:center;
        justify-content:center;
        text-align:center;
        padding:20px 0;
    }

    header img{
        width:110px;
        margin-bottom:15px;
    }

    .header-title{
        width:100%;
    }

    header h1{
        margin-bottom:8px;
        font-size:24px;
        line-height:1.3;
    }

    .slogan{
        font-size:18px;
        margin-bottom:8px;
    }

    .slogan1{
        font-size:15px;
        line-height:1.5;
    }

    .header-contact{
        width:100%;
        margin-top:20px;
        text-align:center;
    }

    .header-contact p{
        margin:6px 0;
    }

    nav{
        justify-content:flex-start;
        flex-wrap:nowrap;

        overflow-x:auto;
        overflow-y:hidden;

        border-radius:0;

        -webkit-overflow-scrolling:touch;

        scrollbar-width:thin;
    }

    nav::-webkit-scrollbar{
        height:5px;
    }

    nav::-webkit-scrollbar-thumb{
        background:#9E9E9E;
        border-radius:10px;
    }

    nav a{
        flex:0 0 auto;
        white-space:nowrap;

        padding:12px 18px;

        font-size:16px;
    }

    footer{
        font-size:14px;
        line-height:1.6;
    }

}