/* ---------- main set ---------- */
/* ------ font ------ */
@font-face 
{
	font-family: footerFont;
	src: url(../../font/archivo.ttf);
}

/* ------ variables ------ */
:root
{   
    /* default font size */
    --footer-root-size: 12px;
   
    /* color set */
    --footer-text: #ffffff;
    --footer-frame: #a8a9ad;
}

/* ---------- css set ---------- */
footer
{
    width: 100%;
}
.footer-box
{
    width:98%;
    margin: 0px 1% 0px 1%;
}

.footer-left-box
{
    float: left;
    width: 50%;
    font-size: var(--footer-root-size);
    font-family: footerFont, sans-serif;
}

.footer-right-box
{
    float: left;
    width:50%;
    font-size: var(--footer-root-size);
    font-family: footerFont, sans-serif;
}

.footer-frame-left
{
    width: 100%;
    border-left:5px solid var(--footer-frame);
    border-bottom: 5px solid var(--footer-frame);
}

.footer-frame-right
{
    width: 100%;
    border-bottom: 5px solid var(--footer-frame);
}

.footer-frame-right p
{
    float: right;
    text-align: center;
    color: var(--footer-text);
    background-color: var(--footer-frame);
}

.footer-line-text
{
    width:130px;
    margin: 0px;
    padding: 5px 0px 0px 0px;
    font-size: 2em;
}

.footer-img
{
    float: right;
    display: block;
    width:170px;
    margin: 2px 0px 0px 0px; 
    text-decoration: none;
    padding: 10px;
    border: 2px solid #ffffff;
    transition: 0.25s linear;
}

.footer-img:hover
{
    border: 2px solid red;
}

.footer-first
{
    margin-right: 0.2%;
}

.footer-img img
{
    width: 100%;
    height: auto;
}

/* ---------- height-fix ---------- */
.height-fix:after
{
    content:'';
    display:block;
    clear:both;
}

@media screen and (max-width:1000px)
{
    .footer-line-text
    {
        padding: 5px 0px 0px 0px;
        font-size: 1.7em;
    }
}

@media screen and (max-width:590px)
{
    .footer-line-text
    {
        padding: 5px 0px 0px 0px;
        font-size: 1.4em;
    }
}

@media screen and (max-width:400px)
{
    .footer-line-text
    {
        padding: 5px 0px 0px 0px;
        font-size: 1.4em;
    }
    
    .footer-img
    {
        width:150px;
    }
}


@media screen and (max-width:400px)
{  
    .footer-img
    {
        width:130px;
    }
}