:root {
    --base_color: #ff8d52;
}
.menu li.menuClass1>a>img, .menu li.menuClass>a>img {
    display: none;
}
@media screen  and (max-width:768px) {
    .menuClass1 ul {
        display: none;
    }
}
@media screen  and (max-width:375px) {
    .showIMG {
        float: unset;
        width: auto;
        width: 338px !important;
    }
}
@media screen  and (max-width:320px) {
    .showIMG {
        float: unset;
        width: auto;
        width: 290px !important;
    }
}
.menuClass1 img, .menuClass1 .menuTooltipe {
    display: none;
}
 i.caret {
    display: none;
}
/* majol */
.h_50 {
    height: 100%;
}

.padding_0 {
    padding: 0;
}

.w_100 {
    float: right;
    width: 100%;
}

.margin_0 {
    margin: 0;
}

.height_100 {
    height: 100%;
}

.height_50 {
    height: 50%;
}

.width_100 {
    width: 100%;
}

/* loading */
.loading {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999999;
}

.cssload-triangle {
    position: absolute;
    left: 0;
    right: 0;
    width: 0px;
    height: 0px;
    margin: -24px auto;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-bottom: 42px solid rgb(210, 188, 53);
    transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 50% 90%;
    -o-transform-origin: 50% 90%;
    -ms-transform-origin: 50% 90%;
    -webkit-transform-origin: 50% 90%;
    -moz-transform-origin: 50% 90%;
    animation: cssload-spin 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -o-animation: cssload-spin 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -ms-animation: cssload-spin 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -webkit-animation: cssload-spin 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -moz-animation: cssload-spin 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
}

.cssload-triangle:after, .cssload-triangle:before {
    content: "";
    position: absolute;
    top: 42px;
    width: 0;
    height: 0;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-bottom: 42px solid rgb(210, 188, 53);
}

.cssload-triangle:after {
    left: 0px;
    border-bottom: 42px solid rgb(219, 202, 95);
    animation: cssload-shiftright 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -o-animation: cssload-shiftright 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -ms-animation: cssload-shiftright 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -webkit-animation: cssload-shiftright 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -moz-animation: cssload-shiftright 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
}

.cssload-triangle:before {
    left: -49px;
    border-bottom: 42px solid rgb(173, 154, 39);
    animation: cssload-shiftleft 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -o-animation: cssload-shiftleft 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -ms-animation: cssload-shiftleft 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -webkit-animation: cssload-shiftleft 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
    -moz-animation: cssload-shiftleft 1.15s cubic-bezier(0.56, 1.55, 0.51, 0.74) infinite;
}

@keyframes cssload-spin {
    0% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(0.5) translateY(19px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

@-o-keyframes cssload-spin {
    0% {
        -o-transform: scale(1) translateY(0);
    }
    50% {
        -o-transform: scale(0.5) translateY(19px);
    }
    100% {
        -o-transform: scale(1) translateY(0);
    }
}

@-ms-keyframes cssload-spin {
    0% {
        -ms-transform: scale(1) translateY(0);
    }
    50% {
        -ms-transform: scale(0.5) translateY(19px);
    }
    100% {
        -ms-transform: scale(1) translateY(0);
    }
}

@-webkit-keyframes cssload-spin {
    0% {
        -webkit-transform: scale(1) translateY(0);
    }
    50% {
        -webkit-transform: scale(0.5) translateY(19px);
    }
    100% {
        -webkit-transform: scale(1) translateY(0);
    }
}

@-moz-keyframes cssload-spin {
    0% {
        -moz-transform: scale(1) translateY(0);
    }
    50% {
        -moz-transform: scale(0.5) translateY(19px);
    }
    100% {
        -moz-transform: scale(1) translateY(0);
    }
}

@keyframes cssload-shiftleft {
    0% {
        transform: translate3drgb(0, 0, 0);
    }
    50% {
        transform: translate3d(24px, -42px, 0);
    }
    100% {
        transform: translate3drgb(0, 0, 0);
    }
}

@-o-keyframes cssload-shiftleft {
    0% {
        -o-transform: translate3drgb(0, 0, 0);
    }
    50% {
        -o-transform: translate3d(24px, -42px, 0);
    }
    100% {
        -o-transform: translate3drgb(0, 0, 0);
    }
}

@-ms-keyframes cssload-shiftleft {
    0% {
        -ms-transform: translate3drgb(0, 0, 0);
    }
    50% {
        -ms-transform: translate3d(24px, -42px, 0);
    }
    100% {
        -ms-transform: translate3drgb(0, 0, 0);
    }
}

@-webkit-keyframes cssload-shiftleft {
    0% {
        -webkit-transform: translate3drgb(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(24px, -42px, 0);
    }
    100% {
        -webkit-transform: translate3drgb(0, 0, 0);
    }
}

@-moz-keyframes cssload-shiftleft {
    0% {
        -moz-transform: translate3drgb(0, 0, 0);
    }
    50% {
        -moz-transform: translate3d(24px, -42px, 0);
    }
    100% {
        -moz-transform: translate3drgb(0, 0, 0);
    }
}

@keyframes cssload-shiftright {
    0% {
        transform: translate3drgb(0, 0, 0);
    }
    50% {
        transform: translate3d(-24px, -42px, 0);
    }
    100% {
        transform: translate3drgb(0, 0, 0);
    }
}

@-o-keyframes cssload-shiftright {
    0% {
        -o-transform: translate3drgb(0, 0, 0);
    }
    50% {
        -o-transform: translate3d(-24px, -42px, 0);
    }
    100% {
        -o-transform: translate3drgb(0, 0, 0);
    }
}

@-ms-keyframes cssload-shiftright {
    0% {
        -ms-transform: translate3drgb(0, 0, 0);
    }
    50% {
        -ms-transform: translate3d(-24px, -42px, 0);
    }
    100% {
        -ms-transform: translate3drgb(0, 0, 0);
    }
}

@-webkit-keyframes cssload-shiftright {
    0% {
        -webkit-transform: translate3drgb(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(-24px, -42px, 0);
    }
    100% {
        -webkit-transform: translate3drgb(0, 0, 0);
    }
}

@-moz-keyframes cssload-shiftright {
    0% {
        -moz-transform: translate3drgb(0, 0, 0);
    }
    50% {
        -moz-transform: translate3d(-24px, -42px, 0);
    }
    100% {
        -moz-transform: translate3drgb(0, 0, 0);
    }
}

/* header */
header {
    background: white;
    width: 100%; /* padding: 0 10px; */
    height: 175px;
    border-bottom: 1px solid #eeeeee;
    z-index: 99999;
}

header .right {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-left: 1px solid #eeeeee;
}

header .left .top, header .left .bottom {
    display: inline-flex;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    align-items: center;
}

header .left .top > ul {
    display: inline-flex;
}

header .left .bottom {
    border-bottom: none;
}

header .left .top ul {
    height: 100%;
    margin: 0;
}

header .left .top li {
    height: 100%;
}

header .left .top li > a {
    color: #000000;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    transition: all 0.4s linear;
    font-weight: bold;
}

header .left .top li > a:hover {
    border-bottom: 3px solid var(--base_color);
}

header .left .top .action span {
    padding: 0 20px;
}

header .left .top .action span a {
    display: inline-flex;
    align-items: center;
    color: #000000;
    transition: all 0.4s linear;
    padding-right: 10px;
    font-weight: bold;
}

header .left .top .action span a:hover {
    color: var(--base_color);
}

header .left .bottom {
}

header .left .bottom > ul {
    display: inline-flex;
    height: 100%;
    margin-bottom: 0;
}

header .left .bottom > ul > li {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

header .left .bottom > ul > li > .share {
    font-size: 40px;
}

header .left .bottom > ul > li > .share > i {
    padding-left: 0;
}

header .left .bottom > ul > li > .bottom_right {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 40px;
}

header .left .bottom > ul > li > .bottom_left {
    height: 100%;
    display: block;
    padding: 0 10px;
    line-height: 25px;
    padding-top: 19px;
}

header .left .bottom > ul > li > .bottom_left > .head {
    font-size: 16px;
    font-weight: bold;
}

header .left .bottom > ul > li > .bottom_left > p {
    font-size: 12px;
}

header .left .bottom > ul > li > a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--base_color);
    transition: all 0.4s linear; /* padding: 0 20px; */
    width: 100%;
    border-right: 1px solid #eeeeee;
    border-left: none;
}

header .left .bottom > ul > li:last-child a {
    border-left: 1px solid #eeeeee;
}

header .left .bottom > ul > li > a:hover {
    background: var(--base_color);
    color: white;
}

header .left .bottom > ul > li > a > i {
    padding-left: 10px;
}

header .left .bottom > ul > li > .share:hover i {
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Safari 3-8 */
    transform: rotate(90deg);
    transition: all 0.4s linear;
}

/* slider */
#slider {
    /*    margin-top: 169px;*/
    height: max-content;
    position: relative;
}

#slider .swiper-container {
    height: 100%;
}

#slider img {
    width: 100%;
    height: auto;
    max-height: 100%;
}

#index_slider_next, #index_slider_prev {
    z-index: 999999999999;
    position: absolute;
    top: 50%;
    color: white;
    font-size: 30px;
    border: 2px solid #b7b7b7;
    padding: 20px;
    border-radius: 50%;
    cursor: pointer;
}

#index_slider_next {
    right: -100px;
}

#index_slider_prev {
    left: -100px;
}

#index_slider_next:hover, #index_slider_prev:hover {
    border-color: white;
    transition: all 0.3s linear;
}

/* box_one */
#box_one {
}

#box_one .box_block {
    padding: 50px 20px;
    flex-direction: column;
    color: #444444;
}

#box_one .box_block .number {
    font-size: 72px;
    color: var(--base_color);
}

#box_one .box_block .box_content {
    padding-top: 30px;
}

#box_one .box_block_parent:hover .box_content {
    padding-top: 0;
    transition: all 0.4s ease;
}

#box_one .box_block_parent:not(:hover) .box_content {
    transition: all 0.4s ease;
}

#box_one .box_block h5 {
    font-size: 16px;
    line-height: 25px;
    color: #444444;
}

#box_one .box_block img {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

#box_one .box_block a {
    color: #b7b7b7;
    font-size: 18px;
    margin-right: -30px;
}

#box_one .box_block a:before {
    content: "\e879";
    font-size: 16px;
    margin-right: 7px;
    font-family: 'Linearicons-Free';
    color: #151515;
    transition: inherit;
    opacity: 0;
    padding-left: 10px;
}

#box_one .box_block a:hover {
    color: #5ac6e1;
    margin-right: -20px;
    transition: all 0.3s ease;
}

#box_one .box_block a:hover:before {
    padding-right: 10px;
    opacity: 1;
    transition: all 0.3s ease;
}

#box_one .box_block a:not(:hover):before {
    transition: all 0.3s ease;
}

/* box_two*/
#box_two {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/box_two_left.jpg) center no-repeat;
   /* height: 70vh;*/
    width: 100%;
      /* padding: 50px 0; */
    background-size: cover;
    position: relative;
} 
@media screen and (min-width:420px) and (max-width:450px) {
    .site_title{
        margin-right: 65px;
    }
}
@media screen and (min-width:350px) and (max-width:380px) {
    .site_title{
        margin-right: 33px;
    }
}
@media screen and (min-width:300px) and (max-width:320px) {
    .site_title{
        margin-right: 13px
    }
}
#box_two .left_content {
    background: url(../images/box_two_left.jpg) center no-repeat;
    height: 100%;
    width: 100%;
}

#box_two .left_content img {
    width: 100%;
}

#box_two .link-play-creative {
    position: absolute;
    overflow: hidden;
    top: 10%;
    right: 10%;
    bottom: 25px;
    padding: 10px;
    color: #ffffff;
    z-index: 1;
}

#box_two .link-play-creative-decor {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all .3s ease;
}

.position-static {
    padding: 50px;
}

.desktop .oh-desktop {
    position: relative;
    overflow: hidden;
}

.d-inline-block {
    display: inline-block !important;
}

.card-corporate {
    text-align: left;
}

 html[lang='fa'] .card-custom {
    display: block;
    margin: 0;
    background: inherit;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: right;
    margin-bottom: 10px;
}

.card_title_custom {
    text-decoration: none !important;
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.card-custom .card-header {
    padding: 0;
    border-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.card-corporate .card-title {
    margin-bottom: 0;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.card-corporate .card-title a.collapsed {
    border-radius: 0;
}

.card-corporate-2 .card-title a {
    background: #ffffff;
}

.card-corporate .card-title a {
    position: relative;
    z-index: 1;
    padding: 17px 20px 15px 48px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.25;
    color: #2c343b;
    background: #f5f5f5;
    border-radius: 0 0 0 0;
    transition: .3s all ease;
}

.card-custom a {
    display: block;
}

.card-corporate .card-title a.collapsed::before {
    width: 0;
}

.card-corporate-2 .card-title a::before {
    background: var(--base_color);
}

.card-corporate .card-title a::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    height: 2px;
    width: 100%;
    background: var(--base_color);
    transition: all .3s ease;
}

.card-corporate .card-title a.collapsed .card-arrow {
    border-radius: 0 0 0 0;
}

.card-corporate .card-arrow {
    position: absolute;
    top: 40%;
    bottom: 0;
    right: 2px;
    z-index: 2;
    color: var(--base_color);
    width: 44px;
    background: transparent;
    border-radius: 0 0 0 0;
    transition: .33s all ease;
}

/* box_three*/


#box_three h3 {
    text-align: center;
    /* margin-bottom: 50px; */
    font-size: 30px;
    /* margin-top: 50px; */
}

#box_three .thumbnail {
    border: none;
    position: relative;
}

.thumbnail-classic {
    text-align: center;
}

.thumbnail-lg {
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
}

#box_three .thumbnail:hover .thumbnail-classic-caption {
    transform: translate3d(0, 0px, 0);
}

.thumbnail-classic-figure {
    display: block;
    overflow: hidden;
}

#box_three .thumbnail:hover .thumbnail-classic-figure img {
    transform: scale(1);
}

.thumbnail-classic-figure img {
    transform: scale(1.1);
    width: 100%;
    transition: all .3s ease;
    will-change: transform;
}

.thumbnail-classic-title > a {
    font-size: 20px;
    color: #000;
    transition: 0.3s ease;
}

.thumbnail-classic-title > a:hover {
    color: var(--base_color);
}

.thumbnail-classic-caption {
    padding: 20px 15px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
    transform: translate3d(0, -20px, 0);
    will-change: transform;
    transition: all .3s ease;
}

.thumbnail-classic-time {
    color: #5ac6e1;
}

.content-original, .content-dubbed {
    transition: transform .3s, opacity .3s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.content-dubbed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translate3d(0, 20%, 0);
    pointer-events: none;
}

.button-winona:hover .content-original {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
}

.button-winona:hover .content-dubbed {
    transform: translate3d(0, 0%, 0);
    opacity: 1;
}

.button {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 17px 40px;
    font-size: 14px;
    line-height: 1.85;
    min-width: 200px;
    border: none; /* font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;*/
    font-weight: 900; /*letter-spacing: 0.2em;*/
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    user-select: none;
    transition: all .25s ease-in-out;
}

.button-lg {
    padding: 20px 45px;
    font-size: 14px;
    line-height: 1.85;
    min-width: 230px;
}

.button-default-outline-4:hover, .button-default-outline-4:active {
    color: #5ac6e1;
    background-color: transparent;
    border-color: rgba(90, 198, 225, 0.3);
}

.button-default-outline-4, .button-default-outline-4:focus {
    color: #151515;
    background-color: transparent;
    border-color: #e1e1e1;
}

.button-outline::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid;
    transition: all .25s ease-in-out;
    pointer-events: none;
    z-index: -1;
}

.button-block {
    display: block;
    width: 100%;
}

.button-winona {
    border: 1px solid #b7b7b7;
}

.button-winona:hover {
    border-color: #5ac6e1;
}

/* box_two*/
#box_four {
    margin-top: 80px;
    height: 70vh;
    width: 100%;
    position: relative;
}

#box_four .left_content img {
    width: 100%;
}

#box_four .link-play-creative {
    position: absolute;
    overflow: hidden;
    top: 10%;
    padding: 0 40px;
    color: #ffffff;
    z-index: 1;
    width: 100%;
}

.link-play-creative-row:first-child {
    border-bottom: 1px solid #b7b7b7;
}

.block_content {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

.border_left {
    border-left: 1px solid #b7b7b7;
}

.border_bottom {
    border-bottom: 1px solid #b7b7b7;
}

.link-play-creative-row:last-child > .border_bottom {
    border-bottom: none;
}

#box_four .button-winona {
    border: 2px solid #ffffff;
    color: white;
}

#box_four .button-winona:hover {
    border-color: var(--base_color);
    color: white;
    background-color: var(--base_color);
}

.padding_20 {
    padding: 20px;
}

.padding_10 {
    padding: 10px;
}

.font_30 {
    font-size: 30px;
}

.font_15 {
    font-size: 15px;
}

.flex_direction_column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.align_txt_right {
    text-align: right;
}

/* box_five*/
#box_five {
    padding-top: 50px;
}
@media screen and (max-width:425px) {
    #box_five h3 {
        padding: 0 10px;
    }
}
#box_five h3 {
    text-align: center;
    /* margin-bottom: 50px; */
    /* display: flex; */
    font-size: 21px;
    /* justify-content: center; */
    /* align-items: center; */
    /* /* margin-top: 50px; */
}

#box_five .swiper-slide {
    height: 400px;
}

#box_five .team_block {
    float: right;
    width: 100%;
    box-shadow: 0 0 15px #b7b7b759;
    border-radius: 10px;
    padding: 10px;
}
@media screen and (max-width:768px) {
    .search-box button {
        background: none;
        color: #4a3d3d;
        display: block;
        font-weight: normal;
        position: absolute;
  left: 38%;
        padding: 0;
        border-radius: 50px;
    }
}
@media screen and (max-width:425px) {
    .search-box button {
        left: 28%;
    }
}
#box_five .team_block .team_text > p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    line-height: 35px;
    font-size: 14px;
    opacity: 0.9;
    text-align: right;

}

#box_five .team_block .team_text > h4 {
    line-height: 50px;
}

#box_five .team_block .team_text > span {
    display: block;
    color: var(--base_color);
    line-height: 30px;
    bottom: 20px;
    position: absolute;
}

#box_five .team_block .team_image > img {
    border-radius: 10px;
    max-height: 100%;
}

#box_five .swiper-pagination { /*    position: relative;        margin-top: 50px;*/
}

#box_five .swiper-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    display: inline-block;
    border-radius: 0;
    background: #000;
    opacity: .2;
}

#box_five .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--base_color);
    opacity: 1;
}

#box_five .swiper-wrapper {
    padding-top: 20px;
    padding-bottom: 50px;
    height: max-content;
    float: right;
}

.admin_note_title {
    margin-bottom: 25px; /* text-align: center; */
    font-size: 20px;
}

.card-body {
    font-size: 15px;
    line-height: 35px;
    opacity: 0.8;
}

.link-play-creative-title {
    width: 50%;
    line-height: 35px;
    opacity: 0.9;
    font-size: 15px;
    text-align: justify;
}

.product_vitrin_item {
    height: 300px;
    margin-bottom: 100px;
}

.product_vitrin_item .oh-desktop {
    height: 100%
}

.product_vitrin_item .oh-desktop .thumbnail {
    height: 100%
}

.product_vitrin_item .oh-desktop .thumbnail .thumbnail-classic-figure {
    height: 100%
}

.product_vitrin_item .oh-desktop .thumbnail .thumbnail-classic-figure img {
    width: auto;
    height: 100%;
}

.h_100 {
    height: 100%;
}

.team_block .pull-right {
    width: 50%;
}

.team_block .pull-left {
    width: 50%;
    padding-right: 15px;
    height: 50%;
}

.team_block img {
    max-height: 100%;
}

#news_title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
    margin-top: 50px;
}

#news_box {
    margin: 80px 0;
}

#news_box .swiper-slide {
    height: 380px;
}

#news_box .swiper-slide .new_box_item {
    height: 100%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

#news_box .swiper-slide img {
    height: 100%;
    transition: all 0.5s;
    width: 100%;
}

#news_box .swiper-slide:hover img {
    transition: all 0.5s;
    transform: scale(1.1);
}

#news_box .swiper-slide .date {
    z-index: 888;
    position: absolute;
    left: 0;
    top: 17%;
    left: 33px;
    background-color: #5ac6e1;
    font-size: 13px;
    color: #fff;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    border-radius: 50px;
    padding-top: 8px;
    padding-right: 10px;
    padding-left: 10px;
}

#news_box .swiper-slide .title {
    z-index: 888;
    color: #fff;
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 35px;
}

#news_box .swiper-slide .title:hover {
    text-decoration: underline;
}

#main_section {
    margin-bottom: 30px;
    float: right;
    width: 100%;
}

#inner_page_main .row {
    padding-top: 30px;
    padding-bottom: 30px;
}

#news_box .swiper-wrapper {
    padding-top: 20px;
    padding-bottom: 50px;
    height: max-content;
    float: right;
}

.header_right_col {
    border-left: 1px solid #eee;
}

.header_right_col .header_logo {
    width: 100%;
    height: 100%;
}

.header_right_col .header_logo a {
    display: flex;
    align-items: center;
 
    width: 100%;

}

@media screen and (min-width:800px) {
    .header_right_col .header_logo a{
       justify-content: center;    
}
}

.header_top {
    height: 50%;
    border-bottom: 1px solid #eee;
}

.header_bottom {
    height: 50%;
}

header.active {
    position: fixed;
    box-shadow: 0 0 10px black;
    height: 80px;
}

header.active .header_bottom {
    display: none;
}

header.active .header_top {
    height: 100%;
}

.logo {
    position: static;
}

#menu_md > ul {
    height: 100%;
    float: right;
    width: 100%;
}

#menu_md > ul > li {
    float: right;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid transparent;
    transition: all 0.54s;
    /* position: relative; */
}

#menu_md > ul > li > a {
    color: #2c343b;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 14px;

}

#menu_md > ul > li:hover {
    border-bottom: 3px solid var(--base_color);
    transition: all 0.54s;
    opacity: 1;
}

#menu_md > ul > li:first-child {
    border-bottom: 3px solid var(--base_color);
}

#menu_md > ul > li > ul {
    position: absolute;
    display: none;
    top: 104%;
    width: max-content;
    /* right: 0; */
    background-color: #fff;
    border-bottom: 4px solid var(--base_color);
    z-index: 99999;
    left: 0;
    margin: auto;
    box-shadow: 1px 2px 5px #0000004d;
}

#menu_md > ul > li > ul > li {
    border-bottom: 1px solid #eee;
}
#menu_md > ul > li > ul {
   display: none;
}
#menu_md > ul > li > ul:hover {
    /* display: block !important; */
 }
 #menu_md > ul > li > ul >  li >  ul {
    display: none;
 }
#menu_md > ul > li > ul > li a {
    color: #2c343b;
    font-size: 15px;
    transition: all 0.5s;
    display: flex !important;
    justify-content: space-between;
    align-items: center;    
}

#menu_md > ul > li > ul > li  a > span:hover {
display: block  ;
   }
   #menu_md > ul > li > ul > li > span {
     display:none
}
#menu_md > ul > li > ul > li a:hover {
    /* background-color: #eee; */
    transition: all 0.5s;
    display: block;
}
#menu_md > ul > li > ul> li:hover  {
    background-color: #eee;
  
}
.header_about {
    float: right;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    flex-direction: column;

}

.header_about li {
    float: right;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-left: 15px;
}

.header_about li i {
    margin-left: 10px;
    font-size: 20px;
    opacity: 0.7;
}

.header_item {
    float: right;
    height: 100%;
    display: flex;
    padding: 5px;
}

.header_item .icon_div {
    float: right;
    height: 100%;
}

.header_item .icon_text_div {
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header_item .icon_text_div .icon_text_div_title {
    display: block;
    width: 100%;
    font-size: 15px;
    margin-bottom: 10px;
}

.header_item .icon_text_div .icon_text_div_sub_title {
    font-size: 13px;
    opacity: 0.9;
    display: block;
}

.header_btn .fa-share-alt {
    font-size: 36px;
    height: 100%;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s;
}

.header_btn:hover .fa-share-alt {
    transition: all 0.5s;
    transform: rotate(90deg);
    color: #fff;
}

.header_btn:hover {
    background-color: var(--base_color);
}

.header_btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding: 0 12px;
    cursor: pointer;

}

.header_btn2 a {
    color: #000;
}

.header_btn2 .fa-download {
    margin-left: 10px;
}

.header_btn2:hover {
    background-color: var(--base_color);

}

.header_btn2:hover a {
    color: #fff;
}

.header_btn2:hover .fa-download {
    color: #fff;
}

.header_bottom > div {
    border-left: 1px solid #eee;
}

.socal_links_div {
    width: 100%;
    position: absolute;
    z-index: 999;
    height: 200px;
    background-color: #fff;
    border: 1px solid #ccc;
    top: 0;
    right: 0;
    display: none;
    left: 0;
}

.socal_links_div .socal_links {
    height: 100%;
    width: 100%;
}

.socal_links_div .socal_links li {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    background-color: #ccc;
    color: #fff;
    cursor: pointer;
}

.socal_links_div .socal_links li a {
    color: #fff;
}

.socal_links_div .socal_links li:hover {
    background-color: #0C1021;
}

.header_btn2 i {
    margin-left: 10px;
}

footer {
    background-color: #3f4959;
    padding: 30px 0;
    min-height: 400px;
}

body[lang='fa'] footer .logo_footer {
    display: block;
    text-align: right;
}
body[lang='en'] footer .logo_footer{
    display: block;
    text-align: left;
}
footer .logo_footer img {
    filter: invert(100%);
}

footer .footer_title {
    font-size: 17px;
    color: #fff;
    margin-bottom: 20px;
}

footer .footer_value {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 35px;
    opacity: 0.7;
}

footer .stat_list {
    float: right;
    width: 100%;
}

footer .stat_list li {
    float: right;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px dashed #ffffff40;
}

footer .stat_list li b {
    float: right;
    width: 49%;
    color: #fff;
    opacity: 0.7;
    font-size: 13px;
}

footer .stat_list li span {
    float: right;
    width: 49%;
    opacity: 0.7;
    color: #fff;
    font-size: 13px;
    text-align: left;
}

footer .stat_list li i {
    float: right;
    opacity: 0.7;
    color: #fff;
}

p.footer_text {
    text-align: center;
    color: #fff;
    padding-top: 30px;
    opacity: 0.5;
    font-size: 13px;
}

#slider .slider_title {
    position: absolute;
    width: max-content;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 30px;
    margin: auto;
    top: 18%;
    text-shadow: 0 0 19px black;
}

#slider .slider_text {
    position: absolute;
    width: max-content;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 25px;
    margin: auto;
    top: 30%;
    text-shadow: 0 0 19px black;
}

#slider a {
    width: max-content;
    position: absolute;
    bottom: 22%;
    left: 0;
    right: 0;
    padding: 21px 24px;
    text-align: center;
    color: #fff;
    background-color: var(--base_color);
    margin: auto;
}

#slider a {
    width: max-content;
    position: absolute;
    bottom: 22%;
    left: 0;
    right: 0;
    padding: 21px 24px;
    text-align: center;
    color: #fff;
    background-color: var(--base_color);
    margin: auto;
}

#slider a:hover {
    background-color: #5ac6e1;
}

.product_category {
    height: 650px;
}

.product_category .swiper-slide {
    border-left: 1px solid #b7b7b7;
    height: 80%
}

#box_one .swiper-slide:first-child {
    border-right: 1px solid #b7b7b7;
}

#slider {
    box-shadow: none;
    height: max-content;
}

@media only screen and (max-width: 450px) {
    header {

        width: 100%;
        height: 60px;
        border-bottom: 1px solid #eeeeee;
        z-index: 99999;
        position: fixed;
        box-shadow: 0 0 10px black;
    }

    .header_right_col .header_logo {
        width: 100%;
        height: 100%;
        padding: 5px 0;
    }

    .header_right_col .header_logo img {
        max-height: 95%;
        /*position: absolute;
        right: 5%;*/
    }

    .site_title{
        font-size: 15px;
        color: #444;
        font-weight: bold;
        /* margin-right: 13px; */
    }

    .header_right_col {
        position: relative;
        z-index: 999999;
        background-color: #fff;
        box-shadow: 0 0 7px black;
    }

    /* #show_menu {
        position: absolute;
       right:356px;
        top: 0;
        display: flex;
        align-items: center;
        height: 100%;
        width: 50px;
        color: #000;
        font-size: 27px;
        align-items: center;
        justify-content: center;
    } */

   

    .menu_xs_content.active {
        left: 0;
        transition: all 0.5s;
    }

    .menu_xs_content_top {
        height: 20%;
        width: 100%;
        float: right;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 5px;
        padding-top: 20px;
    }

    .menu_xs_content_top i {
        font-size: 25px;
    }

    .menu_xs_content_bottom {
        height: 75%;
        width: 100%;
        float: right;
    }

    .menu_xs_content_bottom {
        padding: 10px;
    }

    .menu_xs_content_bottom > ul {
        height: 100%;
    }

    .menu_xs_content_bottom > ul > li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .menu_xs_content_bottom > ul > li > a {
        color: #000;
        display: block;
        width: 100%;
    }

    .menu_xs_content_bottom > ul > li > a .caret{
        float: left;
        margin-top: 6px;
    }

    .menu_xs_content_bottom > ul > li > ul {
        display: none;
        padding-right: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin: 5px 0;
        background-color: #eee;
    }

    .menu_xs_content_bottom > ul > li > ul > li {
        padding: 8px 0;
    }

    .menu_xs_content_bottom > ul > li > ul > li > a {
        color: #000;
        /* opacity: 0.8; */
    }
 
    #slider {
        /*  height: 230px;*/
        margin-top: 2px;
    }

    .link-play-creative-title {
        width: 100%;
        line-height: 35px;
        opacity: 0.9;
        font-size: 15px;
        text-align: justify;
    }

    .position-static {
         padding: 60px 20px !important;
    margin-top: -30px;
    }

    #box_three {
        padding-top: 0;
        float: right;
        margin-bottom: 30px;
    }

    .border_left {
        border-left: none;
    }

    .align_txt_right {
        text-align: center;
    }

    #box_five {
        padding-top: 50px;
        float: right;
        width: 100%;
    }

    .team_block .pull-right {
        width: 100%;
        text-align: center;
        padding: 5px;
        height: 50%;
    }

    .team_block .pull-left {
        width: 100%;
        padding: 5px;
    }

    #box_five .swiper-slide {
        height: 400px
    }

    .team_block img {
        max-height: 100%;
    }

    #box_five .team_block .team_text > span {
        position: static;
    }

    #box_five .swiper-pagination .swiper-pagination-bullet {
        width: 19px;
        height: 5px;
        display: inline-block;
        border-radius: 0;
        background-color: #4b4747;
        opacity: .2;
    }

    #news_box {
        margin: 30px 0;
        float: right;
        width: 100%;
    }

    #slider .slider_title {
        position: absolute;
        width: max-content;
        left: 0;
        right: 0;
        color: #fff;
        font-size: 20px;
        margin: auto;
        top: 14%;
        text-shadow: 0 0 19px black;
    }

    #slider .slider_text {
        position: absolute;
        width: max-content;
        left: 0;
        right: 0;
        color: #fff;
        font-size: 15px;
        margin: auto;
        top: 30%;
        text-shadow: 0 0 19px black;
    }

    #index_slider_next, #index_slider_prev {
        z-index: 999999999999;
        position: absolute;
        top: 50%;
        color: black;
        font-size: 22px;
        border: 2px solid #000000;
        padding: 6px;
        border-radius: 50%;
        cursor: pointer;
    }

    #slider a {
        width: max-content;
        position: absolute;
        bottom: 50%;
        left: 0;
        right: 0;
        padding: 13px 15px;
        text-align: center;
        color: #fff;
        background-color: var(--base_color);
        margin: auto;
        font-size: 11px;
    }

    .product_category .swiper-slide {
        border: none;

    }

    .product_category {
        height: max-content;
    }


    #main_section{
        margin-top: 60px;
    }

    .slider_link{
        display: none;
    }
    .padding_20 {
        padding: 10px;
    }

    footer .col-xs-12{
        margin-bottom: 20px;
    }

    #inner_page_main .row {
        padding: 100px 0;
    }


    #box_five .team_block .team_text > h4 {
        line-height: 25px;
    }

    #box_five .team_block .team_text > p {
        /* line-height: 25px;
        font-size: 13px;
        opacity: 0.9;
        text-align: center; */
        overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    }

    #box_five .team_block .team_text > span {
        display: block;
        color: var(--base_color);
        line-height: 27px;
        bottom: 20px;
        position: absolute;
        font-size: 12px;
    }

}

    .font-weight-light{
      line-height: 4;
    }
        
@media only screen and (max-width: 768px) {
    .menu_xs_content {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -100%;
        width: 80%;
        background-color: #fff;
        z-index: 9999;
        /* border-right: 1px solid; */
        box-shadow: 0 0 6px black;
        padding-top: 65px;
        transition: all 0.5s;
    }
    header {

        width: 100%;
        height: 60px;
        border-bottom: 1px solid #eeeeee;
        z-index: 99999;
        position: fixed;
        /* box-shadow: 0 0 10px black; */
    }

    .header_right_col .header_logo {
        width: 100%;
        height: 100%;
        padding: 5px 0;
    }

    .header_right_col .header_logo img {
        max-height: 95%;
        /*position: absolute;
        right: 5%;*/
    }

    .site_title{
        font-size: 15px;
        color: #444;
        font-weight: bold;
        /* margin-right: 90px; */
    }

    .header_right_col {
        position: relative;
        z-index: 999999;
        background-color: #fff;
        /* box-shadow: 0 0 7px black; */
    }

    #show_menu {
        position: absolute;
        left: 0;
        /* left: -552px; */
        top: 0;
        display: flex;
        align-items: center;
        height: 100%;
        width: 50px;
        color: #000;
        font-size: 27px;
        align-items: center;
        justify-content: center;
    }

    .menu_xs_content {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -100%;
        width: 80%;
        background-color: #fff;
        z-index: 9999;
        /* border-right: 1px solid; */
        /* box-shadow: 0 0 6px black; */
        padding-top: 65px;
        transition: all 0.5s;
    }

    .menu_xs_content.active {
        left: 0;
        transition: all 0.5s;
        width: 100%;
    }

    .menu_xs_content_top {
        height: 20%;
        width: 100%;
        float: right;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 5px;
        padding-top: 20px;
    }

    .menu_xs_content_top i {
        font-size: 25px;
    }

    .menu_xs_content_bottom {
        height: 75%;
        width: 100%;
        float: right;
    }

    .menu_xs_content_bottom {
        padding: 10px;
    }

    .menu_xs_content_bottom > ul {
        height: 100%;
    }

    .menu_xs_content_bottom > ul > li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .menu_xs_content_bottom > ul > li > a {
        color: #000;
           display: flex;
    justify-content: space-between;
        width: 100%;
    }

    .menu_xs_content_bottom > ul > li > a .caret{
        float: left;
        margin-top: 6px;
    }

    .menu_xs_content_bottom > ul > li > ul {
        /* display: none; */
        padding-right: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin: 5px 0;
        background-color: #eee;
    }

    .menu_xs_content_bottom > ul > li > ul > li {
        padding: 13px 0;
        border-bottom: 1px solid;
    }
.menu_xs_content_bottom > ul > li > ul > li > ul > li a {
    color: #000;
    display: flex;
    justify-content: space-between;
    /* opacity: 0.8; */
    margin-bottom: 21px;
}
    .menu_xs_content_bottom > ul > li > ul > li > a {
        color: #000;
        /* opacity: 0.8; */
        margin-bottom: 21px;
            display: flex;
    justify-content: space-between;
    }

    #slider {
        /*  height: 230px;*/
        margin-top: 2px;
    }

    .link-play-creative-title {
        width: 100%;
        line-height: 35px;
        opacity: 0.9;
        font-size: 15px;
        text-align: justify;
    }

    .position-static {
        padding: 34px;
    }

    #box_three {
        padding-top: 0;
        /* float: right; */
        margin-bottom: 30px;
    }

    .border_left {
        border-left: none;
    }

    .align_txt_right {
        text-align: center;
    }

    #box_five {
        padding-top: 50px;
        float: right;
        width: 100%;
    }

    .team_block .pull-right {
        width: 100%;
        text-align: center;
        padding: 5px;
        height: 50%;
    }

    .team_block .pull-left {
        width: 100%;
        padding: 5px;
    }

    #box_five .swiper-slide {
        height: 400px
    }

    .team_block img {
        max-height: 100%;
    }

    #box_five .team_block .team_text > span {
        position: static;
    }

    #box_five .swiper-pagination .swiper-pagination-bullet {
        width: 19px;
        height: 5px;
        display: inline-block;
        border-radius: 0;
        background-color: #4b4747;
        opacity: .2;
    }

    #news_box {
        margin: 30px 0;
        float: right;
        width: 100%;
    }

    #slider .slider_title {
        position: absolute;
        width: max-content;
        left: 0;
        right: 0;
        color: #fff;
        font-size: 20px;
        margin: auto;
        top: 14%;
        text-shadow: 0 0 19px black;
    }

    #slider .slider_text {
        position: absolute;
        width: max-content;
        left: 0;
        right: 0;
        color: #fff;
        font-size: 15px;
        margin: auto;
        top: 30%;
        text-shadow: 0 0 19px black;
    }

    #index_slider_next, #index_slider_prev {
        z-index: 999999999999;
        position: absolute;
        top: 50%;
        color: black;
        font-size: 22px;
        border: 2px solid #000000;
        padding: 6px;
        border-radius: 50%;
        cursor: pointer;
    }

    #slider a {
        width: max-content;
        position: absolute;
        bottom: 50%;
        left: 0;
        right: 0;
        padding: 13px 15px;
        text-align: center;
        color: #fff;
        background-color: var(--base_color);
        margin: auto;
        font-size: 11px;
    }

    .product_category .swiper-slide {
        border: none;

    }

    .product_category {
        height: max-content;
    }


    #main_section{
        margin-top: 60px;
    }

    .slider_link{
        display: none;
    }
    .padding_20 {
        padding: 10px;
    }

    footer .col-xs-12{
        margin-bottom: 20px;
    }

    #inner_page_main .row {
        padding: 100px 0;
    }


    #box_five .team_block .team_text > h4 {
        line-height: 25px;
    }

    #box_five .team_block .team_text > p {
        /* line-height: 25px;
        font-size: 13px;
        opacity: 0.9;
        text-align: center; */
        overflow: hidden;
        line-height: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    }

    #box_five .team_block .team_text > span {
        display: block;
        color: var(--base_color);
        line-height: 27px;
        bottom: 20px;
        position: absolute;
        font-size: 12px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    #menu_md > ul > li {
        float: right;
        height: 100%;
        padding: 0 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 3px solid transparent;
        transition: all 0.54s;
        position: relative;
        font-size: 13px;
    }

    .menu_xs_content_top{
        padding-top: 40px;
    }
}




