body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%
}

body {
    font-family: sans-serif;
    font-size: 14px
}

* {
    box-sizing: border-box
}

a {
    text-decoration: none
}

ul {
    margin: 0;
    padding: 0
}

ul li {
    display: block
}

.container {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 15px;
    width: 1550px
}

.container-small {
    width: 1440px
}

.container-full {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 50px;
    width: 1920px
}

@media (max-width:1600px) {
    .container {
        width: 1200px
    }
}

@media (max-width:1200px) {
    .container {
        width: 992px
    }

    .container-full {
        padding: 0 15px;
        width: 992px
    }
}

@media (max-width:992px) {

    .container,
    .container-full {
        width: 768px
    }
}

@media (max-width:1550px) {
    .big-screen_visible {
        display: none !important
    }
}

@media (min-width:1560px) {
    .big-screen_hide {
        display: none !important
    }
}

@media (min-width:1251px) {
    .mobile-screen-visible {
        display: none !important
    }
}

@media (max-width:1250px) {
    .mobile-screen-hide {
        display: none !important
    }
}

.body-header {
    background-color: #2f2f2f;
    border-bottom: thin solid #fff;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100
}

.body-header .body-header_container {
    align-items: center;
    display: flex;
    height: 100px;
    justify-content: space-between
}

.body-header .body-header_content-center {
    justify-content: center
}

.body-header .body-header_title {
    align-items: flex-end;
    display: flex;
    gap: 12px
}

.body-header .body-header_title-text {
    color: grey;
    font-size: 22px;
    line-height: 22px;
    margin: 0
}

.header-search {
    background: #2f2f2f;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: -200px;
    transition: opacity .4s;
    visibility: hidden;
    width: 100%
}

.header-search.show {
    opacity: 1;
    top: 0;
    visibility: visible
}

.header-search .container-full {
    display: flex;
    gap: 13px;
    height: 100%
}

.header-search input {
    background: transparent;
    border: none;
    flex: 1;
    font-size: 20px;
    outline: none !important;
    padding: 0 20px
}

.header-search button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 25px
}

.header-search button img {
    height: 24px
}

@media (max-width:992px) {
    .body-header .body-header_container {
        height: 50px
    }

    .body-header .body-header_title {
        align-items: center
    }
}

@media (max-width:560px) {
    .body-header .body-header_title-text {
        font-size: 15px
    }
}

.body-content {
    min-height: 90vh;
    padding-top: 100px
}

@media (max-width:992px) {
    .body-content {
        padding-top: 50px
    }
}

.body-footer {
    background: grey;
    padding: 50px 0
}

.body-footer .body-footer_container {
    display: flex;
    margin: 0 auto;
    max-width: 100%;
    padding: 15px;
    width: 1550px
}

@media (max-width:1600px) {
    .body-footer .body-footer_container {
        width: 1200px
    }
}

.body-footer .body-footer_col {
    align-items: center;
    border: thin solid #bbb;
    border-bottom: none;
    border-top: none;
    display: flex;
    justify-content: center;
    padding: 0 70px
}

.body-footer .body-footer_col:first-child {
    -webkit-padding-start: 0;
    -webkit-border-start: none;
    border-inline-start: none;
    justify-content: flex-start;
    padding-inline-start: 0
}

.body-footer .body-footer_col:last-child {
    -webkit-padding-end: 0;
    -webkit-border-end: none;
    border-inline-end: none;
    justify-content: flex-end;
    padding-inline-end: 0
}

.body-footer .body-footer_col-others {
    flex: 1
}

@media (max-width:1550px) {
    .body-footer .body-footer_col {
        padding: 0 30px
    }

    .body-footer .body-footer_col:first-child {
        -webkit-padding-start: 0;
        padding-inline-start: 0
    }

    .body-footer .body-footer_col:last-child {
        -webkit-padding-end: 0;
        padding-inline-end: 0
    }
}

@media (max-width:1200px) {
    .body-footer .body-footer_container {
        display: block
    }

    .body-footer .body-footer_col {
        border: thin solid #bbb;
        border-left: none;
        border-right: none;
        justify-content: center !important;
        padding: 30px 0
    }

    .body-footer .body-footer_col:first-child {
        border-top: none;
        padding-top: 0
    }

    .body-footer .body-footer_col:last-child {
        border-bottom: none;
        padding-bottom: 0
    }
}

.footer-contact {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 25px
}

.footer-contact:last-child {
    margin-bottom: 0
}

.footer-contact .footer-contact_title {
    text-align: end;
    width: 100px
}

.footer-subscribe {
    display: flex;
    gap: 5px
}

.footer-subscribe input {
    flex: 1
}

.footer-subscribe .footer-subscribe_button {
    padding: 0 15px
}

.footer-others {
    align-items: center;
    display: flex;
    gap: 40px
}

.footer-others .footer-others_list {
    flex: 1
}

.footer-menu-container {
    align-items: center;
    display: flex;
    gap: 40px
}

.footer-menu-container .footer-menu-container_list {
    flex: 1
}

.input-row {
    display: flex;
    gap: 5px;
    margin-bottom: 5px
}

.input-row .input-row_label {
    background: grey;
    border-radius: 30px;
    color: #4d4d4d;
    font-size: 18px;
    font-weight: lighter;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 150px
}

.input-row .input-row_content {
    flex: 1
}

.input {
    font-family: inherit;
    height: 30px;
    padding: 0 15px
}

.input,
.input-textarea {
    border: none;
    border-radius: 30px;
    display: block;
    width: 100%
}

.input-textarea {
    line-height: 30px;
    padding: 0 30px
}

.button {
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    height: 30px;
    padding: 0 50px;
    transition: .4s
}

.button.button-orange {
    background: #ff8d00;
    color: #4d4d4d
}

.button.button-orange:hover {
    background: #4d4d4d;
    color: #ff8d00
}

@media (max-width:768px) {
    .input-row {
        display: block
    }

    .input-row .input-row_label {
        display: block;
        margin-bottom: 5px;
        width: 100%
    }
}

.list-company {
    display: block;
    margin-bottom: 10px
}

.list-company:last-child {
    margin-bottom: 0
}

.list-company .list-company_link {
    align-items: center;
    color: #fff;
    display: flex;
    gap: 10px
}

.list-company .list-company_link-img {
    height: 38px;
    width: 38px
}

.list-company .list-company_link-text {
    font-size: 20px
}

.list-footer {
    display: block
}

.list-footer .list-footer_link {
    color: #fff;
    display: block;
    line-height: 30px;
    text-align: end
}

.list-language {
    display: flex;
    gap: 13px
}

.list-language .list-language_item {
    display: block
}

.list-language .list-language_item.dropdown {
    position: relative
}

.list-language .list-language_item.dropdown>ul {
    display: block;
    opacity: 0;
    position: absolute;
    top: -1000px;
    transition: opacity .4s;
    visibility: hidden
}

.list-language .list-language_item.dropdown>ul li {
    border-bottom: thin solid #2f2f2f;
    display: block
}

.list-language .list-language_item.dropdown>ul li:last-child {
    border-bottom: none
}

.list-language .list-language_item.dropdown:hover ul {
    left: 0;
    opacity: 1;
    top: 100%;
    visibility: visible
}

.list-language .list-language_link {
    background: #4c4c4c;
    color: grey;
    display: block;
    height: 25px;
    line-height: 25px;
    text-align: center;
    width: 25px
}

.list-social {
    display: flex;
    gap: 10px
}

.list-social .list-social_link {
    align-items: center;
    background-color: #666;
    display: flex;
    height: 35px;
    justify-content: center;
    width: 35px
}

.list-social .list-social_link img {
    height: 20px;
    width: 20px
}

.list-nav .list-nav_list {
    display: flex
}

.list-nav .list-nav_item {
    display: block;
    position: relative
}

.list-nav .list-nav_item-download {
    -webkit-margin-start: 40px;
    margin-inline-start: 40px
}

.list-nav .list-nav_link {
    color: #fff
}

.list-nav .list-nav_link,
.list-nav .list-nav_link-download {
    align-items: center;
    display: flex;
    height: 100px;
    justify-content: center;
    padding: 15px
}

.list-nav .list-nav_link-download {
    color: grey
}

.list-nav .list-nav_drop-list {
    background-color: #2f2f2f;
    border-top: thin solid #fff;
    right: 0;
    min-width: 220px;
    opacity: 0;
    padding: 25px 10px;
    position: absolute;
    top: -1000px;
    transition: opacity .4s;
    visibility: hidden
}

.list-nav .list-nav_drop-list .list-nav_drop-item {
    display: block
}

.list-nav .list-nav_drop-list .list-nav_drop-title {
    color: #fff;
    font-size: 25px;
    margin: 0;
    padding: 20px 10px;
    white-space: nowrap
}

.list-nav .list-nav_drop-list .list-nav_drop-link {
    color: grey;
    display: block;
    padding: 10px
}

.list-nav .list-nav_drop-content:hover .list-nav_drop-list {
    opacity: 1;
    top: 100%;
    visibility: visible
}

.nav-mobile {
    display: none
}

@media (max-width:1200px) {
    .nav-mobile {
        bottom: 0;
        height: calc(100vh - 101px);
        left: 0;
        position: fixed;
        width: 100%;
        z-index: 200
    }

    .nav-mobile .nav-mobile_close {
        background: transparent;
        border: none;
        cursor: pointer;
        flex: 1;
        height: 100%
    }

    .nav-mobile aside {
        -webkit-border-start: solid thin #fff;
        background: #2f2f2f;
        border-inline-start: thin solid #fff;
        height: 100%;
        transform: translateX(200px);
        transition: .4s;
        width: 200px
    }

    .nav-mobile.visible {
        display: flex
    }

    .nav-mobile.visible.show aside {
        transform: translateX(0) !important
    }

    .nav-mobile_list {
        display: block
    }

    .nav-mobile_list .list-nav_item {
        border-bottom: thin solid #3e3e3e;
        display: block
    }

    .nav-mobile_list .list-nav_link,
    .nav-mobile_list .list-nav_link-download {
        color: #fff;
        display: block;
        font-size: 15px;
        line-height: 2;
        padding: 10px 15px;
        text-align: start
    }

    .nav-mobile_list .list-nav_link-download {
        color: grey
    }

    .nav-mobile_list .list-nav_drop-list {
        background: #3e3e3e;
        display: none
    }

    .nav-mobile_list .list-nav_drop-list .list-nav_drop-item {
        border-bottom: thin solid #2f2f2f;
        display: block
    }

    .nav-mobile_list .list-nav_drop-list .list-nav_drop-item:last-child {
        border-bottom: none
    }

    .nav-mobile_list .list-nav_drop-list .list-nav_drop-title {
        -webkit-padding-start: 40px;
        color: grey;
        display: block;
        margin: 0;
        padding: 5px 15px;
        padding-inline-start: 40px
    }

    .nav-mobile_list .list-nav_drop-list .list-nav_drop-link {
        -webkit-padding-start: 40px;
        color: #fff;
        display: block;
        font-size: 12px;
        padding: 10px 15px;
        padding-inline-start: 40px;
        text-align: start
    }
}

@media (max-width:992px) {
    .nav-mobile {
        height: calc(100vh - 51px)
    }
}

.modal-contact {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    padding: 50px;
    position: fixed;
    top: -100%;
    visibility: hidden;
    width: 100%;
    z-index: 100
}

.modal-contact .modal-contact_content {
    background-color: hsla(0, 0%, 9%, .9);
    border-radius: 30px;
    max-width: 100%;
    padding: 70px 170px;
    position: relative;
    transform: scale(0);
    transition: .4s;
    width: 900px
}

.modal-contact .modal-contact_close {
    background: transparent;
    border: none;
    color: grey;
    cursor: pointer;
    height: 70px;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    width: 70px
}

.modal-contact .modal-contact_close:hover {
    opacity: 1
}

.modal-contact .modal-contact_title {
    color: grey;
    font-size: 20px;
    margin-bottom: 40px;
    margin-top: 0;
    text-align: center
}

.modal-contact.show {
    top: 0;
    visibility: visible
}

.modal-contact.show .modal-contact_content {
    transform: scale(1)
}

.modal-contact_toggle {
    -webkit-padding-start: 30px;
    -webkit-padding-end: 10px;
    background-color: hsla(0, 0%, 9%, .8);
    border: none;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    height: 60px;
    left: 0;
    padding-inline-end: 10px;
    padding-inline-start: 30px;
    position: fixed;
    text-align: justify;
    top: 50%;
    transform: translateX(-80px);
    transition: .4s;
    width: 80px;
    z-index: 10
}

.modal-contact_toggle.show {
    transform: translateX(0)
}

.modal-contact_toggle.show_animation:not(:hover) {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: modal_contact_toggle
}

@keyframes modal_contact_toggle {
    40% {
        transform: translateX(0)
    }

    45% {
        transform: translateX(-20px)
    }

    50% {
        transform: translateX(0)
    }

    55% {
        transform: translateX(-20px)
    }

    60% {
        transform: translateX(0)
    }
}

@media (max-width:992px) {
    .modal-contact {
        padding: 25px
    }

    .modal-contact .modal-contact_content {
        border-radius: 15px;
        padding: 30px 80px;
        width: 600px
    }

    .modal-contact .modal-contact_close {
        height: 40px;
        width: 40px
    }
}

@media (max-width:560px) {
    .modal-contact .modal-contact_content {
        border-radius: 15px;
        padding: 30px;
        width: 100%
    }

    .modal-contact .modal-contact_close {
        height: 40px;
        width: 40px
    }
}

.section-blue-title {
    align-items: center;
    background: #00a2db;
    display: flex;
    min-height: calc(100vh - 100px);
    padding: 100px 0;
    position: relative
}

.section-blue-title video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.section-blue-title .section-blue-title_container {
    display: flex;
    justify-content: flex-start;
    position: relative;
    z-index: 1
}

.section-blue-title .section-blue-title_title {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 36px;
    gap: 26px;
    margin: 0
}

.section-blue-title .section-blue-title_title img {
    width: 90px
}

@media (max-width:992px) {
    .section-blue-title {
        min-height: calc(100vh - 50px)
    }

    .section-blue-title .section-blue-title_title {
        font-size: 30px
    }

    .section-blue-title .section-blue-title_title img {
        width: 60px
    }
}

@media (max-width:768px) {
    .section-blue-title .section-blue-title_container {
        justify-content: center
    }

    .section-blue-title .section-blue-title_title {
        display: block
    }

    .section-blue-title .section-blue-title_title img {
        display: block;
        margin: 0 auto 20px
    }

    .section-blue-title .section-blue-title_title span {
        display: block;
        text-align: center
    }
}

.section-product {
    padding-bottom: 60px;
    padding-top: 60px
}

.section-product .section-product_image {
    display: flex;
    justify-content: center;
    margin-bottom: 50px
}

.section-product .section-product_image img {
    height: 330px
}

.section-product .section-product_table {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center
}

.section-product .section-product_table_col {
    margin-bottom: 40px
}

@media (max-width:768px) {
    .section-product .section-product_table_col {
        width: 100%
    }
}

.table-product {
    border-spacing: 0;
    max-width: 100%;
    text-align: center;
    width: 385px
}

.table-product caption {
    background: grey;
    color: #fff;
    font-size: 20px;
    line-height: 45px;
    padding: 0 17px;
    text-align: start
}

.table-product tbody tr td {
    border-spacing: 0;
    font-size: 16px;
    line-height: 30px;
    width: 20%
}

.table-product tbody tr:nth-child(2n) td {
    background: #e1e1e1
}
.container-product {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
  }
  
  .container-right {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    flex: 1;
}

.left-section {
    flex: 1;
    background-color: #f2f2f2;
   
  }
  
  .right-section {
    flex: 2;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;    
    flex-direction: row-reverse;
  }
  
  .product-icon {
    font-size: 40px;
    margin-bottom: 10px;
    flex: 1;
    
  }
  
  .product-title {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 10px;
    flex: 2;
    text-align: center;
    padding-left: 13px;

  }
  
  .content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .content-right {
    flex: 2;
    text-align: center;
  }
  
  
  .slideshow-container {
    position: relative;
    height: auto;
  }
  
  .slide {
    display: none;
    width: 100%;
    height: auto;
  }
  
  /* افزودن انیمیشن کشویی */
  @keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
  }
  .prev,
  .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 30px;
      color: #fff;
      cursor: pointer;
      user-select: none;
      padding: 10px;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
  }
  
  .prev {
      left: 10px;
  }
  
  .next {
      right: 10px;
  }
  
  @media screen and (max-width: 768px) {

    .container-product {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
    }

    .left-section,
    .right-section {
        flex: 1;
    }

    .content-right img{
        width: 350px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .right-section {
        padding: 10px;
    }
  }