@font-face {
    font-family: estedad;
    src: url(../Font/farsi-fonts-fa-num/vazir-400.woff2);
}
body {
    margin: 0;
    direction: rtl;
    font-family: estedad !important;
}
a {
    text-decoration: none !important;
}
.topMenu {
    position: relative;
    width: 100%;
    height: 80px;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
}
.openMenuSm {
    display: none;
}
.Header {
    position: absolute;
    top: 50px;
    width: 95%;
    background-color: #bf2129;
    border-radius: 50px 0 0 50px;
    color: #fff;
    padding: 20px 0;
    z-index: 99999;
    /* transition: all ease-in-out .1s; */
}
.Header.scroll {
    position: fixed;
    top: 0;
    width: 100%;
    border-radius: 0;
}
.closeMenuSm {
    display: none;
}
.Logo > a {
    color: #fff;
}
.menuUl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 0;
    list-style: none;
    max-width: 1140px;
    margin: auto;
}
.menuLI {
    position: relative;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.contSubMenu {
    position: absolute;
    /* top: 56px; */
    right: auto;
    left: 50%;
    transform: translate(-50%, -5%);
    opacity: 0;
    visibility: hidden;
    width: 200px;
    border-radius: .25rem;
    overflow: hidden;
    background-color: #eee;
    transition: all ease-in-out .4s;
}
.menuLI:hover .contSubMenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0%);
}
.contSubMenu > ul {
    padding: 0;
    list-style: none;
}
.subMenuLi {
    color: #1e1e1e;
    padding: 10px 12px;
    margin: 4px;
    border-radius: .25rem;
    cursor: pointer;
}
.subMenuLi:hover {
    background-color: #bf2129;
    color: #fff;
}
.topFooter {
    background-color: #343434;
    padding: 20px 10px;
}
.footerLogo {
    display: flex;
}
.footerLogo > img {
    margin: auto;
}
.ftContent {
    width: 100%;
}
.ftContent > ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0;
}
.ftContent > ul > a > li {
    color: #fff;
    cursor: pointer;
}
.ftContent > ul > a > li:hover {
    color: #bf2129;
}
.socialMedia {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.socialMedia > a > i {
    color: #fff;
    padding: 10px;
    background-color: #4a4949;
    border-radius: .25rem;
    cursor: pointer;
}