/* ریست پایه */
* {
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 auto;
}

/* تابع کمکی برای محاسبه عرض بر اساس 12 ستون */
:root {
    --col-1: 8.333333%;
    --col-2: 16.666667%;
    --col-3: 25%;
    --col-4: 33.333333%;
    --col-5: 41.666667%;
    --col-6: 50%;
    --col-7: 58.333333%;
    --col-8: 66.666667%;
    --col-9: 75%;
    --col-10: 83.333333%;
    --col-11: 91.666667%;
    --col-12: 100%;
}

/* XS (پایه برای موبایل) */
[class^="col-xs-"], [class*=" col-xs-"] {
    width: 100%;
}

.col-xs-1 {
    flex-basis: var(--col-1);
    max-width: var(--col-1);
}

.col-xs-2 {
    flex-basis: var(--col-2);
    max-width: var(--col-2);
}

.col-xs-3 {
    flex-basis: var(--col-3);
    max-width: var(--col-3);
}

.col-xs-4 {
    flex-basis: var(--col-4);
    max-width: var(--col-4);
}

.col-xs-5 {
    flex-basis: var(--col-5);
    max-width: var(--col-5);
}

.col-xs-6 {
    flex-basis: var(--col-6);
    max-width: var(--col-6);
}

.col-xs-7 {
    flex-basis: var(--col-7);
    max-width: var(--col-7);
}

.col-xs-8 {
    flex-basis: var(--col-8);
    max-width: var(--col-8);
}

.col-xs-9 {
    flex-basis: var(--col-9);
    max-width: var(--col-9);
}

.col-xs-10 {
    flex-basis: var(--col-10);
    max-width: var(--col-10);
}

.col-xs-11 {
    flex-basis: var(--col-11);
    max-width: var(--col-11);
}

.col-xs-12 {
    flex-basis: var(--col-12);
    max-width: var(--col-12);
}

/* SM ≥ 576px */
@media (min-width: 576px) {
    .col-sm-1 {
        flex-basis: var(--col-1);
        max-width: var(--col-1);
    }

    .col-sm-2 {
        flex-basis: var(--col-2);
        max-width: var(--col-2);
    }

    .col-sm-3 {
        flex-basis: var(--col-3);
        max-width: var(--col-3);
    }

    .col-sm-4 {
        flex-basis: var(--col-4);
        max-width: var(--col-4);
    }

    .col-sm-5 {
        flex-basis: var(--col-5);
        max-width: var(--col-5);
    }

    .col-sm-6 {
        flex-basis: var(--col-6);
        max-width: var(--col-6);
    }

    .col-sm-7 {
        flex-basis: var(--col-7);
        max-width: var(--col-7);
    }

    .col-sm-8 {
        flex-basis: var(--col-8);
        max-width: var(--col-8);
    }

    .col-sm-9 {
        flex-basis: var(--col-9);
        max-width: var(--col-9);
    }

    .col-sm-10 {
        flex-basis: var(--col-10);
        max-width: var(--col-10);
    }

    .col-sm-11 {
        flex-basis: var(--col-11);
        max-width: var(--col-11);
    }

    .col-sm-12 {
        flex-basis: var(--col-12);
        max-width: var(--col-12);
    }
}

/* MD ≥ 768px */
@media (min-width: 768px) {
    .col-md-1 {
        flex-basis: var(--col-1);
        max-width: var(--col-1);
    }

    .col-md-2 {
        flex-basis: var(--col-2);
        max-width: var(--col-2);
    }

    .col-md-3 {
        flex-basis: var(--col-3);
        max-width: var(--col-3);
    }

    .col-md-4 {
        flex-basis: var(--col-4);
        max-width: var(--col-4);
    }

    .col-md-5 {
        flex-basis: var(--col-5);
        max-width: var(--col-5);
    }

    .col-md-6 {
        flex-basis: var(--col-6);
        max-width: var(--col-6);
    }

    .col-md-7 {
        flex-basis: var(--col-7);
        max-width: var(--col-7);
    }

    .col-md-8 {
        flex-basis: var(--col-8);
        max-width: var(--col-8);
    }

    .col-md-9 {
        flex-basis: var(--col-9);
        max-width: var(--col-9);
    }

    .col-md-10 {
        flex-basis: var(--col-10);
        max-width: var(--col-10);
    }

    .col-md-11 {
        flex-basis: var(--col-11);
        max-width: var(--col-11);
    }

    .col-md-12 {
        flex-basis: var(--col-12);
        max-width: var(--col-12);
    }
}

/* LG ≥ 992px */
@media (min-width: 992px) {
    .col-lg-1 {
        flex-basis: var(--col-1);
        max-width: var(--col-1);
    }

    .col-lg-2 {
        flex-basis: var(--col-2);
        max-width: var(--col-2);
    }

    .col-lg-3 {
        flex-basis: var(--col-3);
        max-width: var(--col-3);
    }

    .col-lg-4 {
        flex-basis: var(--col-4);
        max-width: var(--col-4);
    }

    .col-lg-5 {
        flex-basis: var(--col-5);
        max-width: var(--col-5);
    }

    .col-lg-6 {
        flex-basis: var(--col-6);
        max-width: var(--col-6);
    }

    .col-lg-7 {
        flex-basis: var(--col-7);
        max-width: var(--col-7);
    }

    .col-lg-8 {
        flex-basis: var(--col-8);
        max-width: var(--col-8);
    }

    .col-lg-9 {
        flex-basis: var(--col-9);
        max-width: var(--col-9);
    }

    .col-lg-10 {
        flex-basis: var(--col-10);
        max-width: var(--col-10);
    }

    .col-lg-11 {
        flex-basis: var(--col-11);
        max-width: var(--col-11);
    }

    .col-lg-12 {
        flex-basis: var(--col-12);
        max-width: var(--col-12);
    }
}

/* Container معمولی با حداکثر عرض و وسط‌چین */
.container {
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Container-fluid همیشه عرض 100% */
.container-fluid {
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/*گرید های بوتسرپ*/

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url(/assets/fonts/IRANSansWeb.eot?);
    src: url(/assets/fonts/IRANSansWeb.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/IRANSansWeb.woff2) format("woff2"), url(/assets/fonts/IRANSansWeb.woff) format("woff"), url(/assets/fonts/IRANSansWeb.ttf) format("truetype")
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0
}

.dev-0 {
    display: block !important
}

.dev-1 {
    display: none !important
}

body {
    font-family: IRANSans;
    color: #2a2a2a;
    direction: rtl !important;
    display: block;
    width: 100%;
    margin: auto;
    position: relative;
    font-size: 13px;
}

a {
    text-decoration: none;
    cursor: pointer;
}
.footer-sec{
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #ececec;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.button, button {
    font-family: 'IRANSans';
    display: inline-block;
    background: #E91E63;
    padding: 9px 25px 11px 25px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    font-size: 13px;
    border: none;
}

button:hover, button:focus, .button:hover, .button:focus {
    color: #ffffff;
    text-decoration: none;
    background: #d41958;
}

h1 {
    line-height: 2.2;
    font-size: 21px;
    direction: rtl;
}

h2 {
    line-height: 2.2;
    font-size: 18px;
    direction: rtl;
}

h3 {
    line-height: 2.2;
    font-size: 15px;
    direction: rtl;
}

.no-padding {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.header {
    height: 50px !important;
    margin: auto;
    padding: 0;
    position: relative
}

.headpadd {
    padding: 0
}

.head-sec {
    background-color: unset;
    z-index: 5
}

.log-head {
    background-color: #fff;
    display: block;
    margin: auto;
    position: relative !important;
    float: unset !important;
    display: block;
    float: left;
    height: 100%
}

.head-logo {
    display: block;
    padding: 0;
    text-align: center;
    float: left;
}

.logo-codoseo {
    height: 50px;
    display: block;
    margin-top: 3px;
    width: 100%
}

.head-text {
    display: block;
    direction: rtl;
    text-align: right;
    padding: 0 0 15px 0px;
    float: left;
}

.head-ul {
    height: 50px;
    display: block;
    padding: 0 16px;
    margin: auto;
    list-style: none;
    float: right
}

.head-ul li ul {
    list-style: none;
    display: none
}

.head-ul-first li {
    padding: 19px 0 17px !important
}

.head-ul li {
    padding: 15px 0;
    color: #5c5c5c;
    float: right;
    width: auto;
    margin: 0 0 0 15px
}

.footer {
    text-align: center;
    display: block;
    height: 40px;
    padding: 12px 0;
    width: 100%;
    margin-top: 20px;
    color: #888 !important;
    box-shadow: 0 -8px 11px -10px #a1a1a1
}

.footer a {
    color: #888 !important
}

.head-ul li a {
    color: #5c5c5c;
    text-decoration: none;
    font-size: 13px
}

.head-ul li a:hover {
    color: #ff9800 !important
}

.active-them a {
    color: #ff9800 !important
}

.serach-head {
    height: 53px;
    width: 30%;
    display: block;
    float: left;
    border-radius: 6px;
    margin: 0;
    padding-top: 15px
}

.serach-head input {
    height: 30px;
    padding: 0;
    color: #5c5c5c;
    border: none;
    background-color: unset !important;
    font-size: 13px;
    width: 86%;
    outline: 0;
    border: none;
    background-color: unset !important
}

.serach-head i {
    font-size: 17px;
    position: relative
}

.line-menu {
    display: block;
    width: 70%;
    border-bottom: 1px solid #d3d3d3;
    margin: auto
}

.menu-footer {
    height: 35px;
    width: 21%;
    display: block;
    float: left;
    color: #5c5c5c
}

.menu-footer a {
    text-decoration: none;
    height: 100%;
    display: block;
    float: right;
    padding: 0 5px 0 0
}

.btn-head {
    color: #fff !important;
    border: 1px solid #5c5c5c4a;
    border-radius: 6px;
    margin: 6px 0 0;
    height: 35px;
    font-size: 15px;
    outline: 0;
    width: 100%;
    padding: 6px !important;
    text-align: center
}

.call {
    background-color: #1dbf73;
    color: #fff;
    margin-left: 0;
    width: 33px;
    height: 33px;
    padding: 7px 5px;
    border-radius: 5px;
    margin-right: 5px;
    position: relative;
    display: block;
    float: left
}

.call:hover {
    background-color: #12b468
}

.call span {
    font-size: 13px
}

.log i {
    color: #fff;
    transform: rotate(-45deg);
    font-size: 20px;
    position: relative;
    top: -1px;
    right: 2px
}

.log {
    background-color: rgba(236, 63, 63, .831372549)
}

.log:hover {
    background-color: rgba(223, 30, 30, .831372549)
}

.basket {
    background-color: #00afdd;
    color: #fff
}

.order {
    background-color: #f8a316;
    color: #fff
}

#call i {
    font-size: 26px;
    top: -4px;
    right: 0
}

.img-icons-login-pv {
    width: 120%;
    margin: auto;
    position: relative;
    left: 2px;
    top: -4px
}

.img-icons-whatsapp-pv {
    width: 100%;
    position: relative;
    top: -3px
}

.img-icons-footer-pv {
    width: 26px;
    padding: 6px 0;
    margin: 0 12px
}

.img-icons-pv {
    width: 104%;
    position: relative;
    top: -2px
}

#users {
    background-color: #f8911e;
    text-align: center
}

.sub-menu-new {
    display: none;
    position: absolute
}

#reg-content {
    background-color: #00b4b4;
    width: auto;
    font-size: 13px;
    padding: 7px 11px
}

a:hover, a:focus {
    color: unset;
    text-decoration: none
}

.btn-head i {
    font-size: 20px;
    transform: rotate(-45deg)
}

#users:hover {
    background-color: #f18104
}

#reg-content:hover {
    background-color: #00afaf
}

@-webkit-keyframes example {
    100% {
        height: 100%;
        width: 100%
    }
}

@keyframes example {
    100% {
        height: 100%;
        width: 100%
    }
}

@-webkit-keyframes example2 {
    100% {
        display: none
    }
}

@keyframes example2 {
    100% {
        display: none
    }
}

#mult {
    display: none
}

@-webkit-keyframes mult {
    0% {
        display: none
    }
    100% {
        display: block
    }
}

@keyframes mult {
    0% {
        display: none
    }
    100% {
        display: block
    }
}

@-webkit-keyframes min {
    100% {
        display: none
    }
}

@keyframes min {
    100% {
        display: none
    }
}

@-webkit-keyframes men {
    100% {
        display: block
    }
}

@keyframes men {
    100% {
        display: block
    }
}

.main-context {
    display: block;
    height: 300px;
    background-color: #fff;
    border-radius: 6px
}

.left-mod {
    display: block;
    height: 100%;
    position: relative;
    padding: 18px;
    background-color: #f7f7f7
}

.right-mod {
    display: block;
    height: 100%;
    position: relative
}

.img-log {
    width: 100%
}

.right-img {
    display: block;
    margin: auto;
    padding-top: 10px
}

.right-text {
    color: #5c5c5c;
    text-align: justify;
    font-size: 13px;
    line-height: 2;
    direction: rtl
}

.text-p, .text-p a {
    text-align: center;
    color: #5c5c5c;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    display: block;
    position: relative;
    line-height: 3
}

.text-p a {
    width: 100%;
    display: block;
    direction: ltr
}

.div-input-mod {
    width: 47%;
    height: 80px;
    float: right;
    margin-left: 10px
}

.label-mod {
    direction: rtl;
    color: #5c5c5c;
    width: 100%;
    text-align: right;
    font-size: 13px;
    display: block
}

.input-mod {
    width: 100%;
    display: block;
    border: 1px solid #d2d2d2;
    border-radius: 2px;
    height: 35px;
    margin-bottom: 15px;
    color: #5c5c5c;
    font-size: 13px;
    text-align: right;
    direction: rtl
}

.inp-model {
    margin-top: 32px
}

.btn-modal {
    border: none;
    height: 30px;
    background-color: #03a9f4;
    color: #fff;
    width: 65%;
    text-align: center;
    margin: auto;
    display: block;
    border-radius: 3px;
    box-shadow: 4px 3px 7px 0 #c1c1c1
}

.btn-modal-close {
    border: none;
    height: 30px;
    background-color: #f44336;
    color: #fff;
    width: 65%;
    text-align: center;
    margin: auto;
    display: block;
    border-radius: 3px;
    box-shadow: 4px 3px 7px 0 #c1c1c1
}

.second-eight {
    display: block;
    width: 100%;
    min-height: 444px;
    background-color: #ececec
}

.top-footer {
    display: block;
    height: auto;
    background-color: #efefef;
    padding: 15px;
}

.txt-foot, .txt-med, .txt-top {
    display: block;
    text-align: center;
    color: #515151;
    font-size: 13px;
    font-weight: 700
}

.txt-top {
    margin-top: 10px
}

.txt-med p a {
    text-decoration: none
}

.txt-med a i {
    text-decoration: none;
    color: #676767;
    font-size: 25px;
    text-align: center;
    padding: 10px
}

.bottom-footer {
    direction: rtl;
    padding: 40px 0;
}
.box-end-footer{
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: space-between;

}

.center-footer, .left-footer, .rihgt-footer {
    float: right;
    font-size: 13px;
    color: #676767;
    text-align: justify;
    margin-top: 6px
}

.text-footer {
    text-align: justify;
    direction: rtl;
    margin-top: 10px;
    line-height: 3
}

.list-bottom-footer {
    display: block;
    list-style: none;
    height: auto;
    padding: 5px 6px 15px 0
}

.list-bottom-footer li {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    overflow: hidden;
    text-wrap: nowrap;
    overflow-wrap: anywhere
}

.list-bottom-footer li a {
    text-decoration: none;
    color: #676767
}

.bottom-footer-text {
    display: block;
    font-weight: 700;
    font-size: 14px
}

.center-footer {
    padding: 35px 30px
}

.namad {
    background-color: #fff;
    border: 1px solid #bcbcbc;
    border-radius: 8px;
    width: 100px;
    height: 100px;
    margin: 6px auto
}

.namad img {
    display: block;
    height: 100px;
    width: 100px
}

.disp {
    display: block;
    height: 21px
}

.phone-text {
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    line-height: 2.6
}

.phone {
    text-align: center;
    font-size: 16px;
    min-height: 25px;
    direction: ltr;
    line-height: 2
}

.address {
    font-size: 14px;
    line-height: 2.6
}

.phone a {
    font-size: 20px;
    line-height: 2.6;
    color: #5a5959;
    text-decoration: none
}

.copyy {
    text-align: center;
    color: #4a4a4a;
    font-size: 13px;
    direction: rtl
}

.call-tabs {
    display: none
}

.call-tab {
    display: none
}

.desk-dev {
    display: block
}

.mob-dev {
    display: none
}

.img-fixed i {
    font-size: 13px;
    top: 38px;
    position: relative;
    left: 22px;
    color: #fff;
    float: left
}

.img-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 88
}

#pwm-content, #pwm-seo, #pwm-application, #pwm-ads-google {
    display: none
}

.tab .active {
    background: #009688
}

.tabcontent ul {
    padding: 0
}

.tab {
    text-align: center
}

.tabcontent ul li {
    width: 25%;
    float: right;
    list-style: none;
    font-size: 13px;
    line-height: 2;
    height: 35px;
    padding: 4px;
    font-weight: 300;
    overflow: hidden;
    text-align: right
}

.tabcontent ul li a {
    color: #676767
}

.tablinks {
    background-color: #919191;
    color: #fff;
    padding: 7px;
    font-size: 13px;
    border: #ffdead;
    border-radius: 3px;
    box-shadow: 1px 1px 8px -5px #000
}

.search-co {
    display: none
}

.search-co img {
    margin: auto;
    display: block
}

.img-wp {
    width: 70px
}

.btn-go-up {
    position: fixed;
    bottom: 50px;
    background: #787878;
    height: 40px;
    width: 40px;
    right: 30px;
    border-radius: 50%;
    padding: 6px;
    text-align: center;
    font-size: 23px;
    cursor: pointer;
    z-index: 12
}

#service-pv:hover .sub-menu-new {
    display: block
}

.raychat_main_button {
    height: 49px !important;
    width: 49px !important
}

#mega-button {
    left: 130px
}

.loader {
    height: 20px;
    width: 250px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.loader--dot {
    animation-name: loader;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: #000;
    position: absolute;
    border: 2px solid #fff;
    left: 0
}

.loader--dot:first-child {
    background-color: #8cc759;
    animation-delay: .5s
}

.loader--dot:nth-child(2) {
    background-color: #8c6daf;
    animation-delay: .4s
}

.loader--dot:nth-child(3) {
    background-color: #ef5d74;
    animation-delay: .3s
}

.loader--dot:nth-child(4) {
    background-color: #f9a74b;
    animation-delay: .2s
}

.loader--dot:nth-child(5) {
    background-color: #60beeb;
    animation-delay: .1s
}

.loader--dot:nth-child(6) {
    background-color: #fbef5a;
    animation-delay: 0
}

.loader--text {
    position: absolute;
    top: 200%;
    left: 0;
    right: 0;
    width: 22rem;
    margin: auto;
    color: #6d6868
}

.loader--text:after {
    font-weight: 700;
    animation-name: loading-text;
    animation-duration: 3s;
    animation-iteration-count: infinite
}

@keyframes loader {
    15% {
        transform: translateX(0)
    }
    45% {
        transform: translateX(230px)
    }
    65% {
        transform: translateX(230px)
    }
    95% {
        transform: translateX(0)
    }
}

@keyframes loading-text {
    0% {
        content: "در حال ثبت اطلاعات"
    }
    25% {
        content: "در حال ثبت اطلاعات."
    }
    50% {
        content: "در حال ثبت اطلاعات.."
    }
    75% {
        content: "در حال ثبت اطلاعات..."
    }
}

.load-div-new {
    background: #fff;
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    margin: auto;
    text-align: center;
    align-content: center;
    align-items: center;
    vertical-align: middle;
    z-index: 15;
    overflow: hidden
}

.close-btn-new {
    font-size: 14px;
    background: #d0463c;
    height: 30px;
    width: 100px;
    padding: 6px;
    color: #fff;
    border-radius: 2px;
    margin: 145px auto 0;
    cursor: pointer
}

.float-right {
    float: right
}

.left-price h2 {
    line-height: 2
}

.btn-price {
    max-width: 150px
}

.logo-codoseo-desk {
    width: auto;
    height: 60px;
    padding: 7px 0 0 0;
}

.logo-codoseo-footer {
    margin: auto;
    width: auto;
    display: block
}

.khadamat {
    background: url(/img/service.svg);
    height: 120px;
    width: 120px;
    background-repeat: no-repeat;
    background-size: 100%;
    text-align: center;
    display: flex;
    align-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0
}

.woocommerce-breadcrumb a, .woocommerce-breadcrumb span {
    font-size: 13px !important;
    color: #484848 !important;
    line-height: 2 !important
}

.p-logo {
    margin-top: 15px !important
}

.hex-1, .hex-2, .hex-3, .hex-4, .hex-5, .hex-6, .hex-7, .hex-8, .hex-9 {
    left: 0;
    right: 0
}

.padding-box-bt {
    padding: 5px
}

.h4, h4 {
    font-size: 15px;
    line-height: 2
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px;
        margin: 1.75rem auto
    }
}

@media (min-width: 700px) and (max-width: 1100px) {
    .head-ul li {
        margin: 0 0 0 7px
    }

    .head-sec {
        width: 100%
    }

    .head-ul {
        padding: 5px
    }

    .serach-head {
        width: 39%
    }

    .left-sec2 {
        height: auto
    }

    .hex-1 i, .hex-2 i, .hex-3 i, .hex-4 i, .hex-5 i, .hex-6 i, .hex-7 i, .hex-8 i, .hex-9 i {
        font-size: 70px
    }
}

@media screen and (max-width: 650px) {
    .img-fixed {
        display: none
    }

    .main-context {
        height: auto
    }

    .img-log {
        width: 65%;
        margin: auto;
        display: block
    }

    .text-p, .text-p a {
        font-size: 13px
    }

    .text-p a {
        width: 100%;
        display: block;
        direction: ltr;
        font-size: 15px;
        padding: 0;
        height: 28px
    }

    .inp-model {
        margin-top: 0
    }

    inp-model p {
        height: 54px;
        color: #000;
        text-align: center;
        padding-top: 26px
    }

    .label-mod {
        font-size: 13px
    }

    .div-input-mod {
        width: 100%
    }

    .mon-modal-pv {
        width: 49%;
        float: right
    }

    .btn-modal {
        height: 35px;
        width: 88%;
        font-size: 13px
    }

    .div-input-mod {
        margin-left: 0
    }

    .btn-modal-close {
        height: 35px;
        width: 88%;
        font-size: 13px
    }

    .right-text {
        height: 35px
    }
}

@media screen and (max-width: 600px) {
    .tabcontent ul li {
        width: 50%
    }

    .center-footer {
        width: 100% !important;
        margin-bottom: 15px
    }

    .search-co {
        display: block
    }

    .img-fixed-top {
        display: none !important
    }
}

@media only screen and (max-width: 767px) {
    .img-wp {
        width: 85px !important;
        margin-bottom: 5px !important;
        padding: 0 !important
    }

    .services-pvs {
        float: right !important
    }

    .text-portal h1 {
        font-size: 22px !important
    }

    .text-portal-main {
        height: auto !important;
        line-height: 2;
        font-size: 15px !important
    }

    #slide-1 {
        padding-top: 100px
    }

    #slide-2 {
        padding-top: 110px
    }

    .mob-menu {
        top: 0
    }

    #slides-2 {
        z-index: 11
    }

    .flickity-slider {
        z-index: 11 !important
    }

    .header {
        background-color: #fff;
        box-shadow: 1px 1px 12px -3px #0000004a
    }

    .svg-slide {
        position: absolute;
        z-index: 10
    }

    .blog-img img {
        height: 100% !important;
        padding: 0 !important
    }

    .hex-1 p, .hex-2 p, .hex-3 p, .hex-4 p, .hex-5 p, .hex-6 p, .hex-7 p, .hex-8 p, .hex-9 p {
        font-size: 13px;
        top: -2px;
        position: relative;
        margin-bottom: 0
    }

    .carousel-cell:before, .carousel-cell__number {
        display: none !important
    }

    .carousel--selected-cell .carousel-cell.is-selected, .carousel-cell {
        background: none
    }

    .four-bottem {
        text-align: CENTER;
        margin-bottom: 20px
    }

    #call {
        font-size: 18px
    }

    .menu-footer a {
        font-size: 16px
    }

    .botom-text-pv {
        font-size: 15px !important;
        width: 100%;
        height: 300px;
        text-align: justify;
        line-height: 3.4 !important;
        top: 0 !important;
        position: relative;
        padding: 20px;
        margin: auto !important
    }

    .title-slide-pv {
        color: #5c5c5c;
        font-family: 'IRANSans';
        font-size: 24px;
        direction: rtl;
        top: 0 !important;
        margin: auto;
        text-align: center;
        line-height: 2;
        z-index: 11
    }

    .gh-button-row {
        margin: auto;
        width: 100%;
        z-index: 10;
        display: block;
        position: relative;
        top: 0;
        height: 100px;
        padding-top: 15px
    }

    .gh-button {
        width: 80%;
        height: 50px;
        text-align: center;
        margin: auto
    }

    .btn-color-slide2 {
        height: 40px;
        padding: 10px;
        border-radius: 4px
    }

    .gh-button a {
        color: #fff !important;
        display: block;
        height: 33px;
        width: 50%;
        padding: 5px 0;
        text-decoration: none;
        float: left;
        text-align: center
    }

    .botom-text-pv2 {
        font-size: 15px !important;
        width: 100%;
        text-align: justify;
        line-height: 3.4 !important;
        top: 0 !important;
        position: relative;
        padding: 20px;
        height: auto
    }

    .gh-button-row2 {
        margin: auto;
        width: 100%;
        top: 0
    }

    .slide-btn-2 {
        width: 50%;
        padding-left: 15px;
        float: left
    }

    .slide-btn-2 .btn-color-slide2 {
        width: 100%
    }

    .title-slide-pv2 {
        color: #5c5c5c;
        font-family: 'IRANSans';
        font-size: 24px;
        text-align: center;
        direction: rtl;
        top: 0 !important;
        margin-bottom: 0
    }

    .flickity-prev-next-button.previous {
        display: none
    }

    .hero-carousel .gh-button, .hero-carousel .tagline, .hero-carousel h1 {
        display: block
    }

    .flickity-prev-next-button.next {
        display: none
    }

    .sec-slide {
        padding: 0;
        min-height: 100vh;
        height: auto;
        top: 50px;
        overflow: hidden
    }

    .hero-carousel {
        height: 100%
    }

    .second-sec {
        padding: 70px 0 0;
        overflow: hidden;
        height: auto
    }

    #demo, .carousel-inner {
        height: 100%
    }

    .carousel-item {
        height: 100%
    }

    .slide-pv {
        display: block;
        height: 100%;
        width: 100%;
        position: relative;
        top: 14%
    }

    .slide-absolut {
        display: block;
        position: absolute;
        height: 100%;
        width: 100%
    }

    .slide-head-pv {
        width: 100%
    }

    .right-sec2 {
        width: 35%;
        top: 0;
        height: 85px;
        margin-bottom: 15px;
        margin-right: 10px
    }

    .text-service {
        font-size: 15px
    }

    .hex-mob {
        display: none
    }

    .left-sec2 {
        float: unset;
        padding: 40px 0 0;
        margin: auto;
        min-height: 300px;
        height: auto
    }

    .hex-1 i, .hex-2 i, .hex-3 i, .hex-4 i, .hex-5 i, .hex-6 i, .hex-7 i, .hex-8 i, .hex-9 i {
        font-size: 50px;
        top: -8px;
        position: relative;
        margin: auto;
        display: block;
        margin-right: 4px
    }

    .hex-1, .hex-2, .hex-3, .hex-4, .hex-5, .hex-6, .hex-7, .hex-8, .hex-9 {
        width: 100%
    }

    .hex-top A span {
        margin: 26px 0 10px;
        width: 100%;
        padding: 0 3px
    }

    .img-large img {
        width: 41%
    }

    .midlle-rect {
        top: 0
    }

    .cont-pad {
        top: 60px;
        position: relative;
        left: 0;
        margin: 0 auto;
        width: 90%
    }

    .second-three {
        padding: 188px 0 0
    }

    .sec-three-text {
        padding: 0;
        left: 0
    }

    .mass {
        height: 60%;
        width: 50%;
        padding: 6px
    }

    .massage-four {
        font-size: 55px;
        padding: 25px
    }

    .txt-port {
        padding: 0 15px;
        left: 0
    }

    .text-portal {
        padding: 30px 15px
    }

    .text-portal-main {
        height: 116px
    }

    .second-five {
        padding: 25px 0;
        height: auto
    }

    .six-sec {
        padding: 0;
        left: 0
    }

    .four-bottem {
        text-align: justify;
        margin-bottom: 20px
    }

    .cost-div {
        padding: 0 12px 0 6px;
        width: 100%;
        margin: 35px auto 0
    }

    .post-content {
        padding: 0;
        margin-bottom: 20px
    }

    .blog-shape {
        padding: 10px 19px;
        display: block;
        height: 100%
    }

    .blog-btn button {
        background-color: #f37e20;
        color: #fff
    }

    .second-seven {
        overflow: hidden
    }

    .second-seven svg {
        display: block;
        width: unset;
        height: 250px;
        position: absolute;
        overflow: hidden
    }

    .second-six {
        display: block;
        height: auto;
        padding: 50px 0;
        background-color: #fff
    }

    .second-eight {
        height: auto
    }

    #text-sec {
        padding: 0 15px
    }

    .text-form {
        direction: rtl
    }

    .text-footer {
        direction: rtl;
        margin-top: 10px;
        line-height: 3;
        font-size: 14px;
        text-align: justify;
        padding: 9px
    }

    .rihgt-footer a {
        text-align: center
    }

    .st-td {
        display: block;
        text-align: center
    }

    .center-footer {
        padding: 0;
        width: 100% !important
    }

    .left-footer {
        margin-bottom: 35px
    }

    .copyy {
        padding: 15px;
        line-height: 2
    }

    .list-bottom-footer li {
        font-size: 14px;
        text-align: right;
        line-height: 2.6;
        padding: 2px
    }
}

@media only screen and (min-width: 414px) and (max-width: 599px) {
    .second-sec {
        height: auto;
        position: relative;
        top: 100px
    }

    .second-five {
        height: auto
    }

    .second-six {
        height: auto
    }

    .main-sec-four {
        width: 72%;
        margin: auto
    }

    .bottem-blog {
        width: 80%;
        margin: auto
    }
}

@media only screen and (min-width: 375px) and (max-width: 413px) {
    .second-sec {
        height: auto;
        top: 100px;
        position: relative
    }

    .second-five {
        height: auto
    }

    .second-six {
        height: auto
    }

    .second-three {
        height: 95vh
    }

    .main-sec-four {
        width: 70%;
        margin: auto
    }

    .bottem-blog {
        width: 80%;
        margin: auto
    }
}

@media only screen and (min-width: 320px) and (max-width: 374px) {
    .title-slide-pv {
        font-size: 21px;
        top: 33px !important
    }

    .botom-text-pv {
        font-size: 13px !important;
        top: 17px !important
    }

    .gh-button-row {
        top: -33px
    }

    .title-slide-pv2 {
        font-size: 20px;
        top: 30px !important
    }

    .botom-text-pv2 {
        font-size: 13px !important;
        top: 17px !important
    }

    .gh-button-row2 {
        top: 0
    }

    .second-sec {
        height: auto;
        position: relative;
        top: 100px
    }

    .second-three {
        height: 100vh
    }

    .second-five {
        height: auto
    }

    .second-six {
        height: auto
    }

    .center-footer {
        padding: 0
    }

    .main-sec-four {
        width: 84%;
        margin: auto
    }

    .bottem-blog {
        width: 95%;
        margin: auto
    }

    .text-service {
        font-size: 15px
    }
}

#mega-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 50px;
    left: 140px;
    width: 50px;
    height: 150px;
    cursor: default;
    transition: all .15s ease-out;
    z-index: 1;
    will-change: width
}

#mega-button > .tooltip {
    padding: 5px 10px;
    position: absolute;
    left: 10px;
    top: 90px;
    transform: translateY(-100%);
    white-space: nowrap;
    background-color: #fff;
    border-radius: 8px;
    filter: drop-shadow(0 2px 2px rgba(120, 144, 156, 0.5));
    box-shadow: inset 0 0 0 1px rgba(120, 144, 156, 0.1);
    font-weight: 500;
    color: #1e4989;
    -webkit-animation: tooltip-hover;
    animation: tooltip-hover;
    -webkit-animation: 1s ease-in-out 0 infinite alternate both tooltip-hover;
    animation: 1s ease-in-out 0 infinite alternate both tooltip-hover;
    transition: all .15s ease-out;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    will-change: opacity
}

#mega-button > .tooltip::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 1px;
    left: 8px;
    width: 12px;
    height: 6px;
    background-color: inherit;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform: translateY(100%)
}

#mega-button > .sub-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 80%;
    width: 125px;
    height: 36px;
    text-decoration: none !important;
    box-shadow: 0 10px 20px -10px #1a237e;
    transform: translate(-50%, -50%) scale(0.75);
    transition: inherit;
    z-index: -1;
    will-change: transform, transition-duration;
    color: #fff;
    text-align: left;
    direction: ltr;
    border-radius: 3px;
    left: 45%
}

#mega-button > .sub-button::before {
    font-family: "Font Awesome 5 Pro";
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    transform: rotate(-90deg);
    transition: inherit;
    will-change: transform
}

#mega-button:hover, #mega-button:focus {
    width: calc(50px + 2px + 123px)
}

#mega-button:hover::before, #mega-button:focus::before {
    transform: rotate(45deg) scale(0.675);
    padding-right: 2px;
    box-shadow: 7.5px 7.5px 20px -10px rgba(55, 71, 79, 0)
}

#mega-button:hover::after, #mega-button:focus::after {
    width: 200px
}

#mega-button:hover > .sub-button::before, #mega-button:focus > .sub-button::before {
    transform: rotate(0deg)
}

#mega-button:hover > .sub-button:nth-of-type(1), #mega-button:focus > .sub-button:nth-of-type(1) {
    transform: translate(-50%, -180%) scale(1);
    transition-delay: .1s
}

#mega-button:hover > .sub-button:nth-of-type(1):hover, #mega-button:focus > .sub-button:nth-of-type(1):hover {
    transform: translate(-50%, -180%) scale(1.18);
    transition-duration: .15s
}

#mega-button:hover > .sub-button:nth-of-type(2), #mega-button:focus > .sub-button:nth-of-type(2) {
    transform: translate(-50%, calc(-340% + 15px)) scale(1);
    transition-delay: .05s
}

#mega-button:hover > .sub-button:nth-of-type(2):hover, #mega-button:focus > .sub-button:nth-of-type(2):hover {
    transform: translate(-50%, calc(-340% + 15px)) scale(1.18);
    transition-duration: .15s
}

#mega-button:hover > .sub-button:nth-of-type(3), #mega-button:focus > .sub-button:nth-of-type(3) {
    transform: translate(-50%, calc(-506% + 32px)) scale(1);
    transition-delay: 0
}

#mega-button:hover > .sub-button:nth-of-type(3):hover, #mega-button:focus > .sub-button:nth-of-type(3):hover {
    transform: translate(-50%, calc(-506% + 32px)) scale(1.18);
    transition-duration: .15s
}

#mega-button:hover > .sub-button:hover::before, #mega-button:focus > .sub-button:hover::before {
    transform: scale(0.85)
}

#mega-button:hover .tooltip, #mega-button:focus .tooltip, .modal:target ~ #mega-button .tooltip {
    opacity: 0
}

@-webkit-keyframes tooltip-hover {
    from {
        transform: translateY(-100%)
    }
    to {
        transform: translateY(calc(-100% - 5px))
    }
}

@keyframes tooltip-hover {
    from {
        transform: translateY(-100%)
    }
    to {
        transform: translateY(calc(-100% - 5px))
    }
}

.p-psc {
    position: relative;
    width: 100px;
    background: #e91e63;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    left: 86px;
    top: 4px;
    display: none
}

#mega-button:hover .p-psc, #mega-button:hover #phone-a, #mega-button:hover #whats-app-btn {
    display: block
}

#heads-phone {
    position: absolute;
    top: 70%;
    bottom: 0;
    padding: 0;
    left: 0;
    margin: 0;
    color: #fff;
    transition: inherit;
    box-sizing: border-box;
    cursor: inherit;
    box-shadow: 0 10px 20px -10px #1faf95;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    will-change: transform, background-color, box-shadow;
    -webkit-animation: btn-example;
    animation: btn-example;
    -webkit-animation: 1s ease-in-out 0 infinite alternate both btn-example;
    animation: 1s ease-in-out 0 infinite alternate both btn-example;
    transition: all .15s ease-out;
    pointer-events: none;
    border-radius: 50%;
    background: 100% 100%/250% 100% #fff linear-gradient(135deg, transparent 33%, #1baf99 66%, #8bc34a) no-repeat
}

#mega-button:hover #heads-phone {
    position: absolute;
    top: 70%;
    bottom: 0;
    padding: 8px;
    font-size: 20px;
    left: 1px;
    margin: 0
}

.img-btn-flo {
    float: left
}

#phone-a {
    left: -43px;
    position: relative;
    color: #fff;
    font-size: 23px;
    top: -2px;
    transform: rotate(-40deg);
    display: none
}

#buttons--delete {
    background: #e91e63
}

#whats-app-btn {
    left: -38px;
    position: relative;
    color: #fff;
    font-size: 23px;
    top: -2px;
    display: none
}

#buttons--write, #buttons--write .p-psc {
    background: #4caf50
}

#mega-button:hover #buttons--write:hover {
    background: #47a14a
}

#mega-button > .sub-button {
    display: none
}

#mega-button:hover > .sub-button {
    display: flex !important
}

@keyframes btn-example {
    from {
        box-shadow: 0 2px 20px -4px #1faf95
    }
    to {
        box-shadow: -1px 1px 20px 6px #1faf95
    }
}

@media only screen and (max-width: 600px) {
    #mega-button {
        display: none
    }
}