@charset "utf-8";

.hero {
    margin: 35px auto;
    position: relative;
    background-size: 100%;
    max-width: 100%;
    padding-bottom: 10px;
    overflow: hidden;
}

.hero .container {
    height: 650px;
    position: relative;
}

.hero .hero_back {
    opacity: 80%;
    background-size: 100%;
    width: 100%;
    object-fit: contain;

}

.hero_background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 25px;
    background-image: linear-gradient(#0115ea05, #e6123d05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    clip-path: polygon(85% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 10%, 82% 10%);
    height: 100%;
}

.archive_hero .hero_background {
    clip-path: polygon(85% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 18%, 82% 18%);
}

.archive_hero .container {
    height: 400px;
}

.product .menu_res {
    color: var(--white);
    text-shadow: rgb(50, 50, 50) 0 0 10px;
    backdrop-filter: blur(10px);
}

.product .hero_background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    clip-path: polygon(88% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 34%, 85% 34%);
}

.product .container {
    height: 225px;
}

.hero_background:after {
    content: "";
    position: absolute;
    top: 70px;
    left: -1px;
    width: 30px;
    height: 30px;
    border-bottom-right-radius: 25px;
    background: transparent;
    box-shadow: 10px 10px 0 var(--white);
    rotate: 180deg;
}

.archive_hero .hero_background:after {
    top: 70px;
}

.product .hero_background:after {
    top: 49px;
}

.hero .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

.hero .header .logo_holder {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

.hero .header .logo {
    display: grid;
    place-items: center;
}

.menu_res {
    display: none;
}

.hero .header .logo h1 {
    color: var(--white);
    font-size: 30pt;
}

.hero .header .vec {
    position: absolute;
    right: 100px;
}

.hero .header .logo img {
    width: 150px;
    height: 30px;
    object-fit: contain;
}

.hero .header .menu_holder {
    width: calc(100% - 590px);
}

.hero .header .menu_holder .menu {
    width: 100%;
    list-style: none;
}

.hero .header .menu_holder .logo {
    display: none;
}

.hero .header .menu_holder .item {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    color: var(--dark-950);
    position: relative;
    padding: 5px 15px;
}

.hero .header .menu_holder .item a {
    color: var(--dark-950);
}

.hero .header .menu_holder .item:last-child {
    margin-left: 0;
}

.hero .header .menu_holder .item:hover {
    border: none;
}

.hero .header .menu_holder .item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 50%;
    bottom: 0;
    background-color: white;
    transition: all ease-in-out .2s;
}

.hero .header .menu_holder .item:hover::after {
    width: 100%;
    left: 0;
}

.hero .header .menu_holder .current {
    font-weight: 500;
}

.side_menu_holder {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100vh;
    width: 300px;
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(246, 246, 246, 0.8);
    z-index: 11;
    display: none;
    flex-direction: column;
    padding-top: 80px;
    gap: 20px;
}

.side_menu_holder .menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    list-style: none;
}

.side_menu_holder .logo {
    display: block;
    padding-right: 20px;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 30px;
}

.side_menu_holder .logo img {
    display: block;
    width: 100%;
}

.side_menu_holder .item {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    color: var(--dark-950);
    position: relative;
    padding: 5px 15px;
    font-size: var(--font_l);
}

.side_menu_holder .item a {
    color: var(--dark-950);
}

.side_menu_holder .item:last-child {
    margin-left: 0;
}

.side_menu_holder .item:hover {
    border: none;
}

.side_menu_holder .item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 50%;
    bottom: 0;
    background-color: white;
    transition: all ease-in-out .2s;
}

.side_menu_holder .item:hover::after {
    width: 100%;
    left: 0;
}

.side_menu_holder .current {
    font-weight: 500;
}

.hero .header .top_header_action {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero .header .top_header_action .btn {
    border-radius: var(--radius_20);
}

.hero .header .top_header_action .btn i {
    font-size: 18px;
}

.hero .header .top_header_action .btn_border_red {
    width: 52px;
    height: 52px;
    color: var(--light);
    border: 2px solid var(--red-600);
    padding: 4px;
    display: grid;
    place-items: center;
    border-radius: var(--radius_oval);
    box-sizing: border-box;
}

.hero .header .top_header_action .btn_border_red img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius_oval);
    object-fit: cover;
}

.hero .header .top_header_action .btn_border_red:hover {
    color: var(--light);
    background-image: linear-gradient(to right, var(--red-700), var(--red-500));
}

/*.top_header .nav .logo:after {*/
/*    content: "";*/
/*    width: 1px;*/
/*    height: 50px;*/
/*    background: var(--dark-200);*/
/*    position: absolute;*/
/*    right: 180px;*/
/*}*/

.hero_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
}

.hero_search_holder .hero_title {
    padding-top: 20px;
    position: unset;
}

.hero_title .big_title {
    font-weight: 600;
    font-family: var(--font_secondary);
    font-size: 27pt;
}

.hero_title .big_title_bold {
    position: relative;
    /*border: 1px solid var(--dark-200);*/
}

.hero_title .big_title_bold .square {
    width: 10px;
    height: 10px;
    background: var(--dark-200);
}

.hero_title .big_title_bold .text {
    display: none;
    font-weight: 700;
    color: var(--dark-950);
    font-size: 38pt;
    text-transform: uppercase;
    background-image: linear-gradient(125deg, var(--dark-950), var(--dark-900) 90%, var(--dark-300) 95%, var(--dark-200));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bigTextAn 3s linear infinite;
}

@keyframes bigTextAn {
    to {
        background-position: 200%
    }
}

.hero_search_holder {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    width: 100%;
    gap: 20px;
    margin: 40px auto 0 auto;
    position: absolute;
    top: 250px;
    left: 0;
    right: 0;
}

.archive_hero .hero_search_holder {
    top: 100px;
}

.hero_search_holder .search_top {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.hero_search_holder .search_top .item {
    cursor: pointer;
    padding: 5px 10px;
}

.hero_search_holder .search_top .current {
    background: var(--blue-600);
    color: var(--white);
    border-radius: 10px;
}

.hero_search_holder .input_holder {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--b_shadow_primary);
    border-radius: var(--radius_20);
    padding: 10px 20px;
    box-sizing: border-box;
}

.hero_search_holder .input_holder input {
    background: none;
    border: none;
    border-radius: unset;
    box-shadow: unset;
    margin: 0;
    padding: unset;
}

.hero_search_holder .input_holder i {
    font-size: 30px;
    color: var(--dark-400);
    cursor: pointer;
}

.hero_search_holder .search_bottom {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.hero_search_holder .search_bottom .title {
    font-weight: 600;
}

.hero_search_holder .search_bottom .list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero_search_holder .search_bottom .list a {
    padding: 10px;
    border: 1px solid var(--dark-950);
    color: var(--dark-950);
    border-radius: var(--radius_15);
}

.product_main {
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.section_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.archive .section_head {
    justify-content: start;
    gap: 50px;
}

.section_head .btn_gray {
    padding: var(--margin_m);
    border-radius: var(--radius_15);
}

.category_selection {
    display: none;
}

.category_list .scroll {
    display: flex;
    align-items: center;
    gap: 25px;
}


.category_list .fa-chevron-right,
.category_list .fa-chevron-left {
    display: none;
}

.category_list a {
    padding: var(--margin_m);
    border-radius: var(--radius_10);
    color: var(--dark-950);
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

.category_list .current {
    border: 1px solid var(--dark-100);
    background: var(--blue-back_8);
    font-weight: 500;
}

.profile .category_list a {
    border-radius: 0;
    cursor: pointer;
}

.profile .category_list .current {
    border: unset;
    border-radius: 0;
    border-bottom: 3px solid var(--dark-950);
    background: transparent;
}

.profile .category_list a:hover {
    border-bottom: 3px solid var(--dark-950);
}

.section_head .sort .btn_primary {
    padding: var(--margin_m);
    border-radius: var(--radius_15);
}

.section_head .sort .modal {
    left: 0;
}

.product_holder {
    margin: 15px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;

}

.product_holder .product_card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(25% - 8px);
    padding: 10px;
    box-sizing: border-box;
    border-radius: var(--radius_20);
}

.product_card .card_img {
    width: 100%;
    height: 280px;
    position: relative;
    cursor: pointer;
}

.product_card .card_img .img {
    width: 100%;
    height: 100%;
}

.product_card .card_img .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius_10);
}

.card_hover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.overlay_shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to top, #141412, #25252505);
    backdrop-filter: blur(3px);
    border-radius: var(--radius_10);
    opacity: 0;
}

.card_hover .card_detail_overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
    box-sizing: border-box;
    opacity: 0;
    border-radius: 0 0 var(--radius_10) var(--radius_10);
}

.card_img:hover .card_detail_overlay,
.card_img:hover .overlay_shadow {
    opacity: 1;
}

.card_img .get_pro {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--yellow);
    z-index: 2;
}

.product_card .card_detail_overlay .title {
    color: var(--white);
    width: calc(100% - 80px);
    cursor: pointer;
}

.product_card .card_detail_overlay .card_action {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product_card .card_detail_overlay .card_action i {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: var(--radius_25);
    background: var(--white);
    color: var(--dark-700);
    cursor: pointer;
}

.product_card .card_detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.card_detail .user_information {
    display: flex;
    align-items: center;
    width: calc(100% - 80px);
    gap: 10px;
    position: relative;
}

.user_information:hover .modal {
    scale: 1;
}

.user_information .modal {
    scale: 0;
    bottom: 43px;
    top: unset;
    min-width: 325px;
}

.user_information .modal .user_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.user_information .modal .user_head .user_detail {
    display: flex;
    align-items: center;
    gap: 5px;
}

.user_information .modal .user_head .btn_primary {
    padding: 10px;
    border-radius: var(--radius_15);
}

.user_information .modal .user_head .user_detail .user_img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius_10);
    border: 1px solid var(--dark-950);

}

.user_information .modal .user_head .user_detail .detail {
    display: flex;
    flex-direction: column;
}

.user_information .modal .user_head .user_detail .detail .title {
    font-weight: 500;
}

.user_information .modal .user_head .user_detail .detail .sub_title {
    color: var(--dark-500);
}

.user_information .modal .user_work {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.user_information .modal .user_work .item {
    width: calc(33% - 10px);
}

.user_information .modal .user_work .item img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border: 1px solid var(--dark-100);
    border-radius: var(--radius_10);
}

.user_information .user_profile {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--radius_10);
    border: 1px solid var(--dark-950);
    cursor: pointer;
}

.user_information .user_title {
    color: var(--dark-950);
    font-weight: 500;
    cursor: pointer;
}

.product_card .card_statistic_holder {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product_card .card_statistic_holder .card_statistic {
    display: flex;
    gap: 2px;
}

.card_statistic_holder .card_statistic i {
    font-size: 12px;
    color: var(--dark-400);
    cursor: pointer;
}

.card_statistic_holder .card_statistic i:hover {
    color: var(--red-600);
}

.card_statistic_holder .card_statistic span {
    font-size: 10px;
    color: var(--dark-400);
}

.blog_main {
    position: relative;
    overflow: hidden;
}

.blog_main .blog_holder {
    position: relative;
    height: 520px;
    width: 100%;
    padding: 30px 0;
    box-sizing: border-box;
    background-image: url("../img/blog.png");
    background-repeat: no-repeat;
    background-position: center right;
    overflow: hidden;
}

.holder_header {
    display: flex;
    align-items: center;
    gap: 35px;
    width: fit-content;
    padding: 10px 20px 10px 10px;
    box-sizing: border-box;
    background: var(--white);
    border: 1px solid var(--dark-100);
    border-radius: var(--radius_20) 0 0 var(--radius_20);
    margin-top: 70px;
    position: relative;
}

.holder_header span {
    font-size: var(--font_l);
}

.holder_header span strong {
    color: var(--red-600);
    font-weight: 600;
}

.holder_header .header_img {
    position: absolute;
    top: 150px;
}

.holder_header .btn {
    border-radius: var(--radius_10);
    padding: var(--margin_m);
}

.blog_main .blog_holder .holder {
    width: calc(100% - 300px);
    height: fit-content;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.blog_main .blog_holder .holder .scroll {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 10px 0;
}

.blog_card {
    display: inline-block;
    width: calc(33% - 15px);
    height: 300px;
    position: relative;
}

.blog_card .card_img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.blog_card .card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius_20);
}

.blog_card .card_img .date {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 1px 5px;
    border-radius: var(--radius_10);
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 246, 246, 0.8);
    color: var(--dark-700);
}

.blog_card .card_detail {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    margin: auto;
    width: calc(100% - 20px);
    border-radius: var(--radius_10);
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog_card .card_detail .title {
    font-weight: 500;
    cursor: pointer;
    color: var(--dark-950);
}

.blog_card .card_detail .text {
    text-align: justify;
    width: 100%;
}

.faq_main {
    width: 100%;
    padding: 30px 0 80px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.faq_holder .holder_header {
    gap: 150px;
    margin-top: 0;
}

.faq_holder {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq_holder .holder {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.faq_category {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.faq_category .faq_category_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--dark-50);
    border-radius: var(--radius_10);
    color: var(--dark-950);
    padding: 10px;
    box-sizing: border-box;
    min-width: 80px;
    cursor: pointer;
}

.faq_category .faq_category_card:hover,
.faq_category .current {
    border: 1px solid var(--blue-600);
}

.faq_category .faq_category_card span {
    font-weight: 400;
}

.faq_category .faq_category_card i {
    font-size: 28px;
}

.faq_card_holder {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq_card {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 800px;
    padding: 10px;
    border-radius: var(--radius_10);
    border-color: var(--dark-50);
    box-sizing: border-box;
}

.faq_card .card_detail {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: calc(100% - 30px);
    gap: 10px;
}

.faq_card .card_detail .title {
    font-weight: 500;
    cursor: pointer;
    color: var(--dark-950);
}

.faq_card .card_detail .text {
    color: var(--dark-500);
}

.faq_card .faq_btn {
    font-size: 22px;
    padding: 10px 0;
    cursor: pointer;
}

.footer {
    width: 100%;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}

.footer .glass {
    position: relative;

    border-radius: 25px;
    background-image: linear-gradient(#0115ea05, #e6123d05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    clip-path: polygon(15% 0, 20% 15%, 100% 15%, 100% 100%, 0 100%, 0 0);
}

.footer .logo {
    float: left;
    margin-left: 25px;
    margin-top: 20px;
}

.footer .logo img {
    width: 150px;
    height: 30px;
    object-fit: contain;
}

.footer .item_holder {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 30px;
    border-bottom: 1px solid var(--dark-50);
}

.footer .item_holder .footer_item {
    display: flex;
    flex-direction: column;
    width: calc(33% - 20px);
    padding: 10px;
    gap: 10px;
    box-sizing: border-box;
}

.footer .item_holder .footer_item .list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer .item_holder .footer_item .list a {
    padding: 5px 0;
    color: var(--dark-950);
}

.footer .item_holder .footer_item .title {
    font-weight: 500;
    font-size: var(--font_m);
}

.footer .item_holder .footer_namad {
    display: flex;
    align-items: start;
    gap: 20px;
}

.footer .item_holder .footer_namad img {
    width: 80px;
    height: 100px;
    object-fit: contain;
}

.copy_right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.copy_right strong {
    font-weight: 500;
}

.blue_circle {
    width: 200px;
    height: 200px;
    border: 50px solid var(--blue-600);
    border-radius: var(--radius_oval);
    position: absolute;
    right: -100px;
    top: 150px;
    z-index: -1;
    filter: blur(20px);

    animation-name: roll-in-left;
    animation-duration: 6s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

@keyframes roll-in-left {

    0% {
        transform: translateX(-800px) rotate(-540deg);
        opacity: 0;
        scale: 0.8;
    }
    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
        scale: 1;
    }
}

.center_circle {
    width: 200px;
    height: 200px;
    background: var(--blue-600);
    border-radius: var(--radius_oval);
    position: absolute;
    right: 0;
    left: 0;
    top: 200px;
    z-index: -1;
    filter: blur(30px);
    margin: auto;
    animation: pulse 2s ease 0s infinite normal forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.red_circle {
    width: 150px;
    height: 150px;
    border: 30px solid var(--red-600);
    border-radius: var(--radius_oval);
    position: absolute;
    left: 0;
    top: 400px;
    z-index: -1;
    filter: blur(20px);

    animation-name: bounce-top;
    animation-duration: 3s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: both;
}

@keyframes bounce-top {
    0% {
        transform: translateY(0);
        left: -50px;
    }
    25% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-24px);
    }
    55% {
        transform: translateY(0);
    }
    65% {
        transform: translateY(-12px);
    }
    75% {
        transform: translateY(0);
    }
    82% {
        transform: translateY(-6px);
    }
    87% {
        transform: translateY(0);
    }
    93% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
        left: 150px;
    }
}

.product_main .blue_circle {
    width: 100px;
    height: 100px;
    border: 25px solid var(--red-600);
    left: -100px;
    bottom: 150px;
}

.product_main .red_circle {
    width: 200px;
    height: 200px;
    top: 1000px;
    border: 50px solid var(--blue-600);
}

.archive_hero .blue_circle {
    width: 100px;
    height: 100px;
    border: 25px solid var(--blue-600);
    left: -50px;
    top: 50px;
}

.archive_hero .red_circle {
    width: 50px;
    height: 50px;
    top: 150px;
    border: 25px solid var(--red-600);
}

.archive_hero .center_circle {
    width: 100px;
    height: 100px;
    right: 0;
    left: 0;
    top: 100px;
}

.product .blue_circle {
    width: 100px;
    height: 100px;
    border: 25px solid var(--blue-600);
    left: -50px;
    top: 50px;
}

.product .red_circle {
    width: 50px;
    height: 50px;
    top: 150px;
    border: 25px solid var(--red-600);
}

.product .center_circle {
    width: 100px;
    height: 100px;
    right: 0;
    left: 0;
    top: 100px;
}

.blog_main .blue_circle {
    width: 100px;
    height: 100px;
    border: 25px solid var(--blue-600);
    left: -100px;
    bottom: 150px;
}

.blog_main .red_circle {
    width: 100px;
    height: 100px;
    top: 100px;
    border: 50px solid var(--red-600);
}

.footer .red_circle {
    width: 100px;
    height: 100px;
    top: unset;
    bottom: 20px;
    left: 0;
    border: 50px solid var(--blue-600);
}

.archive {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.archive .holder {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.archive .holder .blog_card {
    width: calc(25% - 10px);
}

.page_number {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin: 50px auto;
}

.page_number a {
    transition: .4s all;
    display: grid;
    place-items: center;
    min-width: 45px;
    height: 45px;
    background-color: transparent;
    border-radius: 15px;
    text-align: center;
    color: var(--dark-950);
    border: 1px solid var(--dark-50);
}

.page_number a:hover,
.page_number .current {
    background-color: var(--blue-600);
    color: var(--white);
    border: 1px solid transparent;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 30px;
}

.breadcrumbs a {
    color: var(--dark-950);
}

.breadcrumbs i {
    margin-left: 5px;
}

.breadcrumbs .current {
    font-weight: 500;
}

.single {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
}

.single .single_main {
    display: flex;
    width: calc(100% - 320px);
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.product .single_main {
    display: flex;
    width: calc(100% - 370px);
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.single .single_main .post_img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius_10);
    overflow: hidden;
}

.product .single_main .post_image {
    width: 100%;
    position: relative;
}

.product .single_main .post_img {
    height: auto;
}

.comment {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.comment .comment_side {
    width: 370px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.comment .comment_side .label {
    font-weight: 500;
    font-size: var(--font_r);
}

.comment .comment_side .text {
    color: var(--dark-500);
}

.comment .comment_main {
    display: flex;
    flex-direction: column;
    width: calc(100% - 400px);
}

.comment .comment_item {
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--dark-100);
}

.comment .comment_item:last-child {
    border-bottom: none;
}

.comment .comment_item .comment_item {
    padding: 5px 30px;
    background: var(--dark-100);
}

.comment .comment_item .comment_head {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.comment .comment_item .comment_head .fa-square {
    font-size: 6px;
}

.comment .comment_item .comment_head .comment_name {
    font-weight: 500;
    color: var(--dark-500);
}

.comment .comment_item .comment_middle {
    display: flex;
    align-items: baseline;
}

.comment .comment_item .date {
    font-size: 8pt;
    color: var(--dark-500);
}

.comment .comment_item .comment_head .normal {
    background-color: var(--blue-100);
    color: var(--blue-600);
    padding: 2px 6px;
    font-size: 9pt;
    border-radius: var(--radius_15);
    margin: 0 8px;
}

.comment .comment_item .comment_head .is_buy {
    background-color: var(--green_sec);
    color: var(--green);
}

.comment .comment_item .comment_head .not_is_buy {
    background-color: var(--red-100);
    color: var(--red-600);
}

.comment .comment_item .replay {
    border-bottom: 2px solid var(--blue-600);
}

.comment .comment_item .comment_text {
    line-height: 1.7;
    text-align: justify;
    font-size: 10pt;
    padding: 8px 0;
    box-sizing: border-box;
    color: var(--dark-800);
}

.comment .comment_item .comment_footer {
    display: flex;
    margin-top: 3px;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    box-sizing: border-box;
}

.comment_form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    bottom: 0;
    top: 0;
    margin: auto;
    left: 0;
    right: 0;
    scale: 0;
    max-width: 500px;
    width: 100%;
    height: fit-content;
    max-height: calc(100% - 20px);
    background: white;
    padding: 0;
    z-index: 10;
    border-radius: var(--radius_10);
    border: 1px solid var(--dark-100);
}

.comment_form .form_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--dark-50);
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    font-size: 12pt;
    font-weight: 500;
    color: var(--dark-500);
}

.comment_form .form_head i {
    color: var(--red-500);
    font-size: 18px;
    cursor: pointer;
}

.comment_form .comment_score {
    margin: 8px 0;
    padding: 5px 15px;

}

.comment_form .comment_score i {
    cursor: pointer;
    color: var(--yellow);
}

.comment_form .text_area {
    display: block;
    margin: 8px auto;
    padding: 8px 16px;
    width: calc(100% - 15px);
    min-width: calc(100% - 15px);
    max-width: calc(100% - 15px);
    min-height: 150px;
    box-sizing: border-box;
}

.comment_form .btn_red_light {
    background-color: var(--pink);
    color: var(--dark-500);
}

.comment_form_product {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    gap: 20px;
    border-bottom: 1px solid var(--dark-50);
    margin-bottom: 25px;
}

.comment_form_product img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius_10);
    object-fit: contain;
}

.comment_form_product .title {
    width: calc(100% - 80px);
    color: var(--dark-500);
    font-weight: 500;
}

.comment_form .form_btn_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.comment .comment_side .btn,
.comment_form .form_btn_holder .btn {
    width: 100%;
    border-radius: var(--radius_10);
}

.single .single_side {
    display: flex;
    width: 300px;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.product .single_side {
    width: 350px;
}

.single .single_side .buy_holder {
    width: 100%;
    position: relative;
}

.single .single_side .buy_holder .btn {
    width: 100%;
    border-radius: var(--radius_10);
}

.single .single_side .buy_holder .modal {
    min-width: 100%;
    border-radius: var(--radius_10);
    background: #252525;
    top: 55px;
}

.single .single_side .buy_holder .modal .nav {
    color: var(--white);
    border-bottom: 1px solid var(--dark-900);
    padding: 5px;
}

.single .single_side .buy_holder .modal .list .vip_btn {
    padding: var(--margin_m);
    justify-content: start;
}

.single .single_side .buy_holder .modal .list .vip_btn i {
    color: var(--yellow);
}

.single .single_side .buy_holder .modal .list .buy_btn {
    justify-content: space-between;
    padding: var(--margin_m);
}

.single .single_side .side_item {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius_10);
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    gap: 10px;
}

.single .single_side .side_item .title {
    font-size: var(--font_r);
    font-weight: 400;
    border-bottom: 1px solid var(--dark-100);
}

.side_item .tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.tags .tags_item {
    padding: 2px 5px;
    background: var(--dark-50);
    border-radius: var(--radius_5);
    border: 1px solid var(--dark-100);
    color: var(--dark-900);
}

.side_item .author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.side_item .author img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius_oval);
    padding: 2px;
    box-sizing: border-box;
    border: 2px solid var(--red-600);
}

.side_item .author .author_detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.side_item .author .author_detail .title {
    font-size: var(--font_S_p);
    border-bottom: none;
}

.side_item .author .author_detail .text {
    color: var(--dark-500);
}

.side_item .post_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side_item .post_list .blog_card {
    display: flex;
    gap: 10px;
    width: 100%;
    height: unset;
    border: 1px solid var(--dark-50);
    border-radius: var(--radius_10);
}

.side_item .post_list .blog_card .card_img {
    width: 50px;
    height: 50px;
}

.side_item .post_list .blog_card img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius_10);
    object-fit: cover;
}

.side_item .post_list .blog_card .detail {
    display: flex;
    flex-direction: column;
    width: calc(100% - 65px);
    gap: 5px;
    padding-left: 5px;
    box-sizing: border-box;
}

.side_item .post_list .blog_card .detail .title {
    font-size: var(--font_m);
    text-align: justify;
    border-bottom: none;
    color: var(--dark-950);
}

.side_item .post_list .blog_card .text {
    color: var(--dark-500);
}

.side_item .list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 0;
}

.side_item .list .item {
    display: flex;
    justify-content: space-between;
    padding: 10px 5px;
}

.side_item .list .item .label {
    display: flex;
    gap: 5px;
    color: var(--dark-700);
}

.side_item .list .item .label i {
    min-width: 20px;
    text-align: center;
}

.side_item .list .item .value {
    color: var(--dark-950);
}

.side_item .work_list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.side_item .work_list .product_card {
    width: calc(50% - 5px);
    height: 160px;
}

.side_item .work_list .product_card .card_img {
    height: 100%;
}

.post_image .fa-chevron-left {
    position: absolute;
    display: grid;
    place-items: center;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 35px;
    height: 35px;
    border-radius: var(--radius_oval);
    margin: auto;
    cursor: pointer;
}

.post_image .fa-chevron-right {
    position: absolute;
    display: grid;
    place-items: center;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: var(--radius_oval);
    margin: auto;
    cursor: pointer;
}

.post_image .slider_dots {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    bottom: 20px;
    right: 0;
    border-radius: var(--radius_oval);
    margin: auto;
    gap: 5px;
    cursor: pointer;
}

.post_image .slider_dots span {
    width: 10px;
    height: 10px;
    border-radius: var(--radius_oval);
    border: transparent;
}

.user_profile_hero {
    position: absolute;
    top: 100px;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 43px;
    box-sizing: border-box;
}

.user_profile_hero .user_profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user_profile_hero .user_profile .user_img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius_10);
    padding: 4px;
    border: 2px solid var(--dark-100);
    object-fit: cover;
}

.user_profile_hero .user_profile .user_detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user_profile_hero .user_profile .user_detail .title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user_profile_hero .user_profile .user_detail .title strong {
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 0 10px rgb(50, 50, 50);
    backdrop-filter: blur(10px);
}

.user_profile_hero .user_profile .user_detail .title i {
    font-size: 6px;
    color: var(--white);
    text-shadow: 0 0 10px rgb(50, 50, 50);
    backdrop-filter: blur(10px);
}

.user_profile_hero .user_profile .user_detail .text,
.user_profile_hero .user_profile .user_detail .title span {
    color: var(--white);
    text-shadow: 0 0 10px rgb(50, 50, 50);
    backdrop-filter: blur(10px);
}

.profile_header_action {
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile_header_action .btn {
    padding: var(--margin_m);
    border-radius: var(--radius_10);
}

.post_action_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.post_action_head .action_right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post_action_head i {
    color: var(--dark-500);
    padding: 5px;
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.post_action_head .heart_current {
    color: var(--red-500);
    font-weight: bold;
}

.post_action_head .bookmark {
    color: var(--blue-500);
    font-weight: bold;
}

.product_cart {
    background: var(--white);
}

.product_cart .nav {
    padding: 10px 0;
    border-bottom: 1px solid var(--dark-100);
}

.product_cart .cart_holder {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin: 10px 0;
}

.product_cart .cart_title {
    padding: 5px 0;
    font-size: var(--font_m);
    font-weight: 500;
    color: var(--dark-950);
    border-bottom: 1px solid var(--dark-100);
    width: 100%;
}

.product_cart .cart_holder .cart_detail {
    display: flex;
    flex-direction: column;
    width: calc(100% - 320px);
}

.product_cart .cart_holder .cart_img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius_10);
}

.product_cart .cart_cost_holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.product_cart .cart_cost_holder .label {
    font-size: var(--font_l);
}

.product_cart .cart_cost_holder .cart_cost {
    display: flex;
    flex-direction: column;
}

.product_cart .cart_cost_holder .cart_cost .cost_off {
    font-size: var(--font_l);
}

.product_cart .cart_cost_holder .cart_cost .cost {
    color: var(--dark-500);
    font-size: var(--font_l);
    text-decoration: line-through;
}

.profile {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile_main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.profile_main .text_item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    border-radius: var(--radius_10);
    border: 1px solid var(--dark-100);
}

.profile_main .text_item .head {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.profile_main .text_item .head i {
    padding: 5px;
}

.profile_main .text_item .head span {
    font-weight: 500;
    font-size: var(--font_r);
}

.profile_main .text_item .text .tags {
    display: inline-block;
    margin: 3px;
    border-radius: var(--radius_10);
    border: 1px solid var(--dark-50);
    color: var(--dark-800);
    padding: 2px 10px;
}

.profile .profile_main .main_title {
    padding: 15px 0;
    font-size: var(--font_l);
    font-weight: 500;
}

.contact_list {
    display: flex;
    flex-direction: column;
    width: 500px;
    margin: auto;
    gap: 10px;
}

.contact_list .item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.contact_list .item .contact_detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_list .item .contact_detail img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius_oval);
    padding: 4px;
    border: 2px solid var(--dark-50);
}

.contact_list .item .contact_detail .title {
    font-weight: 500;
}

.contact_list .item .contact_action {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_list .item .contact_action .btn {
    padding: var(--margin_s) var(--margin_m);
}

.contact_list .item .contact_action .btn_i {
    font-size: 18px;
    padding: 5px;
}

.fav_list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.fav_list .item {
    width: calc(20% - 20px);
    border-radius: var(--radius_20);
    padding: var(--margin_m);
    box-sizing: border-box;
}

.fav_list .item .fav_gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-radius: var(--radius_10);
    overflow: hidden;
    position: relative;
}

.fav_list .item .fav_gallery img {
    width: calc(50% - 5px);
    height: 135px;
    object-fit: cover;
}

.fav_list .item .item_detail {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80%;
    padding: var(--margin_s) var(--margin_m);
    box-sizing: border-box;
    text-align: center;
    font-weight: 500;
    font-size: var(--font_r);
    border-radius: 0 20px 0 0;
    border: none;
    background: rgba(255, 255, 255, 0.85);
}

.fav_list .item .item_detail .vec_left {
    position: absolute;
    top: -28px;
    left: -2px;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.fav_list .item .item_detail .vec_right {
    position: absolute;
    bottom: -2px;
    right: -28px;
    left: unset;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.error_holder {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    border-radius: var(--radius_10);
    border: 1px solid var(--dark-100);
}

.error_holder .title {
    font-size: var(--font_r);
    font-weight: 500;
}

.register_holder {
    width: 100%;
    height: 100vh;
    position: relative;
}

.register_holder .register_background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.register_form {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    gap: 40px;
    background-image: linear-gradient(to top, #d9d9d985, #ffffff65);
}

.register_form .logo {
    width: 250px;
    display: grid;
    place-items: center;
}

.register_form .logo img {
    display: block;
    width: 100%;
}

.register_form .logo h1 {
    color: var(--blue-600);
    font-size: 38pt;
}

.register_form .form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 50px;
    box-sizing: border-box;
}

.register_form .form .btn {
    padding: var(--margin_m) var(--margin_x);
}

/************************** pricing *******************************/

.green_icon {
    color: #3BB538;
    background: #3BB53822;
}

.yellow_icon {
    color: #FBBA00;
    background: #FBBA0022;
}

.red_icon {
    color: #E40017;
    background: #E4001722;
}

.green_icon,
.yellow_icon,
.red_icon {
    display: inline-block;
    width: auto !important;
    padding: 3px 15px;
    border-radius: 30px;
}

.pricing {
}

.pricing_item_holder {
    padding: 25px 0;
}

.pricing_item {
    width: calc(25% - 20px);
    max-height: 500px;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    margin-left: 20px;
    vertical-align: top;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}

.pricing_item:last-child {
    margin-left: 0;
}

.pricing .page_title {
    color: #2d3436;
}

.pricing_item_title {
    background-color: #ecf0f1;
    color: #2d3436;
    padding: 20px;
    box-sizing: border-box;
}

.pricing_item_title_panel {
    background-color: #EBEEF1;
    color: #000000;
}

.plan_name {
    display: block;
    font-size: 20pt;
    margin-bottom: 10px;
}

.plan_price {
    display: inline-block;
}

.plan_length {
    display: block;
}

.pricing_item_title .plan_length {
    display: inline-block;
}

.plan_price {
    font-size: 18pt;
    margin-left: 10px;
}

.plan_price_off {
    display: block;
    text-decoration: line-through;
    font-weight: 200;
}

.plan_length {
    font-size: 12pt;
    font-weight: 200;
}

.price_table_title {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.pricing_item_text {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    font-weight: 300;
}

.pricing_item_text span {
    display: block;
    min-height: 170px;
    overflow: hidden;
    text-align: justify;
}

.pricing_item_text .btn-green,
.price_table .btn-green {
    margin: 20px 0 0 0;
    padding: 3px 0;
}

.btn_orange {
    background-color: #ED6606 !important;
    border: solid 1px #ED6606 !important;
    color: #ffffff !important;
}

.free_mark {
    display: inline-block;
    padding: 10px 20px;
    box-sizing: border-box;
    float: left;
    background-color: #c0392b;
    color: #ffffff;
    border-radius: 25px;
    font-size: 9pt;
}

.price_table_title_row {
    display: inline-block;
    margin: 0 20px;
    vertical-align: top;
    border-radius: 25px 25px 0 0;
    padding: 20px;
    box-sizing: border-box;
    background-color: #ecf0f1;
}

.price_table_title_row .btn {
    box-sizing: border-box;
    margin-top: 15px;
}

.price_table_row {
    background-color: #ecf0f1;
    border-radius: 25px;
}

.price_table_row_item {
    border-bottom: solid 1px #50227422;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.price_table_row_item:last-child {
    border-bottom: none;
}

.price_table_row_item_title {
    display: inline-block;
    text-align: center;
    margin: 0 20px;
    padding: 25px 20px;
    font-weight: 200;
    vertical-align: top;
    box-sizing: border-box;
}

.price_table_row_item_title:first-child i {
    margin-left: 15px;
}

.price_table_row_item_title span {
    display: none;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 50px;
    background-color: #f5dfd0;
    margin-bottom: 10px;
}

.price_table_row_item_title_title {
    width: 250px;
    text-align: unset;
    margin: 0;
    font-weight: 400;
}

.price_table_row_item_title_holder {
    width: calc(100% - 255px);
}

.price_table_row_item_title_special {
    background-color: #f5dfd0;
}

.price_table_title_row_special {
    background-color: #2d3436;
    color: #ffffff;
}

.price_table_title_row_special .btn_secondary {
    border: solid 1px #ffffff;
    color: #ffffff;
}

.price_table_row_separator {
    padding: 50px 0 20px 0;
    font-size: 18pt;
    color: #2d3436;
}

/******************************************************/

@media screen and (max-width: 1200px) {
    .hero .header .menu_holder .item {
        margin-left: 0 !important;
    }

    .hero_background {
        clip-path: polygon(82% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 10%, 78% 10%);
    }

    .archive_hero .hero_background {
        clip-path: polygon(80% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 18%, 76% 18%);
    }

    .product .hero_background {
        clip-path: polygon(80% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 34%, 74% 34%);
    }

    .pricing_item {
        width: calc(50% - 25px) !important;
        margin-bottom: 20px;
    }

    .price_table_row_item_title:first-child i {
        margin: 0 20px 0 10px;
    }
}

@media screen and (max-width: 1080px) {

    .menu_res {
        display: grid;
        place-items: center;
        width: 35px;
        height: 35px;
        font-size: 30px;
    }

    .hero .header .menu_holder {
        display: none;
    }

    .side_menu_holder {
        display: flex;
    }

    .hero_title .big_title {
        font-size: clamp(1.2rem, 4vw, 5rem);
    }

    .hero_title .big_title_bold .text {
        font-size: clamp(1.2rem, 5vw, 5rem);
    }

    .footer .glass {
        clip-path: polygon(20% 0, 25% 15%, 100% 15%, 100% 100%, 0 100%, 0 0);
    }

    .comment {
        flex-direction: column;
    }

    .comment .comment_side,
    .comment .comment_main {
        width: 100%;
    }

    .comment .comment_side .btn {
        width: 50% !important;
    }

    .fav_list .item {
        width: calc(25% - 20px);
    }
}

@media screen and (max-width: 920px) {
    .hero_background {
        clip-path: polygon(78% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 10%, 72% 10%);
    }

    .archive_hero .hero_background {
        clip-path: polygon(72% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 18%, 68% 18%);
    }

    .product .hero_background {
        clip-path: polygon(74% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 34%, 68% 34%);
    }

    .product_holder .product_card {
        width: calc(33% - 4px);
    }

    .footer .glass {
        clip-path: polygon(25% 0, 30% 10%, 100% 10%, 100% 100%, 0 100%, 0 0);
        height: fit-content;
    }

    .fav_list .item {
        width: calc(33% - 15px);
    }

    .price_table_title {
        display: none;
    }

    .price_table_row_item_title {
        margin: 0 5px;
        width: calc(25% - 15px) !important;
    }

    .price_table_row_item_title span {
        display: block;
    }

    .price_table_row_item {
        display: block;
    }

    .price_table_row_item_title_holder {
        width: 100%;
    }

    .price_table_row_item_title_special {
        background-color: unset;
    }

    .price_table_row_item_title_title {
        width: 100% !important;
    }
}

@media screen and (max-width: 850px) {

    .hero_background {
        clip-path: polygon(72% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 10%, 68% 10%);
    }

    .section_head {
        flex-wrap: wrap;
        gap: 20px;
    }

    .section_head .btn,
    .section_head .sort {
        order: 1;
    }

    .category_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        order: 2;
        width: 100%;
        position: relative;
    }

    .product_holder .product_card {
        width: calc(33% - 5px);
    }

    .card_hover .card_detail_overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.35);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .blog_main .blog_holder {
        display: flex;
        flex-direction: column;
    }

    .blog_main .blog_holder .holder {
        position: unset;
        width: 100%;
        overflow: auto;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .blog_card {
        width: 300px;
    }

    .archive .holder .blog_card {
        width: calc(33% - 5px);
    }

    .faq_card {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .hero_background {
        clip-path: polygon(68% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 10%, 60% 10%);
    }

    .archive_hero .hero_background {
        clip-path: polygon(66% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 18%, 58% 18%);
    }

    .product .hero_background {
        clip-path: polygon(66% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 34%, 58% 34%);
    }

    .hero .header .top_header_action .btn {
        padding: var(--margin_m);
        border-radius: var(--radius_15);
    }

    .hero_search_holder .search_bottom {
        flex-wrap: wrap;
    }

    .hero .container {
        height: 600px;
    }

    .archive_hero .container {
        height: 400px;
    }

    .product .container {
        height: 250px;
    }

    .archive_hero .hero_search_holder {
        top: 50px;
    }

    .category_list .category_holder {
        width: calc(100% - 75px);
        overflow: auto;
    }

    .profile .category_list .category_holder {
        width: 100%;
    }

    .category_list .scroll {
        overflow: hidden;
    }

    .category_list .fa-chevron-right {
        width: 35px;
        height: 35px;
        display: grid;
        place-items: center;
        background: var(--white);
        font-size: 18px;
        cursor: pointer;
    }

    .category_list .fa-chevron-left {
        width: 35px;
        height: 35px;
        display: grid;
        place-items: center;
        background: var(--white);
        font-size: 18px;
        cursor: pointer;
    }

    .category_list a {
        width: fit-content;
        box-sizing: border-box;
    }

    .modal {
        position: fixed;
        left: 0;
        right: 0;
        bottom: -1000%;
        top: unset !important;
        margin: auto;
        width: 100%;
        scale: 1;
        z-index: 14;
    }

    .modal_open {
        bottom: 75px;
    }

    .product_cart {
        top: 0 !important;
        scale: 0;
    }

    .product_cart .cart_holder .cart_img {
        display: none;
    }

    .product_cart .cart_holder .cart_detail {
        width: 100%;
    }

    .product_holder .product_card {
        width: calc(50% - 5px);
    }

    .footer .item_holder {
        flex-direction: column;
    }

    .footer .item_holder .footer_item {
        width: 100%;
    }

    .hero_search_holder {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .hero .header .top_header_action .btn {
        padding: 10px;
        width: 44px;
        height: 44px;
        box-sizing: border-box;
    }

    .hero .header .top_header_action .btn span {
        display: none;
    }

    .single {
        flex-direction: column;
    }

    .single .single_main,
    .single .single_side {
        width: 100%;
    }

    .single .single_main .post_img {
        border-radius: 0;
    }

    .post_action_head {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .user_profile_hero {
        padding: 0 10px;
        flex-direction: column;
        align-items: end;
    }

    .user_profile_hero .user_profile {
        width: 100%;
    }

    .single .single_side .buy_holder {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 9;
        padding: 10px;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.65);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .category_list .scroll {
        gap: 15px;
    }

    .fav_list .item {
        width: calc(50% - 10px);
    }

    .contact_list {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .register_form {
        width: 100%;
    }

    .hero_search_holder .search_bottom .list a {
        padding: 5px;
        border-radius: var(--radius_10);
    }
}

@media screen and (max-width: 650px) {
    .hero .header .logo img {
        width: 130px;
    }

    .hero_background {
        clip-path: polygon(48% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 10%, 36% 10%);
    }

    .archive_hero .hero_background {
        clip-path: polygon(50% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 18%, 40% 18%);
    }

    .product .hero_background {
        clip-path: polygon(60% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 34%, 52% 34%);
    }

    .product_holder .product_card {
        width: 100%;
    }

    .footer .glass {
        clip-path: polygon(35% 0, 40% 10%, 100% 10%, 100% 100%, 0 100%, 0 0);
    }

    .archive .holder .blog_card {
        width: calc(50% - 5px);
    }

    .pricing_item {
        width: calc(100% - 5px) !important;
        margin-bottom: 20px;
    }

    .price_table_row_item_title {
        padding: 25px 0;
    }
}

@media screen and (max-width: 550px) {
    .footer .glass {
        clip-path: polygon(50% 0, 55% 10%, 100% 10%, 100% 100%, 0 100%, 0 0);
    }

    .archive .holder .blog_card {
        width: 100%;
    }

    .product .hero_background {
        clip-path: polygon(48% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 20%, 38% 20%);
    }

    .fav_list .item {
        width: 100%;
    }
}
