@media screen and (max-width: 991px){
    .navigation-links {
        position: fixed;
        top: -200%;
        display: none;
    }
}
:root {
    --theme-color: #ffbb00;
    --primary-color: #ba131a;
    --secondary-color: #3d3e3e;
}
body, html{
    margin: 0;
    padding: 0;
    color: var(--secondary-color);
    font-size: 100%;
    letter-spacing: normal;
    font-family: system-ui;
    overflow-x: hidden;
    width: 100%;
}
body, html, *, *::after, *::before{
    box-sizing: border-box;
}
body{
    font-family: IRANSans,sans-serif;
}
.plural{
    background: url('../../images/icons-v9.png') no-repeat;
    margin: auto;
    transition: all 0.4s;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
a{
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
}
a:hover .plural-shadow {
    filter: drop-shadow(0 0 8px black);
}
.d-flex{
    display: flex;
}
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 768px){
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
nav{
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 9998;
    background-color: #fff;
}
nav .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul li{
    position: relative;
}
nav ul li{
    padding: 18px 12px;
}
nav.fix{
    position: fixed;
}
.logo{
    padding-right: 0;
}
.navigation-links{
    padding: 0 20px;
}
.open-menu{
    height: 32px;
}
@media (min-width: 992px) {
    nav .navigation-links > li > a:after {
        background-color: var(--primary-color);
        bottom: 0;
        content: "";
        display: block;
        height: 5px;
        left: 0;
        position: absolute;
        right: 0;
        transform: rotateY(-90deg);
        transition: all .3s;
        width: 100%;
    }
    nav .navigation-links>li:hover a:after {
        transform: rotateY(0deg);
    }
}
.logo-fa-image-plural {
    background-position: -1066px -8px;
    height: 45px;
    width: 111px;
}
section {
    padding-bottom: 80px;
    padding-top: 80px;
    transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
    section {
        padding-bottom: 60px;
        padding-top: 60px;
    }
    section.sliders{
        padding-top: 0 !important;
    }
}
@media (min-width: 1200px) {
    section {
        padding-bottom: 80px;
        padding-top: 80px;
    }
}
.main-search-wrapper {
    height: 95px;
    top: 80px;
    width: 100%;
    z-index: 9997;
    background-color: var(--secondary-color);
}
.searchbar-fixed .main-search-wrapper{
    position: fixed;
}
.d-flex{
    display: flex;
}
.ltr{
    direction: ltr;
}
.rtl{
    direction: rtl;
}
.justify-content-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
.justify-content-between{
    justify-content: space-between;
}
input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
}
.form-control {
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
    color: #555;
    display: block;
    font-size: 14px;
    height: 46px;
    line-height: 1.42857;
    /*padding: 12px 18px;*/
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 100%;
}
input:focus{
    outline: none;
}
.btn {
    background-image: none;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857;
    margin-bottom: 0;
    padding: 12px 18px;
    text-align: center;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    font-family: inherit;
    border-radius: 3px;
}
.btn.btn-main {
    background-color: var(--primary-color);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    color: #fff;
}
.main-search-wrapper .btn-search {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 46px;
}
.icon-search-plural{
    display: inline-block;
    background-position: -99px -552px;
}
.main-search-wrapper .form-control{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
@keyframes glowing {
    0% {
        background-color: var(--primary-color);
        box-shadow: 0 0 5px var(--primary-color);
    }
    50% {
        background-color: #e03f45;
        box-shadow: 0 0 20px #e03f45;
    }
    100% {
        background-color: #9e090f;
        box-shadow: 0 0 5px #9e090f;
    }
}
.free-design_btn {
    /*animation: glowing 1300ms infinite;*/
    background-color: transparent;
    padding: 0;
    margin: 0;
    max-height: 48px;
}
.main-search-wrapper ul li{
    padding: 10px;
}
.main-search-wrapper ul li:last-child{
    padding-left: 0;
}
.main-search-wrapper ul li a{
    color: #fff;
}
.homepage-free{
    display: none;
}
@media screen and (max-width: 576px){
    .homepage-free{
        display: block;
    }
    .homepage-free-design{
        display: none;
    }
    .free-design_btn.header-free{
        display: none;
    }
    .searchbar.hideTop .main-search-wrapper{
        top: -160px;
    }
    .main-header{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 !important;
        height: 75px !important;
    }
    .main-header header{
        margin: 0 !important;
        padding: 0 !important;
    }
    .logo{
        padding-right: 12px;
    }
}
.icon-menu-plural {
    background-position: -305px -504px;
    height: 24px;
    width: 24px;
}
.open-menu{
    display: none;
}
.menu-icons {
    height: 24px;
    transition: all 0ms;
    width: 24px;
}
.icon-user-plural {
    background-position: -64px -524px;
}
.navigation-icons li{
    padding: 6px 12px;
    display: flex;
    align-items: center;
}
.navigation-icons > li:last-child{
    display: none;
}
li.top-phone-number{
    padding-left: 0;
}
.top-phone-number a{
    color: var(--primary-color);
    align-items: baseline;
}
.top-phone-number span{
    font-size: 14px;
}
.phone-image-plural {
    width: 23px;
    height: 22px;
    margin: 0 3px 0 0;
    background-position: -8px -8px;
    position: relative;
    top: 3px;
}
.p-0{
    padding: 0;
}
.py-0{
    padding-top: 0;
    padding-bottom: 0;
}
.lang-symbol-icon{
    /*border: 1px solid var(--primary-color);*/
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-top: 2px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
}
.child-menu{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    min-width: 100px;
    background-color: #fff;
    transition: all 0.4s;
    top: 100%;
    padding: 10px 0;
    z-index: 9999;
}
.child-menu a:hover{
    color: var(--secondary-color);
}
.extra-links li{
    position: relative;
}
nav ul li:hover .child-menu, .extra-links li:hover .child-menu{
    opacity: 1;
    visibility: visible;
}
.child-menu.products-menu{
    min-width: 950px;
    right: -1px;
    padding: 20px;
}
.child-menu.products-menu li{
    padding: 10px 6px 0;
}
.child-menu.products-menu li a{
    width: 100%;
    display: block;
    padding-bottom: 5px;
}
.child-menu.products-menu li a {
    /*border-bottom: 1px solid #ffc933;*/
}
.child-menu.products-menu ul li:last-child a {
    border-bottom: none;
}
.text-center{
    text-align: center;
}
.col-md-6{
    width: 50%;
    padding: 0 15px;
}
.col-md-12{
    width: 100%;
    padding: 0 15px;
}
.d-none{
    display: none;
}
.office-icon-text-plural {
    width: 228px;
    height: 60px;
    background-position: -395px -590px;
}
.hotel-icon-text-plural {
    width: 228px;
    height: 60px;
    background-position: -395px -668px;
}
@media (max-width: 991px) {
    nav{
        height: 63px;
    }
    nav .container{
        width: 100%;
        padding: 0 10px;
    }
    .searchbar{
        display: none;
    }
    .open-menu{
        display: block;
    }
    .logo .logo-fa-image-plural {
        /*background-position-y: -60px;*/
    }
    .menu-icons {
        background-position-y: -552px;
    }
    li.top-phone-number{
        display: none;
    }
    .lang-symbol-icon{
        /*color: #fff;*/
        border-color: #fff;
    }
    .navigation-links{
        background-color: #fff;
        display: block;
        width: 100%;
        z-index: 9998;
        transition: all 0.7s;
    }
    .navigation-links li a{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .navigation-links.expand{
        top: 58px;
        max-height: 500px;
        padding-bottom: 50px;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        box-shadow: 1px 2px 3px rgb(0 0 0 / 40%);
    }
    .navigation-links:not(.expand) > li:not(:first-child){
        width: 90%;
        margin: auto;
        padding: 12px 0;
    }
    .navigation-links li a{
        padding: 0 6px;
    }
    .navigation-links li:hover .child-menu{
        /*display: block;*/
        width: 100%;
        background-color: #494a4a;
    }
    .navigation-icons > li:last-child{
        display: block;
    }
    .main-search-wrapper form {
        width: 100%;
    }
    .main-search-wrapper{
        top: 58px;
    }

    .child-menu.products-menu{
        display: none;
    }
    .child-menu.products-menu ul{
        padding: 0 10px;
    }
    .child-menu.products-menu .d-flex{
        display: block;
        box-shadow: 0px 0px 9px rgba(0,0,0,0.4);
    }
    .child-menu.products-menu .label a{
        flex-wrap: wrap;
    }
    .child-menu.products-menu .col-md-6{
        padding: 0;
        width: 100%;
    }
    .child-menu.products-menu li a{
        border-color: #fff;
        padding-bottom: 10px;
    }
    .child-menu.products-menu ul li:last-child a{
        border-bottom: 1px solid #fff;
    }
    .child-menu.products-menu .row > div:last-child ul li:last-child a {
        border-bottom: none;
    }
    .child-menu.products-menu a p{
        width: 100%;
    }
    .open-dropdown .icon{
        font-size: 15px;
    }
    li.user-li{
        display: none;
    }
    #search-form {
        right: auto !important;
        top: 100% !important;
    }
}
@media (min-width: 768px) {
    .main-search-wrapper form {
        width: 50%;
    }
}

/*CSS From master.blade*/
.wrapper section:not(.main-header):nth-of-type(2){
    margin-top: 0;
    padding-top: 0;
}
@media (min-width: 992px) {
    section.main-header{
        margin-top: 0;
    }
}

.main-search-wrapper form {
    width: 50%;
}
.main-search-wrapper .form-control{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0 15px;
}

.breadcrumb {
    background-color: #f5f5f5;
    border-radius: 3px;
    list-style: none;
    margin-bottom: 20px;
    padding: 8px 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb>li {
    display: inline-block;
}
.hidden {
    display: none!important;
}
.pt-0, .py-0 {
    padding-top: 0!important;
}
.container:after, .container:before {
    content: " ";
    display: table;
}
.filters .filter-content {
    background-color: #fff;
    border-top: 1px solid #ddd;
    display: none;
    padding: 10px;
}
.checkbox, .radio {
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    position: relative;
}
.checkbox {
    margin: 0;
    padding: 5px 0;
}
.flex-wrap {
    flex-wrap: wrap;
}
@media (min-width: 992px)
{
    .col-md-9 {
        width: 75%;
    }
}
.mfp-hide{
    display: none;
}
.float-social-container{
    height: 34px;
    display: flex;
    justify-content: center;
}
.float-social-container .social-icon{
    width: 34px;
    height: 34px;
    background-position-y: -503px;
    margin: 2px 5px;
}
.float-social-container .whatsapp-icon{
    background-position-x: -623px;
}
.float-social-container .telegram-icon{
    background-position-x: -666px;
}
.float-social-container .instagram-icon{
    background-position-x: -753px;
}
.float-social-container .facebook-icon{
    background-position-x: -709px;
}

@media (max-width: 991px) {

    .navigation-links li:hover .child-menu{
        display: block;
    }
}
@media (max-width: 768px) {
    .col-md-6{
        width: 100%;
    }
}
.h6, h6 {
    margin-bottom: 15px;
    margin-top: 15px;
}
@media screen and (max-width: 576px){
    section.main-header, section.products, section.product {
        margin-top: 63px !important;
    }
}
