@charset "utf-8";
/***************************************** animation ***********************************/

.animation_set {
    animation-duration: 0.8s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.animation_start {
    animation-play-state: running !important;
}

.animation_delay_1 {
    animation-delay: 0.2s;
}

.animation_delay_2 {
    animation-delay: 0.4s;
}

.animation_delay_3 {
    animation-delay: 0.6s;
}

.animation_delay_4 {
    animation-delay: 0.8s;
}

.animation_delay_5 {
    animation-delay: 1.0s;
}

.animation_delay_6 {
    animation-delay: 1.2s;
}

.animation_delay_7 {
    animation-delay: 1.4s;
}

.animation_delay_8 {
    animation-delay: 1.6s;
}

.animation_fade_in {
    opacity: 0.0;
    animation-name: anim_fade_in;
    animation-play-state: paused;
}

@keyframes anim_fade_in {
    0% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

.animation_fade_in_up {
    position: relative;
    opacity: 0.0;
    top: 100px;
    animation-name: anim_fade_in_up;
    animation-play-state: paused;
}

@keyframes anim_fade_in_up {
    0% {
        opacity: 0.0;
        top: 100px;
    }
    100% {
        opacity: 1.0;
        top: 0;
    }
}

.animation_fade_in_right {
    position: relative;
    opacity: 0.0;
    right: 100px;
    animation-name: anim_fade_in_right;
    animation-play-state: paused;
}

@keyframes anim_fade_in_right {
    0% {
        opacity: 0.0;
        right: 100px;
    }
    100% {
        opacity: 1.0;
        right: 0;
    }
}

.animation_fade_zoom {
    transform: scale(2.0, 2.0);
    opacity: 0.0;
    animation-name: anim_fade_zoom;
    animation-play-state: paused;
}

@keyframes anim_fade_zoom {
    0% {
        transform: scale(2.0, 2.0);
        opacity: 0.0;
    }
    100% {
        transform: scale(1.0, 1.0);
        opacity: 1.0;
    }
}

.animation_border_from_left {
    margin-right: 100%;
    width: 0;
    animation-name: anim_border_from_left;
    animation-duration: 0.5s;
    animation-play-state: paused;
}

@keyframes anim_border_from_left {
    0% {
        margin-right: 100%;
        width: 0;
    }
    100% {
        margin-right: 0;
        width: 100%;
    }
}

.animation_border_from_top {
    height: 0;
    animation-name: anim_border_from_top;
    animation-duration: 0.5s;
    animation-play-state: paused;
}

@keyframes anim_border_from_top {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

.animation_border_from_right {
    width: 0;
    animation-name: anim_border_from_right;
    animation-duration: 0.5s;
    animation-play-state: paused;
}

@keyframes anim_border_from_right {
    0% {
        width: 0;
    }
    100% {
        width: 100%;

    }
}

.animation_border_from_bottom {
    height: 0;
    animation-name: anim_border_from_bottom;
    animation-duration: 0.5s;
    animation-play-state: paused;
}

@keyframes anim_border_from_bottom {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

/***************************************** side menu ***********************************/

.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    box-sizing: border-box;
    background: var(--light);
    z-index: 11;
}

.side-menu .side_header {
    background: var(--gray_lightter);
    padding: 10px;
    box-sizing: border-box;
}

.side-menu .side_header .site_name {
    color: #fefefe;
    font-size: 12pt;
}

.side-menu i {
    cursor: pointer;
    width: 24px;
    height: 24px;
    color: var(--gray_light);
    font-size: 14px;
    padding-right: 7px;
    padding-top: 5px;
    box-sizing: border-box;
    margin: 0 15px;
    vertical-align: top;
    background: var(--gray_lightter);
    border-radius: 50%;
    float: left;
}

.side-menu i:hover {
    background: #B2B7BD;
    color: #eeeeee;
}

.side-menu .fa-times {
    display: inline-block;
    background: var(--gray_light);
    color: var(--light);
    border-radius: 5px;
    float: none;
    margin: 0;
    vertical-align: middle;
}

.side-menu .side_logo {
    display: inline-block;
    width: calc(100% - 55px);
    font-weight: bold;
    vertical-align: middle;
    margin-right: 20px;
}

.side-menu .side_logo img {
    width: 150px;
    height: 30px;
    object-fit: cover;
    vertical-align: middle;
}

.side-menu .side_logo span {
    vertical-align: middle;
    color: var(--primary);
}

.side-menu .menu {
    height: calc(100vh - 125px);
    margin-top: 15px;
    overflow: auto;
}

.side-menu .menu a {
    display: block;
    padding: 10px;
    vertical-align: middle;
    margin-bottom: 10px;
    font-size: 10pt;
}

.side-menu .menu i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.side-menu .top_login {
    width: 100%;
    display: none;
    text-align: center;
}

/*****************************************/
.header_holder {
    width: 100%;
}

.header_content_holder {
    margin-top: 25px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
}

.header_holder .top_menu span {
    display: none;
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 25px;
    vertical-align: middle;
    cursor: pointer;
}

.top_menu {
    width: calc(50% - 105px);
    display: inline-block;
    vertical-align: top;
}

.top_login {
    width: calc(50% - 105px);
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

.top_login i {
    display: none;
}


.top_logo {
    display: inline-block;
    width: 200px;
    vertical-align: top;
    text-align: center;
    padding-bottom: 10px;
}

.top_logo img {
    width: 100%;
    height: 70px;
    object-fit: contain;
}

.top_menu a {
    padding: 5px;
    margin-left: 20px;
    color: var(--dark);
    display: inline-block;
    font-weight: 300;
    vertical-align: middle;
}

.top_menu a:hover {
    color: var(--secondary);
}

.top_login .login:hover {
    color: var(--secondary);
}

.top_login .login {
    margin-left: 20px;
}

.top_login a {
    font-weight: 300;
    display: inline-block;
    vertical-align: middle;
}

.top_login .flag {
    width: 25px;
    height: 25px;
    margin-left: 20px;
}

.top_login .flag img {
    width: 100%;
    object-fit: cover;
}

.top_login .login {
    color: var(--dark);
}

.top_login .login:hover {
    color: var(--secondary);
}

.header_img_holder {
    text-align: center;
    height: 0;
    position: relative;
    z-index: 1;
}

.header_img_holder img {
    max-width: 100%;
    object-fit: cover;
    height: 110px;
}

.main_img_holder {
    margin-top: 70px;
}

.header_holder .header_news_holder {
    background-color: var(--gray_lightter);
}

.header_holder .header_news_holder a {
    display: inline-block;
    padding: 10px 0;
    margin: 0 10px;
}

.site_name {
    width: 180px;
    position: absolute;
    margin: auto;
    top: -10px;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--light);
    font-weight: 300;
    padding-bottom: 8px;
}

.main_img_holder .site_name {
    font-size: 12pt;
    font-weight: 400;
}

.site_address {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    padding: 5px 0 0 0;
    color: var(--gray_lightter);
    font-size: 12pt;
    letter-spacing: 5pt;
}

.slider_holder {

}

.slider_holder .slider_img {
    display: block;
    width: 100%;
    height: 420px;
}

.slider_holder .slider_img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.service_holder {
    display: block;
    position: relative;
    top: -50px;
    overflow: hidden;
    padding-bottom: 15px;
}

.service_holder .service_scroller {
    display: block;
}

.service_item {
    display: inline-block;
    vertical-align: top;
    width: 160px;
    height: 220px;
    background: var(--white);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    margin: 10px 5px;
    padding: 20px 10px;
    box-sizing: border-box;
}

.service_item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.service_item .title {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 300;
    font-size: 12pt;
    margin-bottom: 8px;
}

.service_item .btn_hide {
    width: 100%;
    margin-top: 20px;
    padding: 0;
}

.service_item:hover .btn_hide {
    color: var(--white);
    background: var(--accsent);
    padding: var(--margin_s) var(--margin_m);
}

.card {
    width: 308px;
    display: inline-block;
    vertical-align: middle;
    height: 300px;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    margin-left: 15px;
    position: relative;
}

.card:last-child {
    margin-left: 0;
}

.card .card_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card .card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .card_detail {
    position: absolute;
    top: 180px;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    box-sizing: border-box;
    transition: all 0.5s ease;
}

.card:hover .card_detail {
    top: 0;
    background: #f4390499;
}

.card .card_detail .title {
    font-size: 20px;
    font-weight: 700;
}

.card .card_detail .sub_title {
    font-size: 12px;
    font-weight: 500;
    margin: 20px 0;
}

.card .card_detail .text {
    font-size: 14px;
    margin: 10px 0;
    font-weight: 500;
    line-height: 2.3em;
}

.card .card_detail .card_btn {
    display: block;
    background: #ff90007d;
    border-radius: 16px;
    padding: 10px 5px;
    margin: 0 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #f4390480;
    cursor: pointer;
}

.scroll_btn {
    position: absolute;
    width: 100%;
    height: 0;
    top: 90px;
    right: 0;
}

.scroll_btn i {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
    background: var(--secondary);
    padding-top: 8px;
    font-size: 18px;
    box-sizing: border-box;
    cursor: pointer;
}

.scroll_btn .fa-arrow-left {
    float: left;
}

.scroll_btn i:hover {
    background: var(--secondary_hover);
}

.contact {
    display: block;
    color: var(--white);
    background: var(--gray_light);
    padding: 15px;
    box-sizing: border-box;
    position: relative;
    margin: 55px auto 35px auto;
}

.contact .contact_icon {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 65px);
    text-align: right;
}

.contact .contact_icon .icon_item {
    display: inline-block;
    color: var(--white);
    text-shadow: 0 5px 1px rgba(0, 0, 0, 0.1);
    font-weight: 300;
}

.contact .contact_icon .icon_item i {
    display: inline-block;
    width: 50px;
    vertical-align: middle;
    font-size: 50px;
    margin-left: 10px;
}

.contact .contact_icon .icon_item .icon_title {
    display: inline-block;
    vertical-align: middle;
    width: 0;
    overflow: hidden;
}

.contact .contact_icon .icon_item:hover .icon_title {
    width: 100px;
}

.contact .contact_icon .icon_item .icon_title span {
    display: block;
    white-space: nowrap;
}

.contact .contact_icon .icon_item .icon_title .social_name {
    font-size: 13pt;
}

.contact .contact_phone {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 65px);
    text-align: left;
    text-shadow: 0 5px 1px rgba(0, 0, 0, 0.1);
}

.contact .contact_phone .phone {
    display: block;
    font-weight: 300;
    color: var(--white);
    font-size: 22pt;
}

.contact .contact_phone .phone:hover {
    color: var(--gray_lightter);
}

.contact img {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 100px;
}

.office_holder {
    display: block;
    overflow: hidden;
    position: relative;
    margin: 70px auto 20px auto;
}

.office_holder .scroll_btn {
    top: 40px;
}

.office_holder .item_office {
    display: inline-block;
    margin: 0 35px;
    text-align: center;
    position: relative;
}

.office_holder .item_office img {
    display: inline-block;
    width: 80px;
    height: 60px;
    object-fit: contain;
}

.office_holder .item_office span {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

.office_holder .office_scroller {
    display: block;
}

.main_form_holder {
    display: block;
    width: 100%;
    margin: 250px auto;
}

.main_form_background {
    width: 100%;
    height: 300px;
    border-radius: 50px;
    margin-top: 150px;
    background-image: linear-gradient(45deg, var(--orange), var(--accsent), var(--orange), var(--accsent), var(--orange), var(--accsent));
    position: relative;
}

.main_form_background .main_form_background_img {
    position: absolute;
    bottom: 0;
    width: 480px;
    height: 440px;
    object-fit: contain;
}

.main_form {
    width: 500px;
    position: absolute;
    top: -150px;
    left: 0;
    box-shadow: 0 0 25px rgba(0, 0, 0, .25);
    border-radius: 25px;
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
}

.main_form_title {
    display: block;
    font-size: 16pt;
    color: var(--gray);
    margin-bottom: 20px;
}

.main_form_title img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.main_form_title strong {
    color: var(--red);
    font-weight: 600;
}

.label {
    display: block;
    font-size: 11pt;
    margin: 10px 0;
}

.main_form input {
    background-color: #ffffff;
}

.main_form textarea {
    min-height: 200px;
    max-height: 200px;
    background-color: #ffffff;
    resize: unset;
}

.video_holder {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 10px;
    margin: 80px auto 120px auto;
}

.video_holder .video {
    width: 50%;
    height: 370px;
    border-radius: 32px;
    position: relative;
}

.video_holder .video .shadow_blue {
    border-radius: 32px;
}

.video_holder .video:after {
    content: " ";
    position: absolute;
    width: 90%;
    height: 420px;
    background: var(--accsent);
    border-radius: 32px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: -1;
}

.video_holder .video .btn_shadow_back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    margin: auto;
    display: grid;
    place-items: center;
    border-radius: var(--radius_oval);
    background: #ffffff22;
    backdrop-filter: blur(1px);
}

.video_holder .video .btn_shadow_back .btn_shadow_back {
    width: 150px;
    height: 150px;
    background: #ffffff33;
}

.video_holder .video .video_btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    margin: auto;
    display: grid;
    place-items: center;
    border-radius: var(--radius_oval);
    background: var(--secondary);
    color: var(--white);
    font-size: 36px;
}

.video_holder .video .cover {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    object-fit: cover;
}

.video_holder .video_detail {
    width: 46%;
    display: flex;
    flex-direction: column;
}

.video_holder .video_detail .title {
    font-size: 36px;
    font-weight: 900;
}

.video_holder .video_detail .title strong {
    color: var(--accsent);
}

.video_holder .video_detail .holder_nav {
    align-items: start;
    display: flex !important;
    flex-direction: column;
}

.video_detail .holder_nav .text {
    text-align: justify;
    line-height: 32px;
    color: var(--gray);
}

.video_detail .video_detail_result {
    width: 580px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 32px 16px -24px #2B37421A;
    display: flex !important;
    flex-direction: row;
}

.video_detail .video_detail_result .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 10px 15px 10px;
}

.video_detail .video_detail_result .item span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.5;
}

.video_detail .video_detail_result .item strong {
    font-size: 32px;
    font-weight: 900;
    color: var(--accsent);
    text-align: center;
}

.blog_holder {
    display: block;
    overflow: hidden;
    position: relative;
    padding: 15px 5px;
}

.blog_holder .blog_scroller {
    display: block;
}

.blog_holder .scroll_btn {
    top: 150px;
}

.blog_item {
    display: inline-block;
    vertical-align: top;
    width: 250px;
    background: var(--white);
    border-radius: 10px;
    text-align: right;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin: 0 5px;
    padding: 10px;
    box-sizing: border-box;
}

.blog_item_small {
    height: 310px;
}

.blog_item_small .blog_category,
.blog_item_small .blog_date {
    margin-bottom: 20px;
}

.archive .blog_item,
.archive .card {
    width: calc(25% - 15px);
    margin: 10px 5px;
}

.archive .faq_item {
    width: 100%;
    margin: 10px 0;
    height: auto;
}

.archive .card:hover .card_detail {
    margin: -35px auto;
}

.blog_item .img {
    width: 100%;
    height: 150px;
    margin-bottom: 8px;
}

.blog_item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.blog_item .title {
    display: block;
    font-weight: 300;
    font-size: 12pt;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: solid 1px var(--light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog_item .text {
    display: block;
    color: var(--gray);
    font-size: 9pt;
    text-align: justify;
    border-top: solid 1px var(--light);
    margin-top: 8px;
    padding-top: 8px;
    height: 80px;
}

.faq_item .text {
    height: auto;
}

.post .blog_date,
.blog_item .blog_date {
    float: left;
    color: var(--gray_lightter);
}

.post .blog_category,
.blog_item .blog_category {
    color: var(--gray);
    background: var(--light);
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 9pt;
}

.post .blog_category:hover,
.blog_item .blog_category:hover {
    color: var(--white);
    background: var(--gray);
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 9pt;
}

.blog_item .btn_hide {
    width: 100%;
    margin-top: 5px;
    padding: 0;
}

.blog_item:hover .btn_hide {
    color: var(--white);
    background: var(--accsent);
    padding: var(--margin_s) var(--margin_m);
}

.product_detail .progress_holder,
.blog_item .progress_holder {
    display: block;
    margin-top: 25px;
    height: 70px;
}

.product_detail .progress_holder span,
.blog_item .progress_holder span {
    display: inline-block;
    margin-bottom: 10px;
}

.product_detail .progress_holder span {
    font-weight: bold;
    font-size: 11pt;
}

.product_detail .progress_holder .progress_percent,
.blog_item .progress_holder .progress_percent {
    color: var(--primary);
    float: left;
}

.progress_bar {
    display: block;
    width: 100%;
    height: 10px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--gray_lightter);
    margin-bottom: var(--margin_m);
    text-align: left;
    border: 1px solid var(--gray_lightter);
}

.progress_bar .progress_bar_show {
    display: inline-block;
    height: 10px;
    border-radius: 15px;
    background: var(--primary);
}

.img_right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.img_left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.holder_footer {
    margin-top: 50px;
    padding: 10px 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    background: var(--gradiant_light);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);

}

.holder_footer .social_media {
    text-align: center;
    width: calc(100% - 45px);
    max-width: 1200px;
    padding: 20px 20px 50px 20px;
    box-sizing: border-box;
    border-radius: 15px;
    margin: 0 auto;
    background: var(--light);
}

.holder_footer .social_media .title {
    display: inline-block;
    font-weight: bold;
    font-size: 12pt;
    vertical-align: middle;
    width: 300px;
}

.holder_footer .social_media .social_icon {
    width: calc(100% - 170px);
    display: inline-block;
    text-align: right;
}

.holder_footer .social_media .social_icon i {
    width: 60px;
    height: 60px;
    font-size: 30px;
    vertical-align: middle;
    margin: 5px;
    display: inline-block;
    background: var(--white);
    color: var(--gray_light);
    border-radius: 15px;
    padding-top: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.holder_footer .footer_main {
    padding: 50px 0;
    box-sizing: border-box;
}

.holder_footer .footer_main .text {
    display: inline-block;
    width: calc(35% - 5px);
    text-align: justify;
    vertical-align: top;
    margin-left: 7px;
}

.holder_footer .footer_main .text span {
    display: inline-block;
    width: 80%;
    text-align: justify;
}

.holder_footer .footer_main .text img {
    display: block;
    width: 100px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.holder_footer .footer_main .menu {
    display: inline-block;
    width: calc(15% - 35px);
    margin: 0 15px;
    vertical-align: top;
    text-align: right;
}

.holder_footer .footer_main .menu_namad {
    display: inline-block;
    width: calc(35% - 35px);
}

.holder_footer .footer_main .menu_namad .address {
    display: inline-block;
    margin: 10px 0;
}

.falcon_name {
    display: block;
    font-weight: 400;
    margin: 15px 0;
}

.holder_footer .footer_main .menu a {
    display: block;
    margin: 12px 0;
    color: var(--dark);
}

.holder_footer .footer_main .menu a:hover {
    color: var(--accsent);
}

.holder_footer .footer_main .menu .title {
    font-weight: bold;
    color: var(--secondary);
    display: block;
    font-size: 10pt;
    margin: 12px 0;
}

.holder_footer .footer_main .menu .connect_detail .detail_row {
    padding: 10px 0;
    font-weight: 300;
}

.holder_footer .footer_main .menu .connect_detail .detail_row .detail_value {
    display: inline-block;
    float: left;
    margin: 0;
}

.holder_footer .connect_detail .namad {
    display: block;
    margin: 20px;
    text-align: center;
}

.holder_footer .connect_detail .namad img {
    display: inline-block;
    margin: 5px;
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.holder_footer .copy_right {
    text-align: left;
}

.holder_footer .copy_right a {
    color: var(--white);
    background: var(--secondary);
    border-radius: 10px;
    padding: 2px 8px;
    box-sizing: border-box;
}

.holder_footer .copy_right .copyright {
    display: inline-block;
    margin-right: 15px;
}

.holder_footer .copy_right .copyright a {
    color: var(--secondary);
    background: transparent;
    padding: 0;
}

.up_btn {
    display: block;
    position: absolute;
    bottom: 20px;
    padding: 0 !important;
}

.up_btn i {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
    background: var(--secondary);
    padding-top: 14px;
    font-size: 18px;
    box-sizing: border-box;
    cursor: pointer;
}

.up_btn i:hover {
    background: var(--secondary_hover);
}

.page_title {
    margin: 65px auto 25px auto;
    text-align: center;
}

.page_title .breadcrumb {
    margin-bottom: 20px;
}

.page_title .breadcrumb i {
    vertical-align: middle;
    margin: 0 10px;
}

.page_title .breadcrumb .selected {
    font-weight: bold;
}

.page_title h1 {
    display: block;
    margin-bottom: 25px;
    font-size: 16pt;
    font-weight: bold;
}

.page_title .search {
    display: inline-block;
    margin-bottom: 25px;
    background: var(--accsent);
    border-radius: 10px;
    padding: 10px 15px;
}

.page_title .search input {
    display: inline-block;
    vertical-align: middle;
    width: 300px;
    border: none;
    box-shadow: none;
    background: transparent;
    margin-bottom: 0;
    color: var(--white);
}

.page_title .search input:focus {
    width: 350px;
}

.page_title .search i {
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    text-align: left;
    font-size: 20px;
    color: var(--white);
    cursor: pointer;
}

.page_title .search i:hover {
    font-size: 25px;
}

.page_title .category a {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    border: solid 1px;
    padding: 5px 15px;
    border-radius: 30px;
    cursor: pointer;
}

.page_title .category .selected {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.paging {
    text-align: center;
    margin-top: var(--margin_x2);
}

.paging a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding-top: var(--margin_m);
    margin: 0 var(--margin_s);
    background: var(--gray_lightter);
    box-sizing: border-box;
    border-radius: 15px;
    color: var(--gray_light);
}

.paging a:hover {
    color: var(--secondary);
}

.paging .page_selected {
    background: var(--secondary);
    color: var(--white);
}

.post {
    display: block;
    width: calc(100% - 20px);
    max-width: 900px;
    margin: 25px auto;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    box-sizing: border-box;
}

.product {
    max-width: 1260px;
}

.post .img_post {
    display: block;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.post .text {
    display: block;
    width: 100%;
    border-top: solid 1px var(--light);
    margin-top: 8px;
    padding-top: 8px;
    line-height: 180%;
}

.post .text img,
.post .text video,
.post .text audio,
.post .text .aparat {
    display: block;
    width: calc(100% - 20px);
    max-width: 700px;
    margin: 10px auto;
    border-radius: 20px;
}

.post .text .aparat {
    min-height: 500px;
    margin: 10px auto;
}

.post .text .aparat iframe {
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.post .text ul,
.post .text ol {
    display: block;
    margin-right: 25px;
}

.post .text ul li,
.post .text ol li {
    line-height: 200%;
}

.post .tags {
    display: block;
    margin-top: 15px;
}

.post .tags .blog_category {
    margin: 5px;
}

.product_img {
    display: inline-block;
    vertical-align: top;
    width: 400px;
    margin: 15px 0;
}

.product_img .big_img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
}

.product_img .big_aparat div {
    margin-top: 85px;
}

.product_img .scroll_small_img {
    margin-top: 10px;
}

.product_img .scroll_small_img img {
    display: inline-block;
    vertical-align: top;
    width: 85px;
    height: 85px;
    border-radius: 10px;
    object-fit: cover;
    margin: 0 5px;
    border: solid 1px transparent;
    background: #fff;
    cursor: pointer;
}

.product_img .scroll_small_img span {
    display: inline-block;
    vertical-align: top;
    width: 85px;
    height: 85px;
    border-radius: 10px;
    margin: 0 5px;
    color: #807272;
    text-align: center;
    border: solid 1px #807272;
    background: #fff;
    cursor: pointer;
}

.product_img .scroll_small_img span i {
    font-size: 22px;
    margin-top: 30px;
}

.product_img .scroll_small_img .selected {
    color: var(--secondary);
    border: solid 1px var(--secondary);
}

.product_img .arrow {
    display: inline-block;
    vertical-align: top;
    width: 30px;
    height: 85px;
    background: #ffffff;
    border-radius: 10px;
    color: var(--secondary);
    font-size: 20px;
    text-align: center;
    padding-top: 32px;
    box-sizing: border-box;
    cursor: pointer;
}

.product_img .small_img_holder {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 70px);
    overflow: hidden;
}

.holder_items {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 415px);
    margin: 30px 10px 0 0;
}

.product_title,
.holder_items h1 {
    display: block;
    font-size: 12pt;
    margin-bottom: 10px;
    color: #000000;
    line-height: 180%;
}

.product_title {
    display: none;
    font-weight: bold;
    margin-top: 15px;
}

.holder_items .product_detail {
    display: block;
    padding-left: 20px;
    box-sizing: border-box;
}

.holder_items .title_holder .title_en {
    display: block;
    margin-bottom: 25px;
    border-bottom: solid 1px #807272;
    height: 7px;
}

.holder_items .title_holder .title_en span {
    display: inline-block;
    padding: 0 5px;
    font-size: 8pt;
    color: #807272;
    background: #ecf0f1;
}

.holder_items .title_holder .product_score {
    display: block;
    font-size: 9pt;
    margin-bottom: 25px;
    color: #E74C3C;
}

.attributes {
    display: block;
    margin-top: 20px;
}

.attributes .item_title {
    display: block;
    font-size: 11pt;
    font-weight: bold;
    margin-bottom: 15px;
}

.attributes .attributes_item {
    display: inline-block;
    width: calc(50% - 17px);
    border-radius: 10px;
    background: var(--light);
    padding: 20px;
    box-sizing: border-box;
    margin: 6px;
}

.attributes .attributes_item span {
    display: block;
    font-size: 10pt;
    font-weight: bold;
}

.attributes .attributes_item span:first-child {
    margin-bottom: 10px;
    font-size: 9pt;
    font-weight: normal;
    color: #807272;
}

/************************************************** responsive ***************************/

@media screen and (max-width: 900px) {
    .top_menu a {
        display: none;
    }

    .header_holder .top_menu span {
        display: inline-block;
        padding: 0;
    }

    .header_holder .top_login i {
        display: inline-block;
    }

    .header_holder .top_login span {
        display: none;
    }

    .header_holder .top_login .login {
        margin-left: 5px;
    }

    .header_holder .top_login .btn_secondary {
        padding: 5px;
    }

    .archive .blog_item,
    .archive .card {
        width: calc(33% - 15px);
    }

    .post .product_img {
        display: block;
        width: 100%;
    }

    .post .holder_items {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .service_holder,
    .blog_holder,
    .office_holder {
        overflow: auto;
    }

    .office_holder .scroll_btn,
    .scroll_btn {
        display: none;
    }

    .holder_footer .footer_main .text,
    .holder_footer .footer_main .menu_namad {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .holder_footer .footer_main .text span {
        width: 100%;
    }

    .holder_footer .footer_main .menu {
        width: calc(50% - 5px);
        margin: 10px 0;
    }

    .contact .contact_icon {
        display: block;
        width: calc(100% - 125px);
        margin-bottom: 15px;
    }

    .contact .contact_phone {
        display: block;
        width: calc(100% - 125px);
    }

    .archive .blog_item,
    .archive .card {
        width: calc(50% - 15px);
    }

    .main_form_holder {
        margin: 50px 0;
    }

    .main_form_background .main_form_background_img {
        display: none;
    }

    .main_form_background {
        position: unset;
        height: unset;
        margin-top: 0;
    }

    .main_form {
        position: unset;
        display: block;
        width: 100%;
    }

    .video_holder {
        flex-direction: column;
    }

    .video_holder .video {
        width: 100%;
    }

    .video_holder .video_detail {
        width: 100%;
        margin-top: 35px;
    }

    .video_detail .video_detail_result {
        width: 100%;
        flex-wrap: wrap;
    }

    .video_detail .video_detail_result .item {
        width: calc(50% - 20px);
        align-items: center;
    }
}

@media screen and (max-width: 500px) {
    .header_holder .top_login .login,
    .header_holder .top_login .btn_secondary {
        display: none;
    }

    .header_holder .top_login .flag {
        margin-left: 0;
    }

    .side-menu .top_login {
        display: inline-block;
    }

    .holder_footer .footer_main .menu {
        display: block;
        width: 100%;
    }

    .contact .contact_icon {
        width: 100%;
    }

    .archive .blog_item,
    .archive .card {
        width: 100%;
        margin: 10px 0;
    }

    .page_title .search input {
        width: 200px;
    }

    .page_title .search input:focus {
        width: 250px;
    }

    .post .attributes .attributes_item {
        display: block;
        width: 100%;
    }
}