@charset "utf-8";

/* CSS Document */

body,
html {
    height: 100%;
    position: relative;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 140%;
    min-height: 100%;
    background: #0a0304;
}

a {
    text-decoration: none;
    color: #111;
    transition: 0.5s;
}

a:hover {
    color: #333;
}

.pointer {
    cursor: pointer;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: "helios";
    src: url('MAKHelios.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    src: url('RobotoCondensed-Regular.ttf') format('truetype');
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

.clear {
    clear: both;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
    transition: 0.5s;
}

h1 {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
    margin: 30px 0px;
    padding: 20px 0px;
    font-size: 20px;
    text-transform: uppercase;
}

.header {
    width: 100%;
}

.header img {
    width: 100%;
}

.menu {
    background-color: #222222;
    border: 1px solid #121212;
    width: 100%;
    padding: 10px;
}

.menu a {
    color: white;
}

.width {
    width: 80%;
    margin: auto;
}

.logo {
    width: 20%;
}

.logo img {
    width: 100%;
}

.menus {
    padding: 0px 5%;
    width: 70%;
}

.search {
    width: 10%;
    position: relative;
}

.menu li {
    float: left;
    font-size: 0.8vw;
    text-transform: uppercase;
    padding: 0.6vw;
}

.menu a:hover {
    color: #fc4c4e;
}

.search input {
    border: 0;
    width: 100%;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    background: #333;
}

.search button {
    border: 0;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    padding: 12px 15px;
    font-size: 14px;
    color: #fff;
    background: #333;
}

.tbody {
    background: rgba(15, 15, 15, .9);
    border-bottom: solid 1px rgba(255, 255, 255, .07);
    border-top: solid 1px rgba(255, 255, 255, .07);
    padding: 20px;
}

.swiper {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.list {
    width: 100%;
}

.list li {
    float: left;
    width: 14.5%;
    margin: 1%;
    position: relative;
}

.list li img {
    width: 100%;
    opacity: 1;
    display: block;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.list h2 {
    color: white;
    font-size: 14px;
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0px;
    margin: 5px 0px;
}

.list h3 {
    width: 100%;
    line-height: 1.5;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: rgba(255, 255, 255, .5);
    margin: 0px;
    padding: 0px;
}

.list h3 .far {
    margin-right: 5px;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.list li:hover img {
    opacity: 0.3;
}

.list li:hover .middle {
    opacity: 1;
}

.text {
    background-color: #fc4c4e;
    color: white;
    font-size: 13px;
    padding: 5px 10px;
}

.pagination {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.real-btn {
    padding: 10px;
    background: #e1e1e1;
    line-height: 60px;
}

.current {
    background: #fc4c4e;
    color: #fff;
}

.real-btn:hover {
    background: #ccc;
}

.footer {
    width: 100%;
    text-align: center;
    margin: 30px 0px;
}

.garchig {
    width: 100%;
    padding: 10px;
    background: #fc4c4e;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.left {
    width: 20%;
}

.left img {
    width: 100%;
}

.right {
    width: 70%;
}

table {
    width: 100%;
    margin-bottom: 30px;
}

table th,
table td {
    padding: 5px 10px;
}

table th {
    text-align: right;
}

.link {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.link a {
    color: white;
    background: #fc4c4e;
    padding: 10px 20px;
}

.link a:hover {
    opacity: 0.8;
}

.detail {
    width: 80%;
    margin: auto;
}

.detail img {
    width: 100%;
    margin-bottom: 30px;
}

.login {
    width: 40%;
    margin: auto;
    text-align: center;
}

.login input {
    border: 0;
    width: 100%;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    background: #333;
}

#verification-code-form {
    display: none;
}

.btn2 {
    background: #fc4c4e;
    color: white;
    border: none;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
}

.btn2:hover {
    background: #555;
}

.zaavar {
    margin: 20px;
}

.bagts {
    width: 100%;
}

.bagts li {
    width: 21%;
    margin: 2%;
    float: left;
    color: white;
    background: url(img/bagts.png);
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 20px;
    padding: 1%;
}

h6 {
    font-size: 18px;
    text-transform: uppercase;
    padding: 20px 0px;
    margin: 0px;
}

h5 {
    text-shadow: 1px 0 1px #ccc, 0 1px 1px #eee, 2px 1px 1px #ccc, 1px 2px 1px #eee, 3px 2px 1px #ccc, 2px 3px 1px #eee, 4px 3px 1px #ccc, 3px 4px 1px #eee;
    box-sizing: border-box;
    font-size: 60px;
    font-weight: bold;
    padding: 20px 0px;
    margin: 0px;
}

.bagts li:hover {
    opacity: 0.5;
}

.tolbor {
    background: white;
    color: #333;
    border-radius: 30px;
    padding: 20px;
}

.tolbor th,
.tolbor td {
    border-bottom: 1px solid #ccc;
}

.tolbor img {
    width: 50%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.tolbor p {
    width: 100%;
    background: rgb(190, 227, 248) none repeat scroll 0% 0%;
    border-radius: 20px;
    padding: 20px;
    border-left: 5px solid #3083d0;
}

.login .btn {
    color: white;
    background: #fc4c4e;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

.alert {
    width: 50%;
    margin: auto;
    background: rgb(190, 227, 248) none repeat scroll 0% 0%;
    border-radius: 20px;
    padding: 20px;
    border-left: 5px solid #3083d0;
    color: #111;
    text-align: center;
}

.searchs li {
    padding: 10px;
    border-bottom: 1px dotted #ccc;
    list-style: circle;
    padding-left: 50px;
}

.searchs li a {
    color: white;
}

@media (max-width: 800px) {
    .fleft,
    .fright {
        float: none;
    }
    .logo {
        width: 100%;
    }
    .menus {
        padding: 10px;
        width: 100%;
    }
    .search {
        width: 100%;
    }
    .menu li {
        font-size: 3vw;
        padding: 3vw;
    }
    .swiper {
        height: 20vh;
    }
    .width {
        width: 90%;
    }
    .list li {
        float: left;
        width: 48%;
        margin: 1%;
        position: relative;
    }
    .left {
        width: 100%;
    }
    .right {
        width: 100%;
    }
    .link a {
        line-height: 50px;
    }
    .login {
        width: 100%;
    }
    .bagts li {
        width: 100%;
    }
    .alert {
        width: 100%;
    }
    .detail {
        width: 100%;
    }
}

.abc {
    display: none;
}

.abc ul {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.abc li {
    padding: 10px 1.15vw;
    float: left;
    background: rgba(15, 15, 15, .9);
    border: solid 1px rgba(255, 255, 255, .07);
}

.abc a {
    color: white;
}

.dar {
    color: white;
    cursor: pointer;
}