/*
Theme Name: Hermos
Theme URI: https://www.hidokmeh.com/
Author: Dokmeh Agency
Author URI: https://www.hidokmeh.com/
Description: Hermos
Version: 1.0.0
Text Domain: dokmeh
*/
/*-----------------Font------------------*/
html,body{
    font-family: 'Roboto', sans-serif;
    color: #8E8E8E;
    background-color: #ffffff;
    direction: ltr;
}
/*-----------------Font------------------*/
/*-----------------General Class------------------*/
a,a:hover{
    color: #8E8E8E;
    text-decoration: none;
}
ul ,li{
    list-style: none;
    padding: 0;
    margin: 0;
}
html::-webkit-scrollbar {
    width: 0.01em;
}

html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #E1DDC9;
    box-shadow: inset 0 0 6px #E1DDC9;
}

html::-webkit-scrollbar-thumb {
    background-color: #000000;
    outline: 1px solid #E1DDC9;
}
*,*:active,*:focus {
    outline: unset;
    outline-color: transparent;
}
::-moz-selection{
    background-color: #8E8E8E;
    color: #fff;
}
::selection{
    background-color: #8E8E8E;
    color: #fff;
}
::-moz-selection{
    background-color: #8E8E8E;
    color: #fff;
}
main {
    padding-top: 12vh;
    overflow: hidden;
}
main.productSingle-main {
    padding-top: calc(12vh + 40px);
}
main#aboutMain {
    margin-top: 100px;
}
.padding{
    padding-right: 200px;
    padding-left: 200px;
}
/*html.opFilter footer{*/
/*    z-index: 10;*/
/*}*/
#js-scroll {
    background-color: #fff !important;
}
/*-----------------General Class------------------*/
/*------------------------------------------------loading*/
#loading{
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    pointer-events: none;
    z-index: 1001;
    transition: all ease-in-out 0.35s;
    opacity: 1;
}
body.loaded #loading{
    opacity: 0;
}
.loading-logo svg{
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    width: 50px;
    height: 50px;
    transition-delay: 0s;
    animation-name: turnOneLoading;
    transform-origin: center;
}
@keyframes turnOneLoading {
    0% {transform: rotate(0deg)scale(1);}
    50% {transform: rotate(180deg)scale(1.75);}
    100% {transform: rotate(-180deg)scale(1);}
}
/*------------------------------------------------loading*/
/*------------------------------------------------header*/
header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 12vh;
    z-index: 101;
    column-gap: 50px;
    border-bottom: 1px solid #8E8E8E;
    background-color: #ffffff;
    top: 0;
}
header .language {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
header .navs {
    display: flex;
    align-items: center;
    column-gap: 300px;
}
header nav {
    display: flex;
    align-items: center;
    column-gap: 50px;
}

header  nav a ,
main#not-found .button-boxes a{
    color: #8E8E8E;
    position: relative;
    padding: .5em .8em;
    text-decoration: none;
}
header  nav a::before,
header  nav a::after ,
main#not-found .button-boxes a::before,
main#not-found .button-boxes a::after{
    content: '';
    height: 14px;
    width: 14px;
    position: absolute;
    transition: all .35s ease;
    opacity: 0;
}

header  nav a::before ,
main#not-found .button-boxes a::before{
    content: '';
    right: 0;
    top: 0;
    border-top: 3px solid #fbb752;
    border-right: 3px solid #fbb752;
    transform: translate(-100%, 50%);
}

header  nav a:after ,
main#not-found .button-boxes a:after{
    content: '';
    left: 0;
    bottom: 0;
    border-bottom: 3px solid #fbb752;
    border-left: 3px solid #fbb752;
    transform: translate(100%, -50%)
}

header  nav a:hover:before,
header  nav a:hover:after ,
header  nav a.active:before,
header  nav a.active:after ,
main#not-found .button-boxes a:hover:before,
main#not-found .button-boxes a:hover:after{
    transform: translate(0,0);
    opacity: 1;
}
header  nav a:hover ,
main#not-found .button-boxes a:hover{
    color: #fbb752;
}
header #identity {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
header #identity img {
    width: 110px;
    height: auto;
    max-height: calc(100% - 20px);
    object-fit: contain;
}

.rotate-logo svg {
    position: absolute;
    bottom: 14px;
    left: 0;
    padding: 0px;
}
.rotate-logo svg{
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: 50% 50%;
    transition-delay: 0s;
    animation-name: turnOne;
}
@keyframes turnOne {
    0% {transform: rotate(0deg);}
    0% {transform: rotate(0deg);}

    100% {transform: rotate(360deg);}
}
html[data-direction="up"] header #identity svg {
    animation-name: turnOneReverse;
}
@keyframes turnOneReverse {
    0% {transform: rotate(0deg);}

    100% {transform: rotate(-360deg);}
}
header .socialMedia a{
    margin: 0 10px 0 0;
}
header .socialMedia a:first-child {
    margin: 0 0 0 50px;
}
header .socialMedia:before {
    content: '';
    position: absolute;
    background: #8E8E8E;
    width: 1px;
    height: 100%;
}
header .socialMedia {
    position: relative;
    display: flex;
    align-items: center;
}
header > nav a.products-nav.active::before, header > nav a.products-nav.active::after {
    opacity: 1;
    transform: translate(0,0);
}
header nav a.products-nav.active{
    color: #fbb752;
}
#products-navTabs {
    top: 12vh;
    left: 0;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    align-items: center;
    background: #F2F2F2;
    display: flex;
    flex-direction: column;
    padding: 32px 96px 50px 96px;
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform .201s ease-out .366s;
    will-change: transform;
}
.products-navTabs-inner {
    width: 100%;
    height: 100%;
}
#products-navTabs::-webkit-scrollbar {
    width: 0.2em;
}

#products-navTabs::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #E1DDC9;
    box-shadow: inset 0 0 6px #E1DDC9;
}

#products-navTabs::-webkit-scrollbar-thumb {
    background-color: #C4C4C4;
    outline: 1px solid #E1DDC9;
}
#products-navTabs.active{
    transform: scaleY(1);
    transition: transform 266ms ease-out .1s;
}
#products-navTabs .nav-link {
    color: #8E8E8E;
}

#products-navTabs .nav-link.active {
    color: #000;
    background: transparent;
    font-weight: 700;
}

#products-navTabs #pills-tab {
    border-bottom: 1px solid #8E8E8E;
    padding-bottom: 20px;
}

.tab-pane {
    width: 100%;
}

#pills-tabContent {
    width: 100%;
}
.tab-pane .swiper-slide{
    padding: 0;
    margin-top: 0 !important;
}
.tab-pane .swiper-slide-image {
    width: 100%;
}

.tab-pane .swiper-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide-text {
    padding: 20px 0 25px;
    font-size: 0.8rem;
}
/*.tab-pane .swiper-wrapper {*/
/*    display: flex;*/
/*    flex-wrap: nowrap;*/
/*    flex-direction: row;*/
/*}*/
.tab-pane-swiper-button {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    height: 40px;
    column-gap: 80px;
    z-index: 1;
}
.tab-pane-button {
    text-align: center;
    margin: 40px 0 0 0;
}

.tab-pane-button a {
    color: #000;
    font-weight: 600;
    border-bottom: 1px solid #000;
    padding: 0 0 10px;
    font-size: 0.9rem;
}
.tab-pane-button a:before ,
.tab-pane-button a:after{
    display: none;
}
.tab-pane-button svg {
    margin: 0 10px;
    filter: saturate(1);
    display: inline-block;
    transition: all ease-in-out 0.35s;
    transform: scaleX(-1);
}
.tab-pane-button:hover svg {
    transform: scaleX(-1)translateX(-10px);
}
.tab-pane-button:hover a{
    color: #000000;
}
header > nav .tab-pane-button a::before, header > nav .tab-pane-button a::after{
    display: none;
}
.mobileMenu-icon {
    position: fixed;
    right: 20px;
    display: none;
}
.mobile-close-productNavTabs img {
    display: none;
}
header .socialMedia-mobile {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    column-gap: 15px;
}
/*------------------------------------------------header*/
/*------------------------------------------------index*/
section.homeBanner-swiper {
    padding: 20px;
    position: relative;
}
section.homeBanner-swiper  .swiper-wrapper {
    height: calc(70vh + 60px);
}
section.homeBanner-swiper .swiper-slide {
    height: 70vh;
}

section.homeBanner-swiper .swiper-slide .swiper-slide-image.twoPare {
    height: 100%;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

section.homeBanner-swiper .swiper-slide .swiper-slide-image.twoPare img ,
section.homeBanner-swiper .swiper-slide .swiper-slide-image.twoPare video{
    height: 100%;
    width: calc(50% - 10px);
    object-fit: cover;
    background: #fff;
}
.homeBanner-swiper-button {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 40px;
    column-gap: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.homeBanner-swiper-button .swiper-pagination {
    top: auto;
    bottom: auto;
    width: fit-content;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
}
.homeBanner-swiper-button .swiper-pagination .swiper-pagination-bullet {
    background-color: #C4C4C4;
    opacity: 0.5;
}
.homeBanner-swiper-button .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    opacity: 1;
    transform: scale(1.3);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next ,
.swiper-button-next,
.swiper-rtl .swiper-button-prev{
    position: relative;
    right: auto;
    left: auto;
    top: 10px;
    bottom: auto;
    width: 80px;
    height: 40px;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after{
    content: '';
    background-image: url("./assets/img/arrowLeft.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after{
    content: '';
    background-image: url("./assets/img/arrowRight.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
}
section.homeAbout {
    text-align: center;
    margin: 60px 0;
}

.homeAbout-content {
    display: flex;
    align-items: center;
}

.homeAbout-content > div {
    width: 50%;
}
.homeAbout-image {
    justify-content: center;
    display: flex;
}
.homeAbout-image .rotate-logo {
    position: relative;
}
h2.homeTitle {
    font-weight: 700;
    text-align: center;
    margin: 60px 0 70px;
    display: block;
    opacity: 0;
    transform: translateY(100%) rotateX(-80deg);
    transform-origin: center top;
    transform-style: preserve-3d;
    transition: opacity 0s cubic-bezier(.215,.61,.355,1),transform 0s cubic-bezier(.215,.61,.355,1);
}
h2.homeTitle.is-inview{
    opacity: 1;
    transform: none;
    transition-duration: .8s;
}

.homeAbout-image img {
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.homeProduct-tileLine {
    height: auto;
    transform: rotate(-10deg);
    position: relative;
    padding: 70px 0 90px;
    right: -100px;
}
.homeProduct-tileLine-swiper-button-container {
    width: 100%;
    position: absolute;
    right: 0px;
    top: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.homeProduct-tileLine-swiper-button {
    background: transparent;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    z-index: 4;
}
.homeProduct-tileLine-swiper-button .swiper-button-next:after, .homeProduct-tileLine-swiper-button .swiper-rtl .swiper-button-prev:after {
    background-image: url(./assets/img/arrowRight.svg);
}
.homeProduct-tileLine-swiper-button .swiper-button-prev:after, .homeProduct-tileLine-swiper-button .swiper-rtl .swiper-button-next:after {
    background-image: url(./assets/img/arrowLeft.svg);
}

section.homeProduct-container {
    background: #FAFAFA;
    position: relative;
}
section.homeProduct-container .homeProduct{
    overflow: hidden;
}
.homeProduct-tileLine-img {
    width: 100%;
    height: 70vh;
    display: block;
    position: relative;
}
.homeProduct-tileLine-img:after{
    position: absolute;
    content: '';
    background-image: url("./assets/img/cros.svg");
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    margin: 12px;
}
.homeProduct-tileLine-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.homeHistory {
    margin-bottom: 50px;
    position: relative;
    width: 100%;
}
.c-fixed_wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #ffffff !important;
}
.c-fixed_target {
    bottom: -100vh;
    margin-top: -6rem;
}
.c-fixed, .c-fixed_target {
    position: absolute;
    top: -100vh;
    right: 0;
    left: 0;
}
.c-fixed {
    height: 100%;
    background-size: cover;
    background-position: 50%;
    opacity: .75;
    mix-blend-mode: normal;
}
.homeHistory-image-mobile {
    display: none;
}
.homeHistory-image-mobile img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
/*------------------------------------------------index*/
/*------------------------------------------------products*/
section.products-header {
    background: #f9f9f9;
    display: flex;
    align-items: center;
    /*height: 28vh;*/
    overflow-x: hidden;
    /* padding: 20px 0; */
}
section.products-header img{
    max-width: 33%;
    display: block;
    height: 28vh;
    object-fit: contain;
}
section.products-header h1 {
    font-weight: 700;
    margin: 0 40px;
}
section.products-content {
    margin: 50px 0;
    overflow: hidden;
}
.productsBoxes {
    display: flex;
    row-gap: 70px;
    min-height: 50vh;
}
section.products-content > div {
    position: relative;
}
section.products-content .productSingle_loading{
    z-index: 9;
}
.productsBox {
    display: block;
    margin: 0 10px;
    color: #8E8E8E;
}
.productsBox-image {
    width: 100%;
    height: 60vh;
    position: relative;
    filter: grayscale(0.5);
    transition: all ease-in-out 0.35s;
}
.productsBox:hover .productsBox-image{
    filter: grayscale(0);
}
.productsBox-image img ,
.productsBox-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.productsBox-info {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #8E8E8E;
}

h2.productsBox-info-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
section.products-more {
    margin: 40px 0 100px;
    text-align: center;
}
section.gool {height: 20vh;background-color: #fff;z-index: 99;position: relative;margin-top: -90px;}
section.products-more a {
    display: block;
    width: fit-content;
    position: relative;
    margin: auto;
    padding: 10px 30px;
    color: #8E8E8E;
}

section.products-more a::before,
section.products-more a::after {
    content: '';
    height: 20px;
    width: 20px;
    position: absolute;
    transition: all .35s ease;
    opacity: 1;
}

section.products-more a::before {
    content: '';
    right: 0;
    top: 0;
    border-top: 5px solid #fbb752;
    border-right: 5px solid #fbb752;
    transform: translate(0,0);
}

section.products-more a:after {
    content: '';
    left: 0;
    bottom: 0;
    border-bottom: 5px solid #fbb752;
    border-left: 5px solid #fbb752;
    transform: translate(0,0);
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
    -webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes hvr-pulse{
    0%   {transform: scale(1)}
    25%  {transform: scale(1.2)}
    50%  {transform: scale(1)}
    75% {transform: scale(1.2)}
}
section.products-more .products-pagination span {
    display: inline-block;
    margin: 5px 5px 20px;
}
.list-container.active .more-button-list {
    opacity: 1;
    transform: scale(1);
}
.list-container.active .more-button {
    -webkit-animation: onePulse 0.6s forwards linear;
    animation: onePulse 0.6s forwards linear;
}
.list-container.active .menu-icon-wrapper {
    transform: rotate(45deg);
}
.list-container.active .menu-icon-line.first {
    transform: rotate(-90deg) translateX(1px);
}
.list-container.active .menu-icon-line.last {
    transform: rotate(-90deg) translateX(-1px);
}
.more-button {
    background-color: transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: 0.2s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8E8E8E;
    position: relative;
    z-index: 2;
}
.more-button:focus {
    outline: 0;
}
.menu-icon-wrapper {
    border-radius: 2px;
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 330ms ease-out;
}
.menu-icon-line {
    background-color: #8E8E8E;
    border-radius: 2px;
    width: 100%;
    height: 2px;
}
.menu-icon-line.half {
    width: 50%;
}
.menu-icon-line.first {
    transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
    transform-origin: right;
    align-self: flex-start;
}
.menu-icon-line.last {
    transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
    transform-origin: left;
    align-self: flex-end;}
.productFilter-panel {
    position: fixed;
    margin: 0 10px;
    background-color: rgb(255 255 255 / 80%);
    width: 33%;
    padding: 40px;
    transform: scaleX(0);
    transform-origin: left top;
    transition: transform .201s ease-out .366s;
    overflow-y: auto;
    height: 88vh;
    top: 12vh;
    z-index: 100;
    padding-bottom: 120px;
}

.productFilter-panel::-webkit-scrollbar {
    width: 0.2em;
}

.productFilter-panel::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #E1DDC9;
    box-shadow: inset 0 0 6px #E1DDC9;
}

.productFilter-panel::-webkit-scrollbar-thumb {
    background-color:  #8E8E8E;
    outline: 1px solid #E1DDC9;
}
.productFilter-panel.active {
    transition: transform 266ms ease-out .1s;
    transform: scaleX(1);
}
.productFilter-panel-close{
    display: none;
}
.productFilter-panel-item-title {
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.productFilter-panel-item-list {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    margin-bottom: 30px;
}

.productFilter-panel input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.productFilter-panel span.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    margin: 0;
    border: 1px solid #C4C4C4;
    border-radius: 3px;
}

.productFilter-panel label {
    cursor: pointer;
    position: relative;
    transition: all ease-in-out 0.3s;
    font-size: 0.8rem;
}

.productFilter-panel label:hover input ~ .checkmark {
    background-color: 1px 1px 1px 1px #ccc;
}



.productFilter-panel .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.productFilter-panel label input:checked ~ .checkmark:after {

    transform: scale(1);
}

.productFilter-panel label .checkmark:after {
    display: block;
    left: 0px;
    top: 0px;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    background-color: #fbb752;
    transform: scale(0);
    transform-origin: center center;
    transition: all ease-in-out 0.3s;
}
.productFilter-panel label span {
    margin-left: 30px;
}
/*------------------------------------------------products*/
/*------------------------------------------------productSingle*/
section.productSingle_info-image {
    margin-bottom: 30px;
}
section.productSingle_info-image > div {position: relative;}

.productSingle_loading {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
}
.productSingle_loading-inner {width: 100%;height: 100%;display: flex;
    align-items: center;
    justify-content: center;background-color: #ffffffb3;}
.productSingle_loading .loading-logo svg {animation-name: turnOneReverse;}
.productSingle-info h1 {
    margin-bottom: 50px;
    font-weight: 700;
}

.productSingle-info-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin: 30px 0;
}



.dropDown-box {
    margin-bottom: 20px;
    position: relative;
}
.dropDown-box .select{
    width: 100%;
    border: none;
    height: 50px;
    line-height: 30px;
    padding: 10px 15px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    background-color: #E5E5E5;
}
.dropDown-box .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.dropDown-box .select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 50px;
    background-color: #E5E5E5;
    padding: 8px 15px;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.dropDown-box .select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #000000 transparent transparent transparent;
    position: absolute;
    top: 23px;
    right: 20px;
}
.dropDown-box .select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #e5e5e5;
}
.dropDown-box .select-options li {
    margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}
.dropDown-box .select-options li:hover {
    color: #fbb752;
    background: #fff;
}
.dropDown-box .select-options li[rel="hide"] {
    display: none;
}
.productSingle-info-orderCode {
    border-top: 1px solid #C4C4C4;
    border-bottom: 1px solid #C4C4C4;
    padding: 40px 0px;
}
.productSingle-info-order {
    margin-bottom: 20px;
}
.productSingle-info-des {
    padding: 40px 0;
}
.productSingle-image button.flickity-button {
    display: none;
}

.productSingle-image .flickity-page-dots {
    display: none;
}
.productSingle-image .carousel.carousel-main {
    margin-bottom: 20px;
}
.productSingle-image .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.productSingle-image .carousel.carousel-main .flickity-viewport{
    height: 100% !important;
}
.productSingle-image .carousel-cell {
    width: 100%;
    height: 100%;
    margin-right: 10px;
    counter-increment: carousel-cell;
}
.productSingle-image .carousel-nav .carousel-cell {
    height:40vh;
    width: calc((100% / 2) - 60px);
}
.productSingle-image .carousel-nav .swiper-slide.swiper-slide-thumb-active::before,
.productSingle-image .carousel-nav .swiper-slide.swiper-slide-thumb-active::after {
    content: '';
    height: 25%;
    width: 25%;
    position: absolute;
    transition: all .35s ease;
}

.productSingle-image .carousel-nav .swiper-slide.swiper-slide-thumb-active::before {
    content: '';
    right: 0;
    top: 0;
    border-top: 3px solid #fbb752;
    border-right: 3px solid #fbb752;
}

.productSingle-image .carousel-nav .swiper-slide.swiper-slide-thumb-active:after {
    content: '';
    left: 0;
    bottom: 0;
    border-bottom: 3px solid #fbb752;
    border-left: 3px solid #fbb752;
}

section.productSingle-gallery {
    margin: 60px 0;
    height: 70vh;
    text-align: center;
}

section.productSingle-gallery img , section.productSingle-gallery video {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}
main.productSingle-main aside {
    margin: 40px 0 80px;
}
h2.aside-title {
    margin-bottom: 35px;
    font-size: 1.5rem;
}
.productFilter-icon {
    position: fixed;
    bottom: 40vh;
    left: 75px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 99;
}
/*------------------------------------------------productSingle*/
/*------------------------------------------------life*/
section.bannerWrapper {
    height: calc(100vh - 12vh);
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    display: none;
}
.banner-image #canvas ,
.banner-image #canvas canvas{
    width: 100% !important;
    height: 100% !important;
}
.banner-info {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 5;
    pointer-events: none;
}
.banner-info > * {
    width: 50%;
}
.banner-info .banner-date {
    display: block;
    text-align: right;
}
.banner-info h1 {
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.banner-info .des {
    font-size: 0.9rem;
}
.banner-button {
    position: absolute;
    bottom: 10vh;
    right: 200px;
    color: #fff;
    width: 200px;
    text-align: center;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 10px 20px;
    pointer-events: auto;
}
.banner-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    transform: scaleY(2);
    opacity: 0;
    transition: 0.3s;
}
/*.banner-button:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 2px;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: #ffffff;*/
/*    transform: scale(0);*/
/*    opacity: 0;*/
/*    transition: 0.3s;*/
/*    z-index: -1;*/
/*}*/
.banner-button:hover {
    color: #fff;
}
.banner-button:hover:before {
    transform: scaleY(1);
    opacity: 1;
}
/*.banner-button:hover:after {*/
/*    transform: scaleY(1);*/
/*    opacity: 1;*/
/*}*/


.banner-image:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #8E6220;
    z-index: 1;
    mix-blend-mode: multiply;
}
body[data-pagetype=contact_body] .banner-image:before {
    content: none;
}
body[data-pagetype=contact_body] .banner-image img {
    display: block;
}
section.lifeContent ,
section.blogContent {
    margin: 70px 0;
    display: flex;
    flex-direction: column;
    row-gap: 60px;
    position: relative;
}
section.blogContent .productSingle_loading-inner {align-items: flex-start;}

section.blogContent .productSingle_loading {width: calc(100% - 400px);}

section.blogContent .loading-logo {margin-top: 100px;}
.lifeBox {
    display: flex;
    align-items: flex-end;
    color: #8E8E8E;
    justify-content: space-between;
}
.lifeBox.reverse {
    flex-direction: row-reverse;
}
.lifeBox > div {
    width: 45%;
}

.lifeBox-image {
    overflow: hidden;
}
.lifeBox-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all ease-in-out 0.75s;
}
.lifeBox-image:hover img {
    transform: scale(1.3);
}
.lifeBox-text h2 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 30px;
}
/*------------------------------------------------life*/
/*------------------------------------------------lifeSingle*/
.lifeSingle-wpContent {
    display: flex;
    flex-direction: column;
    justify-content: center;justify-content: center;
    align-items: center;
    row-gap: 30px;
}
.lifeSingle-wpContent img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
/*------------------------------------------------lifeSingle*/
/*------------------------------------------------blog*/
.tagBox {
    width: auto;
    flex: auto;
    margin: 0 10px;
    border: 1px solid #FBB040;
    text-align: center;
}
.tagBox.is-checked a{
    color: #fff;
}
.tagBox.is-checked a::after {
    transform: scaleY(1);
    opacity: 1;
}
section.tagContainer {
    margin-top: 70px;
}

.tagBoxes {
    display: flex;
    align-items: center;
    row-gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.tagBox a {
    position: relative;
    display: block;
    text-transform: uppercase;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.5s;
    z-index: 1;
    color: #8E6220;
}
.tagBox a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 2px solid #FBB040;
    border-bottom: 2px solid #FBB040;
    transform: scaleY(2);
    opacity: 0;
    transition: 0.3s;
}
.tagBox a:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FBB040;
    transform: scale(0);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}
.tagBox a:hover {
    color: #fff;
}
.tagBox a:hover:before {
    transform: scaleY(1);
    opacity: 1;
}
.tagBox a:hover:after {
    transform: scaleY(1);
    opacity: 1;
}
/*------------------------------------------------blog*/
/*------------------------------------------------blogSingle*/
.blogBox_related {
    width: 100%;
    margin-bottom: 70px;
    display: block;
}

.blogBox_related-image {
    width: 100%;
}

.blogBox_related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogBox_related-info h2 {
    font-size: 1.2rem;
    padding: 15px 0;
    font-weight: 600;
}

.blogBox_related-info .des {
    margin: 20px 0;
}

aside.blogBoxes_related {
    margin: 80px 0;
    padding-top: 70px;
    width: 100%;
    position: relative;
}
aside.blogBoxes_related:before {
    width: calc(100% - 400px);
    position: absolute;
    content: '';
    height: 1px;
    background: #000;
    top: 0;
    right: 200px;
}
/*------------------------------------------------blogSingle*/
/*------------------------------------------------contact*/
section.bannerWrapper #map {
    width: 100%;
    height: 100%;
}
section.contactContent {
    margin: 70px 0;
}

.contactBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 60px;
    margin-bottom: 60px;
}
.contactBox:last-child{
    margin-bottom: 0;
}
.contactBox-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.contactBox-image {
    width: 100%;
}

.contactBox-image img {
    width: 100%;
    object-fit: contain;
    height: auto;
}
.contactBox-info > div > * {
    display: block;
}

.contactBox-info > div {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.contactBox-info > div.number a {
    direction: ltr;
}
/*------------------------------------------------contact*/
/*------------------------------------------------about*/
section.aboutContent {
    margin: 10px 0 70px;
}
.aboutContent-text-boxes .aboutContent-text {
    width: 45%;
}

.aboutContent-text-boxes {
    display: flex;
    justify-content: space-between;
}

.aboutContent-text-boxes .aboutContent-text:nth-child(even) {
    margin-top: 120px;
}
.aboutContent-image{
    overflow: hidden;
    height: 70vh;
    margin: 40px 0;
}
section.aboutContent #canvas canvas {
    width: 100% !important;
    height: 100% !important;
}
section.aboutContent #canvas canvas {
    width: 100% !important;
    height: 100% !important;
}
section.aboutContent img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    object-fit: contain;
}
h2.aboutTitle {
    margin-bottom: 35px;
    font-size: 1.5rem;
}
.history {
    position: relative;
    margin: 180px 0;
    display: flex;
    flex-direction: column;
    row-gap: 100px;
}
.history:before {
    position: absolute;
    content: '';
    width: 1px;
    height: calc(100% + 240px);
    background: #C4C4C4;
    top: -120px;
    left: 50%;
    transform: translate(-50% , 0);
}
.historyBox {
    display: flex;
    align-items:flex-start;
    justify-content: space-between;
    position: relative;
}

.historyBox > * {
    width: 45%;
}

.historyBox-image img {
    object-fit: contain;
    width: 100%;
    height: auto;
}
.historyBox .year {
    position: absolute;
    text-align: right;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    line-height: 60px;
    top: -30px;
    left: -30px;
}

.historyBox-text{
    margin-top: 60px;
}
.historyBox:before {
    position: absolute;
    content: '';
    width: 60px;
    height: 1px;
    background: #C4C4C4;
    right: 50%;
    top: 0;
}
.historyBox.reverse {
    flex-direction: row-reverse;
}
.historyBox.reverse .year {
    text-align: left;
    right: -30px;
    left: auto;
}
.historyBox.reverse:before {
    right: auto;
    left: 50%;
}
section.certificate-container {
    margin: 80px 0;
}
.certificate-image {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.Comments-container {
    position: relative;
}
.comments {
    width: 100%;
}
.comments-swiper-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50vh;
    position: absolute;
    margin: auto;
    right: 0;
    align-items: center;
    flex-direction: row-reverse;
    z-index: 2;
}
.comments-swiper-button .swiper-button-next:after,
.comments-swiper-button .swiper-rtl .swiper-button-prev:after{
    background-image: url("./assets/img/arrowLeft.svg");
    transform: scaleX(-1);
}
.comments-swiper-button .swiper-button-prev:after,
.comments-swiper-button .swiper-rtl .swiper-button-next:after{
    background-image: url("./assets/img/arrowRight.svg");
    transform: scaleX(-1);
}
.comments-swiper-button .swiper-pagination {
    display: none;
    top: -3px;
}
.comments-swiper-button .swiper-pagination .swiper-pagination-bullet {
    background-color: #C4C4C4;
    opacity: 0.5;
}
.comments-swiper-button .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    opacity: 1;
    transform: scale(1.3);
}
.commentBox {
    position: relative;
    width: 100%;
    border: 1px solid #C4C4C4;
    padding: 20px;
    margin-bottom: 60px;
    background-color: #fff;
}
.commentBox-image {
    width: 100%;
    height: 36vh;
    margin-bottom: 20px;
}
.commentBox-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.commentText .title {
    font-weight: 700;
    border-bottom: 1px solid #C4C4C4;
    margin-bottom: 20px;
}
section.member-container {
    margin: 60px 0 80px;
}
.members {
    margin-bottom: 40px;
}
.memberBox {
    width: 100%;
    margin-bottom: 30px;
}

.memberBox-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.memberBox-text {
    padding-top: 20px;
}
/*------------------------------------------------about*/
/*------------------------------------------------footer*/
footer {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #414042;
    position: relative;
    z-index: 100;
}
footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./assets/img/footer-background.svg);
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
}
footer a {
    color: #fff;
}
.footer-text {
    margin-bottom: 40px;
}
.footer-numbers {
    display: flex;
    align-items: center;
    column-gap: 100px;
    justify-content: flex-end;
    border-bottom: 1px solid #fff;
    margin-bottom: 40px;
    width: fit-content;
}

.footer-numbers a {
    direction: ltr;
}
.footer-DokmehCopy {
    position: relative;
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

.footer-rights:before {
    position: absolute;
    content: '';
    width: 100vw;
    height: 1px;
    background: #fff;
    left: -200px;
    top: 0px;
}
.dokmeh-copyrights img {
    animation: HEARTBEAT 2s infinite;
}
@keyframes HEARTBEAT {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    5% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    10% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    15% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.dokmeh-copyrights img {
    width: 20px;
    margin: 0 10px;
}

.dokmeh-copyrights a {
    margin: 0 10px;
}
.footer-socialMedia {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.footer-img {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
}
.footer-img img {
    width: calc((100% / 7) - 20px);
    z-index: 1;
}
.footer-logo {
    display: block;
    margin-bottom: 40px;
}

.footer-menu > div {width: 100%;}

.footer-menu ul {display: flex;flex-wrap: wrap;row-gap: 20px;justify-content: space-between;}
.footer-menu ul li{
    width: 50%;
}
.footer-menu a:nth-child(odd):after ,
.footer-menu a:nth-child(even):after {
    position: absolute;
    content: '';
    width: 80%;
    height: 1px;
    background: #fff;
    bottom: -5px;
    right: 0;
    transform: scale(0);
    transition: all ease-in-out 0.35s;
    transform-origin: right;
}

.footer-menu a:nth-child(even):after {
    right: auto;
    left: 0;
    transform-origin: left;
}
.footer-menu a:nth-child(odd):hover:after ,
.footer-menu a:nth-child(even):hover:after{
    transform: scale(1);
}
.footer-menu a:nth-child(even){
    text-align: left;
}
/*------------------------------------------------footer*/
/*------------------------------------------------404*/

main#not-found {
    min-height: 70vh;
}

main#not-found .wrapper {
    display: flex;
    perspective: 450px;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}
main#not-found .button-boxes {
    display: flex;
    column-fill: balance;
    justify-content: center;
    column-gap: 50px;
    margin-bottom: 60px;
}
main#not-found span{
    display:inline-block;
    position:relative;
    font-size:10rem;
    font-family: "Fredoka One", cursive;
    color:#fbb752;
    transition:all 0.5s;
    animation: rotate 5s ease-in infinite;
    animation-direction: alternate;
    letter-spacing: 0.5vw;
    -webkit-text-stroke: 1.5px #fbb752;
}

@keyframes rotate{
    0%{
        transform:rotateY(90deg);
        text-shadow:0 0 0 #fbb752;
    }
    100%{
        transform:rotateY(0deg);
        text-shadow:0.1em 0.1em .05em #fbb752;
    }
}
/*------------------------------------------------404*/
@media only screen and (max-width: 768px){
    /*-----------------General Class------------------*/
    .padding{
        padding-right: 20px;
        padding-left: 20px;
    }
    main {
        padding-top: 10vh;
    }
    html , main{
        overflow-x: hidden;
    }
    /*-----------------General Class------------------*/
    /*------------------------------------------------header*/
    .rotate-logo svg {
        padding: 3px;
    }
    .mobileMenu-icon {
        display: block;
        right: 10px;
    }
    header{
        height: 10vh;
    }
    header .language {
        right: 60px;
        left: auto;
    }
    header .socialMedia {
        /*position: fixed;*/
        /*top: 4vh;*/
        /*left: 30px;*/
        display: none;
    }

    header .socialMedia:before {
        display: none;
    }
    header .navs {
        position: fixed;
        top: 10vh;
        width: 100%;
        height: calc(100% - 10vh);
        overflow-y: auto;
        background: #fff;
        flex-direction: column;
        column-gap: 0;
        padding: 20px;
        justify-content: center;
        transition: all ease-in-out 0.4s;
        pointer-events: none;
        opacity: 0;
    }
    html.opMobileMenu header .navs{
        opacity: 1;
        pointer-events: auto;
    }
    .rotate-logo svg {
        bottom: 10px;
        padding: 5px;
    }
    header nav {
        flex-direction: column;
        row-gap: 25px;
        margin-bottom: 25px;
    }
    .tab-pane-button {
        margin: 40px 0 60px;
    }
    #products-navTabs {
        top: 0;
        padding: 20px;
        min-height: calc(100vh - 10vh);
        max-height: calc(100vh - 10vh);
        z-index: 99;
    }
    #products-navTabs #pills-tab li.nav-item {
        white-space: nowrap;
        display: inline-flex;
    }

    #products-navTabs #pills-tab {
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: scroll;
        border: none;
    }
    .mobile-close-productNavTabs img {
        display: block;
        margin: 0 0 20px 0;
        transform: scaleX(-1);
    }
    header .socialMedia a {
        padding: 0;
        margin: 0 20px 0 0;
    }
    #pills-tabContent .swiper-wrapper {
        flex-wrap: wrap;
        flex-direction: row;
    }
    .swiper {
        width: 100%;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .homeProduct-tileLine{
        right: 0;
    }
    .tab-pane .swiper-slide {
        padding: 5px;
    }
    header .socialMedia-mobile {
        display: flex;
        left: 20px;
    }
    /*------------------------------------------------header*/
    /*------------------------------------------------index*/
    section.homeBanner-swiper .swiper-wrapper {
        height: calc(25vh + 60px);
    }
    section.homeBanner-swiper .swiper-slide {
        height: 25vh;
    }
    section.homeAbout {
        margin: 0 0 60px;
    }
    .homeAbout-content {
        flex-direction: column;
        row-gap: 40px;
    }

    .homeAbout-content > div {
        width: 100%;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next, .swiper-button-next, .swiper-rtl .swiper-button-prev {
        width: 50px;
    }
    .homeProduct-tileLine {
        padding: 0;
    }
    .homeProduct-tileLine-img {
        height: 50vh;
    }
    section.homeProduct {
        padding-bottom: 20px;
    }
    h2.homeTitle {
        margin: 50px 0 30px;
        font-weight: 500;
        font-size: 1.1rem;
    }
    section.homeHistory , .c-fixed_wrapper{
        height: auto;
        margin-bottom: 20px;
    }
    html:not(.has-scroll-smooth) .c-fixed {
        top: 0;
        background-image: none !important;
    }
    .c-fixed, .c-fixed_target{
        top: auto;
        bottom: auto;
        margin: 0;
    }
    .homeHistory-image-mobile {
        display: block;
    }
    /*------------------------------------------------index*/
    /*------------------------------------------------products*/
    section.gool {
        display: none;
    }
    section.products-header img {
        max-width: 100%;
    }
    section.products-content {
        margin: 14vh 0 10vh;
    }
    section.products-header {
        flex-direction: column;
    }

    section.products-header h1 {
        font-size: 1.3rem;
        padding: 22px;
        border-bottom: 1px solid #C4C4C4;
        width: 100%;
        text-align: center;
        height: 70px;
    }
    section.products-content > div {
        position: initial;
    }
    .productFilter-icon {
        top: calc(10vh + 28vh + 70px);
        bottom: auto;
        left: 0;
        right: 0;
        background: #f9f9f9;
        width: 100%;
        justify-content: center;
        padding: 20px;
        height: 10vh;
        position: absolute;
        z-index: 98;
        animation: none !important;
    }
    .productFilter-icon.fixFilter {
        position: fixed;
        top: 10vh;
    }
    .productsBox {
        margin: 0;
    }
    .productFilter-panel {
        width: 100%;
        right: 0;
        left: 0;
        top:10vh;
        height: 100vh;
        padding: 20px;
        margin: 0;
        background-color: #fff;
        z-index: 100;
    }
    .productFilter-panel-close {
        position: absolute;
        right: 20px;
        display: block;
        cursor: pointer;
    }
    .productsBox[style*="visibility: visible"] .productsBox-image{
        filter: grayscale(0);
    }
    /*------------------------------------------------products*/
    /*------------------------------------------------productSingle*/
    main.productSingle-main {
        padding-top: 10vh;
        padding-right: 0;
        padding-left: 0;
    }
    .productSingle-image-thumbnailPic {
        flex-wrap: nowrap;
        overflow-x: auto;
        column-gap: 15px;
    }

    .productSingle-info {
        padding: 20px;
    }
    .swiper.mySwiper.swiper-thumbs {
        right: 20px;
    }
    .productSingle-image .swiper.mySwiper2{
        margin-bottom: 20px;
    }
    h2.aside-title {
        text-align: center;
        font-size: 1.2rem;
    }

    section.productSingle-gallery {
        margin: 0 0 40px 0;
    }

    main.productSingle-main aside {
        padding: 20px;
        margin: 40px 0;
    }
    .productSingle-image-thumbnailPic .productSingle-image-thumbnailPic-img {
        width: 150px;
    }
    .productSingle-info-orderCode {
        padding: 25px 0;
    }

    .productSingle-info-des {
        padding: 25px 0;
    }
    /*------------------------------------------------productSingle*/
    /*------------------------------------------------life*/
    section.blogContent .productSingle_loading {
        width: calc(100% - 40px);
    }
    section.lifeContent, section.blogContent {
        margin: 40px 0 70px 0;
    }
    section.bannerWrapper , .banner-image , .banner-image img {
        height: auto;
    }
    section.bannerWrapper #map {
        height: 75vh;
    }
    .banner-image #canvas {
        display: none;
    }
    .banner-image img {
        display:block;
    }
    .banner-info > * {
        width: 100%;
    }
    .banner-info .banner-date {margin-top: 20px;}
    .banner-button {
        left: 0;
        width: 200px;
        margin: 20px 0;
        position: relative;
        bottom: auto;
        border-top: 2px solid #8E8E8E;
        border-bottom: 2px solid #8E8E8E;
    }

    .banner-info {
        flex-direction: column;
        top: auto;
        transform: none;
        justify-content: center;
        position: relative;
        color: #8E8E8E;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .banner-button ,
    .banner-button:hover{
        color: #8E8E8E;
    }
    .banner-button:before {
        border-top: 1px solid #8E8E8E;
        border-bottom: 1px solid #8E8E8E;
    }
    .lifeBox , .lifeBox.reverse {
        flex-direction: column;
        row-gap: 20px;
    }

    .lifeBox > div {
        width: 100%;
    }
    .banner-info h1 {
        margin-bottom: 30px;
        font-size: 1.5rem;
    }
    /*------------------------------------------------life*/
    /*------------------------------------------------blog*/
    .tagBox {
        width: calc((100% / 2) - 20px);
    }
    .tagBox a {
        font-size: 0.85rem;
        font-weight: normal;
        padding: 7px;
    }
    /*------------------------------------------------blog*/
    /*------------------------------------------------about*/
    main#aboutMain {
        margin-top: 60px;
        padding-right: 40px;
        padding-left: 40px;
    }

    .aboutContent-text-boxes {
        flex-direction: column;
    }

    .aboutContent-text-boxes .aboutContent-text {
        width: 100%;
    }

    .aboutContent-text-boxes .aboutContent-text:nth-child(even) {
        margin-top: 20px;
    }

    h2.aboutTitle {
        text-align: center;
    }

    .history:before {
        left: auto;
        right: 0;
        transform: none;
        height: calc(100% + 200px);
    }

    .historyBox, .historyBox.reverse {
        flex-direction: column-reverse;
        row-gap: 20px;
    }

    .historyBox .year, .historyBox.reverse .year {
        position: absolute;
        font-weight: 400;
        font-size: 1rem;
        left: 90px;
        text-align: right;
    }

    .historyBox .year:before ,
    .historyBox.reverse .year:before{
        left: -23px;
        width: 20px;
        right: auto;
    }
    .historyBox > * {
        width: 100%;
        position: relative;
    }
    .history {
        padding-right: 30px;
        margin: 80px 40px 0 0;
        row-gap: 60px;
    }
    .historyBox:before ,
    .historyBox.reverse:before{
        position: absolute;
        content: '';
        width: 20px;
        height: 1px;
        background: #C4C4C4;
        right: -50px;
        top: 0;
        left: auto;
    }
    .historyBox-text {
        margin-top: 10px;
    }
    .comments-swiper-button .swiper-pagination {
        display: block;
    }
    .comments-swiper-button {
        top: 97%;
    }
    /*------------------------------------------------about*/
    /*------------------------------------------------footer*/
    footer.padding {
        padding: 0;
    }
    .footer-DokmehCopy {
        padding: 20px 20px;
        flex-direction: column;
        align-items: center;
        row-gap: 25px;
    }
    .footer-numbers {
        column-gap: 20px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: space-between;
        padding: 25px 20px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-text {
        padding: 10px 20px;
    }

    .footer-socialMedia {
        justify-content: center;
        padding: 0 20px;
    }
    .footer-menu {padding: 20px;margin: 40px 0 10px;}

    .footer-menu a:nth-child(even) {
        text-align: left;
    }
    .footer-menu a:nth-child(even):after {
        left: auto;
        right: 0;
    }
    .footer-img {
        padding: 20px;
    }

    .footer-img img {
        width: calc((100% / 4) - 20px);
    }

    .footer-rights {text-align: center;padding-bottom: 30px;}

    .footer-rights:before {
        left: 0;
    }
    /*------------------------------------------------footer*/
}
@media only screen and (min-width: 640px) and (max-width: 768px){
    /*------------------------------------------------blog*/
    .tagBox {
        width: calc((100% / 3) - 20px);
    }
    /*------------------------------------------------blog*/
    /*------------------------------------------------productSingle*/
    main.productSingle-main {
        padding-top: 12vh;
    }
    /*------------------------------------------------productSingle*/
    /*------------------------------------------------footer*/
    .footer-menu {
        margin: 0;
    }
    /*------------------------------------------------footer*/
}
@media only screen and (min-width: 769px) and (max-width: 1031px){
    /*-----------------General Class------------------*/
    .padding {
        padding-right: 100px;
        padding-left: 100px;
    }
    /*-----------------General Class------------------*/
    /*------------------------------------------------header*/
    header nav {
        column-gap: 20px;
    }

    header .navs {
        column-gap: 240px;
    }
    /*------------------------------------------------header*/
    /*------------------------------------------------life*/
    section.blogContent .productSingle_loading {
        width: calc(100% - 200px);
    }
    .banner-button {
        left: 100px;
    }
    /*------------------------------------------------life*/
    /*------------------------------------------------product*/
    .productFilter-icon {
        right: 20px;
    }
    /*------------------------------------------------product*/
    /*------------------------------------------------footer*/
    .footer-rights:before {
        left: -100px;
    }
    /*------------------------------------------------footer*/
}


@media only screen and (min-width: 1031px) and (max-width: 1199px){
    /*-----------------General Class------------------*/
    .padding {
        padding-right: 150px;
        padding-left: 150px;
    }
    /*-----------------General Class------------------*/
    /*------------------------------------------------life*/
    section.blogContent .productSingle_loading {
        width: calc(100% - 300px);
    }
    .banner-button {
        left: 150px;
    }
    /*------------------------------------------------life*/
    /*------------------------------------------------product*/
    .productFilter-icon {
        right: 40px;
    }
    /*------------------------------------------------product*/
    /*------------------------------------------------footer*/
    .footer-rights:before {
        left: -150px;
    }
    /*------------------------------------------------footer*/

}



