﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}


/** HEADER **/


#header {
    max-height: 10vh;
    padding-top: 5px;
}

.phone {
    color: rgba(51, 72, 112, 0.88);
}

.logo img {
    width: 170px;
    height: 40.3px;
}


/** MAIN **/

.main-container {
    flex: 1;
    padding-top: 10px;
}

.main-list {
    text-align: center;
    margin-left: 0;
    list-style: none;
    min-height: 80vh;
}

.main-category {
    font-size: 20px;
}

.main-category:hover {
    background: #263d66;
}

.main-category:hover a {
    color: #fff;
}

.main-category select, .main-category a {
    border: 2px solid #263d66;
    display: inline-block;
    text-align: center;
    min-width: 300px;
    width: 100%;
    height: 100%;
    padding: 15px;
    text-decoration: none;
    color: rgba(51, 72, 112, 0.88);
}

/**  PRODUCT  **/

.main-product {
    font-size: 14px;
}

.main-product:hover {
    background: #263d66;
}

.main-product:hover a {
    color: #fff;
}

.main-product a {
    border: 2px solid #263d66;
    display: inline-block;
    text-align: center;
    min-width: 300px;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-decoration: none;
    color: rgba(51, 72, 112, 0.88);
}

/** FOOTER **/
#footer{
    max-height: 10vh;
}

.you-tube,
.full-site {
    color: #263d66;
}

.full-site {
    font-size: 14px;
}

.full-site i {
    margin-left: 5px;
}

.full-site:hover {
    text-decoration: none;
    color: #263d66;
}

.you-tube:hover {
    color: rgb(205, 31, 33);
}