/* footer */
#footer{
    border-top: 1px solid var(--white);
}
.footer{
    color: var(--white);
    padding: 25px 0 20px 0;
    background: var(--primary);
}
.footer .siteCenter{
    display: flex;
    gap: 50px;
}
.footer-item h3{
    text-transform: uppercase;
    margin-top: 0;
    font-size: var(--fontM);
}
.footer-item:first-child{
    font-weight: 100;
    font-size: var(--fontM);
    max-width: 50%;
}
.footer-item:first-child p{vertical-align: middle;}
.footer-item:first-child p > img{margin-right: 5px;}
.footer-item ul{
    margin: 0;
    padding-left: 17px;
    font-weight: 700;
}
.footer-item ul li::marker{
    color: #4aa5e4;
}
.footer-item ul li:not(:first-child){
    margin-top: 15px;
}
.footer-item:last-of-type p{font-weight: 700;}
.footer-item:last-of-type p:last-of-type {
    display: flex;
    gap: 15px;
    font-weight: 100;
    align-items: center;
    border-top: 1px solid #4aa5e4;
    padding-top: 1em;
}
.copyright{
    padding: 20px 0;
}
.copyright a{color: #b8b8b8;font-weight: 100;}
#back2Top {
    background: url(../images/back2Top.png) 0 0 no-repeat;
    width: 56px;
    height: 56px;
    display: none;
    position: fixed;
    bottom: 225px;
    right: 10px;
    cursor: pointer;
    z-index: 10;
}
/* smenu */
#smenu {
    width: 100%;
    max-width: 320px;
    background: var(--white);
    position: fixed;
    top: 0;
    left: -320px;
    bottom: 0;
    z-index: 101;
    height: 100%;
    transition: left 0.3s ease;
}
#smenu.show {
    left: 0;
}
.close {
    width: 40px;
    height: 40px;
    font-size: 40px;
    background: #f8f8f8;
    line-height: 36px;
    text-align: center;
    color: var(--secondary);
    font-weight: 700;
    display: block;
    float: right;
    cursor: pointer;
}
body::after {
    content: "";
    position: fixed;
    opacity: 0;
    z-index: 100;
    pointer-events: none;
    height: 0;
    width: 0;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease-in-out;
}
.off,.offs{
    overflow: hidden;
}
.off::after {
    opacity: 1;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}
.sm-list{
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 25px;
    height: calc(100% - 100px);
    overflow-y: scroll;
}
.sm-list > li{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
}
.sm-list > li > a{
    width: calc(100% - 65px);
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--black);
    padding: 12px 0;
}
.sm-list > li.sub{
    flex-wrap: wrap;
    flex-direction: unset;
}
.sm-sub{
    margin: 0;
    padding: 0 0 10px 0;
    list-style: none;
    width: 100%;
    display: none;
}
.sm-sub.active{
    display: block;
}
.sm-sub li{
    padding-left: 12px;
}
.sm-sub li > a{
    display: flex;
    padding: 10px 0;
    color: var(--black);
    font-size: 15px;
}
.chevron {
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    margin-left: auto;
    color: #999;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transform: rotate(90deg);
}
/* bx-search */
.bx-search{
    display: none;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    z-index: 98;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
}
.bx-search.show{
    display: flex;
}
.closes {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: var(--white);
    font-size: 45px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    -webkit-text-stroke: 2px;
}
#frmSearch{
    width: 90%;
    display: flex;
    flex-direction: row;
    position: relative;
}
#frmSearch input{
    width: 100%;
    padding: 0 0 12px 0;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 13%);
    height: auto;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    color: var(--white);
    background: transparent;
    outline: none;
}
#frmSearch input::placeholder,#frmSearch input::-moz-placeholder{
    color: var(--white);
    opacity: 1;
}
#frmSearch button {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    background: none;
    display: flex;
    height: 100%;
    width: 60px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
}