html {
    font-size : 100%;
}

body {
    background-color              : var(--nader-color-white);
    font-family                   : "IranSans", sans-serif;
    font-size                     : 16px;
    font-weight                   : normal;
    line-height                   : 1.45em;
    color                         : #555;
    word-wrap                     : break-word;
    margin                        : 0;
    padding                       : 0;
    -webkit-box-sizing            : border-box;
    box-sizing                    : border-box;
    overflow-x                    : hidden;
}

a, a:focus {
    color           : var(--nader-color-dark);
    outline         : none;
    text-decoration : none;
    transition      : all 0.3s;
}

a i, a svg {
    transition : all 0.3s;
}

ul, ol {
    margin     : 0;
    padding    : 0;
    list-style : none;
}

a:hover {
    text-decoration : none;
}

::-moz-selection {
    background-color : var(--nader-color-dark);
    color            : var(--nader-color-white);
}

::-moz-selection {
    background-color : var(--nader-color-dark);
    color            : var(--nader-color-white);
}

::selection {
    background-color : var(--nader-color-dark);
    color            : var(--nader-color-white);
}

select {
    -webkit-box-shadow : none;
    box-shadow         : none;
    outline            : none;
}

.preloader {
    background-color : #FAFAFA;
    position         : fixed;
    width            : 100vw;
    height           : 100vh;
    z-index          : 9999;
}

.preloader .text {
    position    : absolute;
    width       : 100%;
    text-align  : center;
    top         : 50%;
    left        : 50%;
    transform   : translate(-50%, -50%);
    font-size   : 1.5rem;
    font-weight : 600;
}

@media only screen and (min-width : 576px) {
    .preloader .text {
        font-size : 2rem;
    }
}

.preloader .text span {
    display            : inline-block;
    -webkit-transition : all 0.5s;
    transition         : all 0.5s;
    -webkit-animation  : loading 2s infinite;
    animation          : loading 2s infinite;
}

.preloader .text span:nth-child(1) {
    -webkit-animation-delay : .1s;
    animation-delay         : .1s;
}

.preloader .text span:nth-child(2) {
    -webkit-animation-delay : .2s;
    animation-delay         : .2s;
}

.preloader .text span:nth-child(3) {
    -webkit-animation-delay : .3s;
    animation-delay         : .3s;
}

.preloader .text span:nth-child(4) {
    -webkit-animation-delay : .4s;
    animation-delay         : .4s;
}

.preloader .text span:nth-child(5) {
    -webkit-animation-delay : .5s;
    animation-delay         : .5s;
}

.preloader .text span:nth-child(6) {
    -webkit-animation-delay : .6s;
    animation-delay         : .6s;
}

/*--------------------------------------------------------------
# Heading
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    clear                  : both;
    font-family            : "IranSans", sans-serif;
    line-height            : 1.3em;
    color                  : var(--nader-color-dark);
    font-weight            : 500;
    -webkit-font-smoothing : antialiased;
    margin                 : 0;
}

h1 {
    font-size : 2.441em;
}

h2 {
    font-size : 1.953em;
}

h3 {
    font-size : 1.563em;
}

h4 {
    font-size : 1.25em;
}

h5 {
    font-size : 1em;
}

h6 {
    font-size : 0.8em;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
    color           : inherit;
    text-decoration : none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
    color           : inherit;
    text-decoration : none;
}

/*--------------------------------------------------------------
# Others Typography
--------------------------------------------------------------*/
blockquote {
    margin      : 0 0 1.3em;
    font-size   : 18px;
    font-style  : italic;
    border-left : 0 none !important;
    padding     : 45px;
}

blockquote.wp-block-quote:not(.is-large) {
    padding-left  : 45px;
    padding-right : 45px;
}

blockquote.wp-block-quote.is-large {
    padding : 30px;
}

blockquote cite {
    padding-left : 60px;
    position     : relative;
    color        : #868686;
    font-size    : 16px;
}

blockquote cite:before {
    content    : "";
    width      : 45px;
    height     : 1px;
    background : #6F6798;
    position   : absolute;
    top        : 50%;
    left       : 0;
}

.wp-block-pullquote blockquote {
    background : transparent;
    padding    : 0;
}

address {
    margin : 0 0 1.3em;
}

dfn, em, cite, i, code, kbd, tt, var {
    font-size : 1em;
}

em, cite, i {
    font-style : italic;
}

kbd {
    border-radius : 0;
}

abbr, acronym {
    border-bottom : 1px dotted #646363;
    cursor        : help;
}

mark, ins {
    text-decoration : none;
}

big {
    font-size : 125%;
}


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

.preloader {
    position          : fixed;
    top               : 0;
    left              : 0;
    width             : 100%;
    height            : 100%;
    z-index           : 1025;
    background-color  : var(--nader-color-dark);
    display           : -webkit-box;
    display           : -ms-flexbox;
    display           : flex;
    -webkit-box-align : center;
    -ms-flex-align    : center;
    align-items       : center;
    -webkit-box-pack  : center;
    -ms-flex-pack     : center;
    justify-content   : center;
}

.preloader-inner {
    position : relative;
    top      : -40px;
    left     : -40px;
}

.preloader-inner div {
    animation        : preloader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin : 40px 40px;
}

.preloader-inner div:after {
    content       : " ";
    display       : block;
    position      : absolute;
    width         : 7px;
    height        : 7px;
    border-radius : 50%;
    background    : var(--nader-color-main);
    margin        : -4px 0 0 -4px;
}

.preloader-inner div:nth-child(1) {
    animation-delay : -0.036s;
}

.preloader-inner div:nth-child(1):after {
    top  : 63px;
    left : 63px;
}

.preloader-inner div:nth-child(2) {
    animation-delay : -0.072s;
}

.preloader-inner div:nth-child(2):after {
    top  : 68px;
    left : 56px;
}

.preloader-inner div:nth-child(3) {
    animation-delay : -0.108s;
}

.preloader-inner div:nth-child(3):after {
    top  : 71px;
    left : 48px;
}

.preloader-inner div:nth-child(4) {
    animation-delay : -0.144s;
}

.preloader-inner div:nth-child(4):after {
    top  : 72px;
    left : 40px;
}

.preloader-inner div:nth-child(5) {
    animation-delay : -0.18s;
}

.preloader-inner div:nth-child(5):after {
    top  : 71px;
    left : 32px;
}

.preloader-inner div:nth-child(6) {
    animation-delay : -0.216s;
}

.preloader-inner div:nth-child(6):after {
    top  : 68px;
    left : 24px;
}

.preloader-inner div:nth-child(7) {
    animation-delay : -0.252s;
}

.preloader-inner div:nth-child(7):after {
    top  : 63px;
    left : 17px;
}

.preloader-inner div:nth-child(8) {
    animation-delay : -0.288s;
}

.preloader-inner div:nth-child(8):after {
    top  : 56px;
    left : 12px;
}

.theme-btn {
    background-color   : var(--nader-color-dark);
    color              : var(--nader-color-white);
    padding            : 10px 18px;
    font-weight        : 500;
    display            : -webkit-inline-box;
    display            : -ms-inline-flexbox;
    display            : inline-flex;
    -webkit-box-align  : center;
    -ms-flex-align     : center;
    align-items        : center;
    position           : relative;
    z-index            : 1;
    -webkit-transition : all 0.3s linear;
    transition         : all 0.3s linear;
    margin-bottom      : 7px;
    margin-left        : 7px;
    border-radius      : 5px;
    border             : 1px solid var(--nader-color-dark);
}

@media only screen and (min-width : 576px) {
    .theme-btn {
        padding   : 1rem 1.5rem;
        font-size : 0.87rem;
    }
}

@media only screen and (min-width : 768px) {
    .theme-btn {
        font-size : 15px;
    }
}

@media only screen and (min-width : 1200px) {
    .theme-btn {
        border-radius : 5px;
        padding       : 20px 30px;
        font-size     : 1rem;
    }
}

@media only screen and (min-width : 1720px) {
    .theme-btn {
        padding   : 1.3rem 2rem;
        font-size : 1.14rem;
    }
}

.theme-btn span {
    font-size   : 1.4rem;
    margin-left : 0.5rem;
    position    : relative;
    top         : 2px;
}

.theme-btn::before {
    content            : "";
    position           : absolute;
    width              : 100%;
    height             : 100%;
    border             : 1px solid var(--nader-color-dark);
    border-radius      : 5px;
    top                : 7px;
    left               : 7px;
    z-index            : -1;
    -webkit-transition : all 0.3s ease-in-out;
    transition         : all 0.3s ease-in-out;
}

.theme-btn:hover {
    color            : var(--nader-color-white);
    background-color : var(--nader-color-dark);
}

.theme-btn:hover::before {
    top     : 0;
    left    : 0;
    opacity : 0;
}

.btn-style2 {
    color              : var(--nader-color-dark);
    font-weight        : 600;
    font-size          : 0.8rem;
    display            : -webkit-inline-box;
    display            : -ms-inline-flexbox;
    display            : inline-flex;
    padding            : 0.65rem 1.25rem;
    position           : relative;
    border-radius      : 5px;
    overflow           : hidden;
    z-index            : 1;
    -webkit-transition : all 0.3s linear;
    transition         : all 0.3s linear;
}

@media only screen and (min-width : 576px) {
    .btn-style2 {
        padding   : 0.875rem 1.25rem;
        font-size : 0.875rem;
    }
}

@media only screen and (min-width : 768px) {
    .btn-style2 {
        padding     : 12px 15px;
        font-weight : 700;
    }
}

.btn-style2:before {
    content            : "";
    position           : absolute;
    left               : 0;
    top                : 0;
    height             : 100%;
    width              : 40px;
    background-color   : #F4F4F4;
    z-index            : -1;
    -webkit-transition : all 0.3s;
    transition         : all 0.3s;
}

.btn-style2:hover {
    color : var(--nader-color-dark);
}

.btn-style2:hover::before {
    width : 100% !important;
}

.btn-link-rounded {
    color              : var(--nader-color-dark);
    padding            : 5px 10px;
    background-color   : #F4F4F4;
    display            : inline-block;
    margin-bottom      : 10px;
    border-radius      : 4px;
    font-weight        : 400;
    font-size          : 11px;
    -webkit-transition : all 0.3s;
    transition         : all 0.3s;
}

@media (min-width : 410px) {
    .btn-link-rounded {
        padding     : 10px 15px;
        font-size   : 13px;
        font-weight : 500;
    }
}

@media (min-width : 768px) {
    .btn-link-rounded {
        font-size : 16px;
        padding   : 14px 20px;
    }
}

.btn-link-rounded:hover {
    color            : var(--nader-color-white);
    background-color : #2A2A2A;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor             : pointer;
    -webkit-appearance : button;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    outline : none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding : 0;
    border  : 0;
}

.btn.color-white:hover {
    color : #FAFAFA;
}

.btn.focus, .btn:focus {
    box-shadow : 0 0 0 0.2rem rgba(0, 0, 0, 0);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus {
    outline : none;
}

input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance : none;
    -moz-appearance    : none;
    appearance         : none;
}

input[type="search"] {
    -webkit-appearance : textfield;
}

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance : none;
}

select {
    appearance         : none;
    -webkit-appearance : none;
    -moz-appearance    : none;
    background         : transparent;
}

.sidebar-block select {
    appearance         : none;
    -webkit-appearance : none;
    -moz-appearance    : none;
    background         : transparent;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    box-shadow              : 0 0 0 1000px rgba(0, 0, 0, 0) inset;
    -webkit-box-shadow      : 0 0 0 1000px rgba(0, 0, 0, 0) inset;
    -webkit-text-fill-color : #636363 !important;
}

input:-webkit-autofill:focus {
    box-shadow              : 0 0 0 1000px rgba(0, 0, 0, 0) inset;
    -webkit-box-shadow      : 0 0 0 1000px rgba(0, 0, 0, 0) inset;
    -webkit-text-fill-color : #636363 !important;
}

.form-control:focus {
    -webkit-box-shadow : none;
    box-shadow         : none;
}

textarea {
    display : block;
    width   : 100%;
}

input, select, textarea {
    border         : none;
    vertical-align : baseline;
    font-size      : 100%;
}

.container,
.container-fluid {
    padding-left  : 16px;
    padding-right : 16px;
}

@media only screen and (max-width : 575px) {
    .container,
    .container-fluid {
        max-width : 480px;
    }
}

@-webkit-keyframes scroll1 {
    0% {
        top : -30px;
    }
    50% {
        top : 100%;
    }
    100% {
        top : -30px;
    }
}

@keyframes scroll1 {
    0% {
        top : -30px;
    }
    50% {
        top : 100%;
    }
    100% {
        top : -30px;
    }
}

@-webkit-keyframes scroll2 {
    0% {
        top : -30px;
    }
    50% {
        bottom : 100%;
    }
    100% {
        bottom : -30px;
    }
}

@keyframes scroll2 {
    0% {
        top : -30px;
    }
    50% {
        bottom : 100%;
    }
    100% {
        bottom : -30px;
    }
}

@-webkit-keyframes updownline {
    0% {
        top : -100%;
    }
    100% {
        top : 10%;
    }
}

@keyframes updownline {
    0% {
        top : -100%;
    }
    100% {
        top : 10%;
    }
}

@-webkit-keyframes fadeInDown {
    from {
        opacity   : 0;
        transform : translate3d(0, -100px, 0);
    }
    to {
        opacity   : 1;
        transform : translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity   : 0;
        transform : translate3d(0, -100px, 0);
    }
    to {
        opacity   : 1;
        transform : translate3d(0, 0, 0);
    }
}

@-webkit-keyframes loading {
    0% {
        transform   : translateY(0);
        margin-left : 0;
        opacity     : 0.3;
    }
    25% {
        transform   : translateY(-20px);
        margin-left : 10px;
        opacity     : 1;
    }
    100% {
        transform   : translateY(0);
        margin-left : 0;
        opacity     : 0.3;
    }
}

@keyframes loading {
    0% {
        transform   : translateY(0);
        margin-left : 0;
        opacity     : 0.3;
    }
    25% {
        transform   : translateY(-20px);
        margin-left : 10px;
        opacity     : 1;
    }
    100% {
        transform   : translateY(0);
        margin-left : 0;
        opacity     : 0.3;
    }
}

@-webkit-keyframes pulse {
    0% {
        transform : scale(1);
    }
    50% {
        transform : scale(1.4);
    }
    100% {
        transform : scale(1);
    }
}

@keyframes pulse {
    0% {
        transform : scale(1);
    }
    50% {
        transform : scale(1.4);
    }
    100% {
        transform : scale(1);
    }
}

@-webkit-keyframes preloader {
    0% {
        transform : rotate(0deg);
    }
    100% {
        transform : rotate(360deg);
    }
}

@keyframes preloader {
    0% {
        transform : rotate(0deg);
    }
    100% {
        transform : rotate(360deg);
    }
}

.site-header {
    top                : 0;
    left               : 0;
    bottom             : 0;
    height             : 100vh;
    position           : fixed !important;
    background-color   : #F7F5FF;
    width              : 110px;
    z-index            : 99;
    -webkit-transition : ease all 0.35s;
    transition         : ease all 0.35s;
    overflow-x         : hidden;
    overflow-y         : auto;
    -ms-overflow-style : none;
    scrollbar-width    : none;
    -webkit-box-shadow : 0 0 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow         : 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width : 1199px) {
    .site-header {
        display : none;
    }
}

.site-header::-webkit-scrollbar {
    display : none;
}

.site-header .contact-btn {
    background-color : var(--nader-color-dark);
    height           : 220px;
    margin-top       : 2rem;
    width            : 100%;
}

.site-header .contact-btn .stretched-link {
    color                : var(--nader-color-white);
    display              : -webkit-box;
    display              : -ms-flexbox;
    display              : flex;
    -webkit-box-pack     : center;
    -ms-flex-pack        : center;
    justify-content      : center;
    -webkit-box-align    : center;
    -ms-flex-align       : center;
    align-items          : center;
    font-size            : 1.15rem;
    font-weight          : bold;
    width                : 100%;
    height               : 100%;
    position             : relative;
    -webkit-writing-mode : vertical-lr;
    -ms-writing-mode     : tb-lr;
    writing-mode         : vertical-lr;
}

@media (min-height : 936px) {
    .site-header .contact-btn {
        position : absolute;
        bottom   : 0;
    }
}

.site-header .nav-brand {
    background-color  : var(--nader-color-dark);
    height            : 100px;
    width             : 110px;
    display           : -webkit-box;
    display           : -ms-flexbox;
    display           : flex;
    -webkit-box-align : center;
    -ms-flex-align    : center;
    align-items       : center;
    -webkit-box-pack  : center;
    -ms-flex-pack     : center;
    justify-content   : center;
}

.site-header .nav-brand a {
    color       : var(--nader-color-white);
    text-align  : center;
    font-weight : 700;
    font-size   : 56px;
    display     : inline-block;
    padding     : 38px 34px;
}

@media (min-height : 930px) {
    .site-header .menu {
        max-height : 615px;
    }
}

.site-header .menu ul li {
    transition : all 0.3s;
}

.site-header .menu ul li a {
    color           : var(--nader-color-dark);
    display         : flex;
    flex-direction  : column;
    align-items     : center;
    justify-content : center;
    gap             : 10px;
    padding         : 1.1rem 1.125rem 0.7rem;
    font-size       : 0.75rem;
    font-weight     : 600;
    text-align      : center;
    transition      : all 0.3s;
}

.site-header .menu ul li a img {
    width : 34px;
}

.site-header .menu ul li a i {
    font-size : 24px;
}

.site-header .menu ul li a:focus {
    color : var(--nader-color-dark);
}

.site-header .menu ul li a.active:focus {
    color : var(--nader-color-white);
}

.site-header .menu ul li a svg {
    width : 24px;
}

.site-header .menu ul li a:hover, .site-header .menu ul li a.active {
    background-color : var(--nader-color-dark);
    color            : var(--nader-color-white);
}

.site-header .menu ul li a:hover svg, .site-header .menu ul li a.active svg {
    fill : var(--nader-color-white);
}

.mob-header {
    position         : sticky;
    top              : 0;
    left             : 0;
    width            : 100%;
    z-index          : 99;
    transition       : all 0.3s;
    background-color : #3E4041;
}

@media (min-width : 1200px) {
    .mob-header {
        display : none;
    }
}

.mob-header .nav-brand {
    padding : 0;
}

.mob-header .nav-brand a {
    display          : block;
    background-color : var(--nader-color-dark);
    padding          : 10px;
}

.mob-header .nav-brand a img {
    width : 50px;
}

.mob-header .toggler-menu {
    width            : 40px;
    height           : 40px;
    position         : relative;
    margin           : 0;
    border-radius    : 0;
    padding          : 0;
    border           : none;
    background-color : transparent;
}

body:not(.rtl) .mob-header .toggler-menu {
    margin-right : 0.5rem !important;
    margin-left : auto!important;
}

.mob-header .toggler-menu span {
    position   : absolute;
    top        : 0;
    left       : 0;
    bottom     : 0;
    right      : 0;
    width      : 25px;
    height     : 2px;
    margin     : auto;
    background : var(--nader-color-white);
    box-shadow : 0 -8px 0 0 var(--nader-color-white), 0 8px 0 0 var(--nader-color-white);
}

.mobile-menu {
    position              : fixed;
    top                   : 0;
    left                  : -100%;
    background-color      : var(--nader-color-white);
    height                : 100%;
    width                 : 100%;
    max-width             : 400px;
    z-index               : 1024;
    -webkit-transition    : all 0.3s linear;
    transition            : all 0.3s linear;
    display               : -webkit-box;
    display               : -ms-flexbox;
    display               : flex;
    -webkit-box-orient    : vertical;
    -webkit-box-direction : normal;
    -ms-flex-direction    : column;
    flex-direction        : column;
}

html[dir="rtl"] .mobile-menu {
    left  : inherit;
    right : -100%;
}


.mobile-menu.is-menu-open {
    left               : 0;
    overflow-x         : hidden;
    overflow-y         : auto;
    -ms-overflow-style : none;
    scrollbar-width    : none;
}

html[dir="rtl"] .mobile-menu.is-menu-open {
    left  : inherit;
    right : 0;
}

@media (min-width : 1200px) {
    .mobile-menu {
        display : none;
    }
}

.mobile-menu .menu-header {
    flex-direction : column;
    text-align     : center;
    margin-bottom  : 0.5rem;
    position       : relative;
    padding        : 2rem 1.5rem 0;
}

.mobile-menu .menu-header .hero-img {
    width            : 100px;
    height           : 100px;
    border-radius    : 100px;
    background-color : var(--nader-color-dark);
}

.mobile-menu .menu-header .hero-img img {
    width : 60px;
}

.mobile-menu .menu-header h3 {
    font-family : "emkan", "IranSans";
    font-size   : 36px;
    font-weight : bold;
}

html[dir="rtl"] .mobile-menu .menu-header h3 {
    font-family : "emkan", "IranSans";
}

.mobile-menu .menu-header p {
    font-size   : 18px;
    line-height : normal;
    font-weight : 300;
}

.mobile-menu .menu-header .close-menu {
    position : absolute;
    right    : 20px;
    top      : 15px;
    width    : 44px;
    height   : 44px;
    display  : block;
    cursor   : pointer;
}

html[dir="rtl"] .mobile-menu .menu-header .close-menu {
    right : inherit;
    left  : 20px;
}

.mobile-menu .menu-header .close-menu:hover {
    opacity : 1;
}

.mobile-menu .menu-header .close-menu::before, .mobile-menu .menu-header .close-menu::after {
    position         : absolute;
    left             : 15px;
    content          : " ";
    height           : 26px;
    width            : 2px;
    background-color : var(--nader-color-dark);
}

.mobile-menu .menu-header .close-menu::before {
    -webkit-transform : rotate(45deg);
    transform         : rotate(45deg);
}

.mobile-menu .menu-header .close-menu::after {
    -webkit-transform : rotate(-45deg);
    transform         : rotate(-45deg);
}

.mobile-menu .menu {
    display     : block;
    max-height  : 620px;
    padding-top : 5px;
}

.mobile-menu .menu::-webkit-scrollbar {
    display : none;
}

.mobile-menu .menu li a {
    color             : var(--nader-color-dark);
    padding           : 16px 25px;
    font-size         : 16px;
    display           : -webkit-box;
    display           : -ms-flexbox;
    display           : flex;
    -webkit-box-align : center;
    -ms-flex-align    : center;
    align-items       : center;
    border-bottom     : 1px solid #EAEAEA;
    font-weight       : bold;
}

.mobile-menu .menu li svg {
    display : block;
    width   : 24px;
    margin  : 0 25px 0 0;
}

.mobile-menu .menu li img {
    display : block;
    width   : 29px;
    margin  : 0 20px 0 0;
}

.mobile-menu .menu li i {
    display   : block;
    font-size : 22px;
    margin    : 0 25px 0 0;
}

html[dir="rtl"] .mobile-menu .menu li svg {
    margin : 0 0 0 25px;
}

html[dir="rtl"] .mobile-menu .menu li img {
    margin : 0 0 0 20px;
}

html[dir="rtl"] .mobile-menu .menu li i {
    margin : 0 0 0 25px;
}

.mobile-menu .menu li.active a, .mobile-menu .menu li:hover a {
    opacity          : 1;
    background-color : #D9D9DC;
}

.mobile-menu .menu li:last-child a {
    border-bottom : none;
}

.mobile-menu .menu-footer {
    -webkit-box-ordinal-group : 4;
    -ms-flex-order            : 3;
    order                     : 3;
    background-color          : var(--nader-color-main);
    padding                   : 1rem;
    margin-bottom             : 2rem;
    margin-top                : 1rem;
}

.mobile-menu .menu-footer a {
    padding : 0 0.3rem;
}

.mobile-menu .scroll_menu_down {
    display : none;
}

body {
    position : relative;
}

.header-1 .main {
    min-height   : calc(100vh - 88px);
    padding-left : 110px;
    transition   : all 0.3s ease;
}

@media (max-width : 1199px) {

    .header-1 .main {
        padding-left  : 0;
        padding-right : 0;
    }
}

.service .owl-stage-outer {
    padding : 25px;
    margin  : 0 -25px;
}

.comment-area .comment-title {
    margin-bottom  : 2rem;
    padding-bottom : .5rem;
    border-bottom  : 1px solid #EAEAEA;
}


@media (min-width : 992px) {
    .comment-area .comment-title {
        margin-bottom  : 2rem;
        padding-bottom : 1rem;
    }
}


.comment-area .comment-title h4 {
    font-size   : 1rem;
    font-weight : 500;
    opacity     : 0.9;
}

@media (min-width : 576px) {
    .comment-area .comment-title h4 {
        font-size : 1.1rem;
    }
}

@media (min-width : 768px) {
    .comment-area .comment-title h4 {
        font-size   : 1.2rem;
        font-weight : 600;
    }
}

.comment-area .comment-title h4 small a {
    margin-right : 30px;
    font-size    : 0.8rem;
    color        : red;
}

.comment-area ul li .author-img {
    margin-right : 12px;
}

@media (min-width : 576px) {
    .comment-area ul li .author-img {
        margin-right : 1.6rem;
    }
}

.comment-area ul li .author-img img {
    width : 30px;
}

@media (min-width : 410px) {
    .comment-area ul li .author-img img {
        width : 40px;
    }
}

.comment-area ul li h5 {
    font-size     : 13px;
    font-weight   : 500;
    opacity       : 0.9;
    margin-bottom : 5px;
}

@media (min-width : 410px) {
    .comment-area ul li h5 {
        font-size : 14px;
    }
}

@media (min-width : 576px) {
    .comment-area ul li h5 {
        font-size   : 15px;
        font-weight : 600;
    }
}

@media (min-width : 1200px) {
    .comment-area ul li h5 {
        font-size : 16px;
    }
}

.comment-area ul li h6 {
    font-size   : 11px;
    font-weight : 300;
    opacity     : 0.8;
}

@media (min-width : 576px) {
    .comment-area ul li h6 {
        font-size : 13px;
    }
}

.comment-area ul li p {
    margin-top  : 0.9rem;
    font-size   : 12px;
    line-height : 1.37rem;
}

@media (min-width : 576px) {
    .comment-area ul li p {
        font-size   : 0.9rem;
        line-height : 1.5rem;
    }
}

.comment-area ul li a.reply-btn {
    font-weight        : 400;
    font-size          : 10px;
    border-radius      : 3px;
    background-color   : var(--nader-color-dark);
    padding            : 2px 10px 1px;
    -webkit-transition : all 0.3s linear;
    transition         : all 0.3s linear;
    color              : var(--nader-color-white);
}

@media (min-width : 576px) {
    .comment-area ul li a.reply-btn {
        font-size    : 12px;
        padding      : 4px 12px 3px;
        margin-right : 5px;
    }
}

.comment-area ul li a.reply-btn:hover {
    background-color : var(--nader-color-main);
}

.comment-area ul > li:not(:first-child) {
    border-top : 1px solid #EAEAEA;
    padding    : 20px 0 10px;
    margin-top : 20px;
}

@media (min-width : 576px) {
    .comment-area ul > li:not(:first-child) {
        padding : 30px 0 20px;
    }
}

.comment-area ul ul {
    padding-left : 60px;
    margin       : 20px 0 0;
}

@media (min-width : 576px) {
    .comment-area ul ul {
        margin : 25px 0 0;
    }
}

.comment-area ul ul li {
    padding      : 20px 0 20px;
    border-color : #EAEAEA !important;
}

@media (min-width : 576px) {
    .comment-area ul ul li {
        padding : 30px 0 30px;
    }
}

.comment-box input, .comment-box textarea {
    color            : #2A2A2A !important;
    border           : 1px solid #EAEAEA;
    margin-bottom    : 20px;
    background-color : transparent !important;
    padding          : 10px 12px;
    resize           : none;
    font-size        : 12px;
    border-radius    : 4px;
}

@media (min-width : 576px) {
    .comment-box input,
    .comment-box textarea {
        padding   : 1rem 1.5rem;
        font-size : 14px;
    }
}

@media (min-width : 1024px) {
    .comment-box input,
    .comment-box textarea {
        font-size : 15px;
    }
}

.comment-box input:focus,
.comment-box textarea:focus {
    border-color : var(--nader-color-dark);
}

.comment-box input {
    height : 40px;
}

@media (min-width : 576px) {
    .comment-box input {
        height : 55px;
    }
}

.comment-box button {
    margin-top : 0;
}

.comment-box .cookies .form-group {
    display       : flex;
    align-items   : center;
    gap           : 10px;
    margin-bottom : 30px;
}

.comment-notes {
    margin-bottom : 20px;
}

#wp-comment-cookies-consent {
    margin-bottom : 0;
    height        : unset;
}

.comment-box .icon-arrow svg {
    fill  : white;
    width : 24px;
}

.elements .inner-gap {
    gap : 60px 0;
}

@media (min-width : 576px) {
    .elements .inner-gap {
        gap : 80px 0;
    }
}

@media (min-width : 992px) {
    .elements .inner-gap {
        gap : 100px 0;
    }
}

.page404 {
    text-align : center;
    padding    : 75px 0;
}

@media (min-width : 576px) {
    .page404 {
        padding : 152px 0;
    }
}

.page404 .content {
    display          : inline-block;
    padding          : 50px 1rem;
    border-radius    : 15px;
    background-color : #F4F4F4;
}

@media (min-width : 576px) {
    .page404 .content {
        padding : 70px 75px;
    }
}

@media (min-width : 768px) {
    .page404 .content {
        padding : 80px 100px;
    }
}

.page404 .content h1 {
    font-size   : 80px;
    color       : var(--nader-color-dark);
    opacity     : 0.9;
    font-weight : bolder;
    line-height : 1;
}

@media (min-width : 576px) {
    .page404 .content h1 {
        font-size : 140px;
    }
}

@media (min-width : 768px) {
    .page404 .content h1 {
        font-size : 200px;
    }
}

.page404 .content h2 {
    font-size   : 1.2rem;
    opacity     : 0.8;
    line-height : 2.2;
    font-weight : 600;
}

@media (min-width : 576px) {
    .page404 .content h2 {
        font-size : 1.5rem;
    }
}

@media (min-width : 768px) {
    .page404 .content h2 {
        font-size : 1.6rem;
    }
}

.page404 .content p {
    margin-bottom : 2.3rem;
    font-size     : 0.8rem;
}

@media (min-width : 576px) {
    .page404 .content p {
        font-size : 0.9rem;
    }
}

/*--------------------------------------------------------------
# Footer-block
--------------------------------------------------------------*/
.site-footer {
    -webkit-transition : ease all 0.25s;
    transition         : ease all 0.25s;
    background-color   : var(--nader-color-dark);
    padding            : 20px 0;
}

@media (min-width : 992px) {
    .site-footer {
        padding : 30px 0;
    }
}

@media (min-width : 1200px) {
    .site-footer {
        margin-left : 110px;
        padding     : 35px 0;
    }
}

.site-footer p {
    color       : var(--nader-color-white);
    font-weight : 400;
    font-size   : 12px;
}

@media (min-width : 992px) {
    .site-footer p {
        font-size : 13px;
    }
}

.post-cover img {
    width         : 100%;
    -o-object-fit : cover;
    object-fit    : cover;
}
