@font-face {
    font-family: iransans;
    src: url("./../../assets/fonts/IranSans.ttf") format('truetype');
    font-weight: 800;
}

body {
    background-color: #202020 !important;
    font-size: 16px !important;
    font-family: iransans;
    color: #d9ae50;
    overflow-x: hidden !important;
}

.title_2,
.subtitle_2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    color: #d9ae50;
    background-color: transparent;
    user-select: none;
}

.title_2 {
    font-size: 24px;
}

.subtitle_2 {
    font-size: 15px;
}

.product-nav_2 ul {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: wrap;
    user-select: none;
}

.product-nav_2 ul li {
    position: relative;
    width: 31% !important;
    height: 200px;
    background-color: #202020;
    border: 1px solid #d9ae50;
    border-radius: 15px;
    box-shadow: 0 0 5px 2px #d9ae50;
    margin: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-nav_2 ul li img {
    width: 80% !important;
    height: 90% !important;
    border-radius: 15px;
}

.product-nav_2 ul li video {
    width: 80% !important;
    height: 90% !important;
    border-radius: 15px;
}

.products_table {
    font-family: iransans;
    width: 95% !important;
    position: relative;
    right: 50%;
    transform: translateX(50%);
    margin: 30px 0;
    user-select: none;
}

.products_table tr {
    width: 100%;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products_table tr th,
.products_table tr td {
    width: 32% !important;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 40px;
    cursor: pointer;
}

.products_table tr td {
    margin: 10px;
    height: 170px;
    transition: all 0.5s ease;
}

.products_table tr td:hover {
    background-color: #434343;
    color: #fff;
}

.products_table tr td:nth-last-child(1) {
    background-color: #fff;
    border: 5px solid #d9ae50;
}

.products_table img {
    width: 40%;
    height: auto;
    border-radius: 10px !important;
}

@media only screen and (max-width: 600px) {
    .title_2 {
        font-size: 24px;
    }

    .subtitle_2 {
        width: 85%;
        font-size: 15px;
        position: relative;
        right: 50%;
        transform: translateX(50%);
    }

    .product-nav_2 ul {
        position: relative;
        right: 50%;
        transform: translateX(45%);
    }

    .product-nav_2 ul li {
        width: 85% !important;
    }

    .products_table tr td {
        height: 130px;
    }

    .products_table tr td:nth-last-child(1) {
        border: 3px solid #d9ae50;
    }

    .products_table img {
        width: 80%;
    }
}