
html, body {
    margin: 0 auto;
    height: 100%;
}
body{
    display: flex;
    flex-direction: column;
}
.content{
    flex-grow: 1;
}



/*Container*/
.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    min-width: 660px;
}



/* Heder */
.header{
    margin: 0 auto;
    width: 100%;
}
.header-logo{
    margin: 10px 0 5px 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}  
.header-element:first-child{
    margin-left: 20px;
}
.header-element:nth-child(2) {
    margin-left: 10px;
    margin-top: 0;
}
.header-element:last-child {
    margin-left: auto;
    margin-top: 10px;
}
.phone{
    margin: 0 20px 0 0;
    width: 240px;
    height: 50px;
        display: flex;
        justify-content: space-between;
        align-items:center;
    font-size: 26px;
    font-weight: 600;
    color: black;
}



/* Nav */
.nav_container{
    padding: 8px 0 8px 0;
    background-color:black;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    min-width: 660px;
}
.nav{
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    min-width: 660px;
    background-color:black;
    display: flex;
    justify-content:space-between;
}
.nav-link{
    position: relative;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    transition: color 0.3s linear;
}
.nav-link:hover {
    color: red;
}
.nav-link:after {
    content: "";
    display: table-row;
    width: 100%;
    height: 0;
    background-color: red;
    
    position: absolute;
    top: 105%;
    left: 0;
}


/* Content */
.content{
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    min-width: 660px;
    background-color:#E1E1E1;
}
h2{
    margin: 0 auto;
}



/* Teble-content */
.table-content{ 
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    min-width: 660px;
    height: 100%;
    background-color:#FAEBD7;
    font-size: 18px;
    text-align: justify;
}
.table-text{
    text-indent: 25px;
    margin: 0 10px 0 10px;
}
.table-link{
    font-size: 14px;
    word-spacing: 20px;
    text-align: center;
}
.table-link2{
    text-decoration: none;
}



/* Footer */
.footer{
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    min-width: 660px;
    background-color:red;  /*#C21414*/
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-align: center;
    padding: 8px 0 8px 0;