html {
    font-size : 100%;
}

body {
    background-color   : var(--nader-color-white);
    font-family        : "Vazir-Regular", 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;
}

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

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            : "emkan", 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;
}

.section-title {
    position      : relative;
    margin-bottom : 35px;
}

@media (min-width : 576px) {
    .section-title {
        margin-bottom : 40px;
    }
}

@media (min-width : 992px) {
    .section-title {
        margin-bottom : 50px;
    }
}

@media (min-width : 1200px) {
    .section-title {
        margin-bottom : 3.5rem;
    }
}

@media (min-width : 1720px) {
    .section-title {
        margin-bottom : 4.75rem;
    }
}

.section-title::before, .section-title::after {
    content  : "";
    position : absolute;
    right    : 0;
    height   : 1px;
    top      : 45%;
}

.section-title::before {
    background-color : #EAEAEA;
    width            : 100%;
    z-index          : -1;
}

.section-title::after {
    background-color : #000;
    width            : 35px;
    z-index          : 1;
}

@media (min-width : 768px) {
    .section-title::after {
        width : 60px;
    }
}

.section-title .title {
    font-size        : 30px;
    font-weight      : 700;
    color            : var(--nader-color-dark);
    font-family      : "Vazir-Regular", serif;
    display          : inline-block;
    background-color : var(--nader-color-white);
    padding-right    : 18px;
    margin-top       : -8px;
}

@media (min-width : 480px) {
    .section-title .title {
        font-size : 34px;
    }
}

@media (min-width : 576px) {
    .section-title .title {
        font-size  : 40px;
        margin-top : -11px;
    }
}

@media (min-width : 768px) {
    .section-title .title {
        font-size : 44px;
    }
}

@media (min-width : 992px) {
    .section-title .title {
        font-size : 48px;
    }
}

@media (min-width : 1200px) {
    .section-title .title {
        font-size  : 60px;
        margin-top : -15px;
    }
}

@media (min-width : 1400px) {
    .section-title .title {
        font-size : 66px;
    }
}

@media (min-width : 1536px) {
    .section-title .title {
        font-size : 72px;
    }
}

.section-title .subtitle {
    display          : inline-block;
    background-color : var(--nader-color-white);
    padding-right    : 18px;
    font-size        : 18px;
}

@media (min-width : 768px) {
    .section-title .subtitle {
        font-size : 22px;
    }
}

.section-title span {
    position : relative;
    z-index  : 1;
}

.section-title span::before {
    content          : "";
    position         : absolute;
    bottom           : 5px;
    left             : 0;
    width            : 100%;
    height           : 6px;
    background-color : #B7B7B7;
    border-radius    : 10px;
    z-index          : -1;
}

@media (min-width : 480px) {
    .section-title span::before {
        height : 7px;
        bottom : 6px;
    }
}

@media (min-width : 576px) {
    .section-title span::before {
        bottom : 8px;
    }
}

@media (min-width : 992px) {
    .section-title span::before {
        bottom : 8px;
        height : 10px;
    }
}

@media (min-width : 1200px) {
    .section-title span::before {
        bottom : 10px;
    }
}

@media (min-width : 1400px) {
    .section-title span::before {
        bottom : 13px;
    }
}

/*--------------------------------------------------------------
# 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 {
    background      : var(--nader-color-white);
    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);
    }
}

.animated-bg-line {
    display               : -ms-grid;
    display               : grid;
    -ms-grid-columns      : 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns : 1fr 1fr 1fr 1fr 1fr;
    height                : 100%;
    border-left           : 1px solid rgba(0, 0, 0, 0.1);
    overflow              : hidden;
    position              : absolute;
    top                   : 0;
    width                 : 100%;
    left                  : 50%;
    -webkit-transform     : translateX(-50%);
    transform             : translateX(-50%);
    z-index               : 1;
}

@media only screen and (min-width : 1200px) and (max-width : 1719px) {
    .animated-bg-line {
        left : 60%;
    }
}

.animated-bg-line::before {
    top              : -27px;
    width            : 1px;
    left             : 0;
    content          : "";
    height           : 25px;
    position         : absolute;
    animation        : scroll1 30s ease-out infinite;
    background-color : var(--nader-color-dark);
}

.animated-bg-line .line-item {
    position     : relative;
    border-right : 1px solid rgba(0, 0, 0, 0.1);
}

.animated-bg-line .line-item::before {
    bottom           : -27px;
    width            : 1px;
    right            : -1px;
    content          : "";
    height           : 25px;
    position         : absolute;
    background-color : var(--nader-color-dark);
}

.animated-bg-line .line-item:nth-child(1)::before {
    -webkit-animation : scroll2 30s ease-out infinite;
    animation         : scroll2 30s ease-out infinite;
}

.animated-bg-line .line-item:nth-child(2)::before {
    -webkit-animation : scroll1 30s ease-out infinite 4s;
    animation         : scroll1 30s ease-out infinite 4s;
}

.animated-bg-line .line-item:nth-child(3)::before {
    -webkit-animation : scroll2 30s ease-out infinite 3s;
    animation         : scroll2 30s ease-out infinite 3s;
}

.animated-bg-line .line-item:nth-child(4)::before {
    -webkit-animation : scroll1 30s ease-out infinite 2s;
    animation         : scroll1 30s ease-out infinite 2s;
}

.animated-bg-line .line-item:nth-child(5)::before {
    -webkit-animation : scroll1 30s ease-out infinite 6s;
    animation         : scroll1 30s ease-out infinite 6s;
}

@media (max-width : 992px) {
    .animated-bg-line {
        width             : 150%;
        left              : 50%;
        -webkit-transform : translateX(-50%);
        transform         : translateX(-50%);
    }
}

.breadcrumb {
    margin-bottom : 0;
}

.breadcrumb a,
.rank-math-breadcrumb a {
    color : var(--nader-color-dark);
}

.breadcrumb a:hover,
.rank-math-breadcrumb a:hover {
    color : var(--nader-color-main);
}

.rank-math-breadcrumb .last {
    font-weight : bold;
}

.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          : 1rem;
}

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

.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);
    -webkit-box-shadow : 0 -8px 0 0 var(--nader-color-white), 0 8px 0 0 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    : 50%;
    background-color : #444;
}

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

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

.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;
}

.main {
    padding-left       : 110px;
    -webkit-transition : all 0.5s ease;
    transition         : all 0.5s ease;
    overflow           : hidden;
    min-height         : calc(100vh - 88px);
}

@media (max-width : 1199px) {
    .main {
        padding-left : 0;
    }
}

.sticky-social-media {
    position             : absolute;
    height               : 100%;
    right                : 60px;
    top                  : 0;
    display              : none;
    -webkit-box-align    : center;
    -ms-flex-align       : center;
    align-items          : center;
    -webkit-box-pack     : center;
    -ms-flex-pack        : center;
    justify-content      : center;
    z-index              : 9;
    -webkit-writing-mode : vertical-lr;
    -ms-writing-mode     : tb-lr;
    writing-mode         : vertical-lr;
}

@media (min-width : 1200px) {
    .sticky-social-media {
        display : -webkit-box;
        display : -ms-flexbox;
        display : flex;
    }
}

.sticky-social-media li {
    display : inline-block;
}

.sticky-social-media li a {
    font-weight : 700;
    padding     : 0.85rem;
    font-size   : 15px;
    color       : var(--nader-color-dark);
}

@media (min-width : 1400px) {
    .sticky-social-media li a {
        font-size : 16px;
    }
}

.sticky-social-media li a:hover {
    color : #000;
}

.about .funfacts {
    margin-top    : 20px;
    display       : -webkit-box;
    display       : -ms-flexbox;
    display       : flex;
    -ms-flex-wrap : wrap;
    flex-wrap     : wrap;
    margin-left   : -6px;
    margin-right  : -6px;
}

@media (min-width : 576px) {
    .about .funfacts {
        margin-left  : -10px;
        margin-right : -10px;
    }
}

@media (min-width : 768px) {
    .about .funfacts {
        margin-left  : -5px;
        margin-right : -5px;
    }
}

@media (min-width : 992px) {
    .about .funfacts {
        margin-top   : 40px;
        margin-left  : -10px;
        margin-right : -10px;
    }
}

@media (min-width : 1200px) {
    .about .funfacts {
        margin-top : 70px;
    }
}

@media (min-width : 1720px) {
    .about .funfacts {
        margin-top : 90px;
    }
}

.about .funfacts .column {
    width      : 100%;
    max-width  : 50%;
    padding    : 0 5px;
    margin-top : 10px;
}

@media (min-width : 576px) {
    .about .funfacts .column {
        padding    : 0 10px;
        margin-top : 20px;
    }
}

@media (min-width : 768px) {
    .about .funfacts .column {
        max-width : 25%;
        padding   : 0 5px;
    }
}

@media (min-width : 992px) {
    .about .funfacts .column {
        padding : 0 10px;
    }
}

.about .funfacts .funfacts-item {
    border             : 1px solid #EAEAEA;
    padding            : 20px 12px;
    border-radius      : 8px;
    -webkit-transition : all 0.25s linear;
    transition         : all 0.25s linear;
    text-align         : center;
}

@media (min-width : 375px) {
    .about .funfacts .funfacts-item {
        padding : 20px 10px;
    }
}

@media (min-width : 576px) {
    .about .funfacts .funfacts-item {
        padding : 24px 16px;
    }
}

@media (min-width : 768px) {
    .about .funfacts .funfacts-item {
        padding : 20px 10px;
    }
}

@media (min-width : 992px) {
    .about .funfacts .funfacts-item {
        padding    : 26px 20px 20px;
        text-align : left;
    }

    html[dir='rtl'] .about .funfacts .funfacts-item {
        text-align : right;
    }
}

@media (min-width : 1200px) {
    .about .funfacts .funfacts-item {
        padding       : 30px 30px 24px;
        border-radius : 15px;
    }
}

.about .funfacts .funfacts-item .icon {
    height        : 35px;
    margin-bottom : 10px;
}

.about .funfacts .funfacts-item .counter {
    color       : var(--nader-color-dark);
    opacity     : 0.9;
    font-weight : 600;
    font-size   : 18px;
    font-family : "Vazir-Regular", sans-serif;
    margin      : 14px 0 5px;
    line-height : normal;
}

@media (min-width : 375px) {
    .about .funfacts .funfacts-item .counter {
        font-size : 20px;
    }
}

@media (min-width : 480px) {
    .about .funfacts .funfacts-item .counter {
        font-weight : 700;
    }
}

@media (min-width : 576px) {
    .about .funfacts .funfacts-item .counter {
        font-size : 22px;
    }
}

@media (min-width : 768px) {
    .about .funfacts .funfacts-item .counter {
        margin      : 16px 0 5px;
        font-weight : 600;
    }
}

@media (min-width : 992px) {
    .about .funfacts .funfacts-item .counter {
        font-size : 28px;
    }
}

.about .funfacts .funfacts-item p {
    font-size   : 11px;
    color       : var(--nader-color-dark);
    opacity     : 0.9;
    font-weight : 500;
}

@media (min-width : 480px) {
    .about .funfacts .funfacts-item p {
        font-size : 13px;
    }
}

@media (min-width : 576px) {
    .about .funfacts .funfacts-item p {
        font-size : 14px;
    }
}

@media (min-width : 768px) {
    .about .funfacts .funfacts-item p {
        font-size : 13px;
    }
}

@media (min-width : 992px) {
    .about .funfacts .funfacts-item p {
        font-size   : 14px;
        font-weight : 600;
    }
}

.about .funfacts .funfacts-item:hover {
    background-color   : var(--nader-color-white);
    -webkit-box-shadow : 0 10px 25px rgba(38, 39, 40, 0.1);
    box-shadow         : 0 10px 25px rgba(38, 39, 40, 0.1);
}

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

.all-blogs,
.blog-details {
    margin : 55px 0;
}

@media (min-width : 768px) {
    .all-blogs,
    .blog-details {
        margin : 80px 0 70px;
    }
}

@media (min-width : 992px) {
    .all-blogs,
    .blog-details {
        margin : 120px 0 110px;
    }
}

.blog-details .post-media {
    border-radius : 8px;
    overflow      : hidden;
    margin-bottom : 26px;
}

@media (min-width : 576px) {
    .blog-details .post-media {
        border-radius : 16px;
        margin-bottom : 34px;
    }
}

@media (min-width : 768px) {
    .blog-details .post-media {
        margin-bottom : 48px;
    }
}

.blog-details .blog-post-header .date,
.blog-details .blog-post-header .category {
    font-size : 12px;
}

.blog-details .blog-post-header .category a:hover {
    color : var(--nader-color-main);
}

@media (min-width : 410px) {
    .blog-details .blog-post-header .date,
    .blog-details .blog-post-header .category {
        font-size : 13px;
    }
}

@media (min-width : 768px) {
    .blog-details .blog-post-header .date,
    .blog-details .blog-post-header .category {
        font-size : 15px;
    }
}

.blog-details .blog-post-header .blog-post-title {
    font-weight : 600;
    font-size   : 15px;
    line-height : 1.65;
    opacity     : 0.9;
    margin-top  : 5px;
}

@media (min-width : 480px) {
    .blog-details .blog-post-header .blog-post-title {
        font-size : 18px;
    }
}

@media (min-width : 576px) {
    .blog-details .blog-post-header .blog-post-title {
        font-size : 20px;
    }
}

@media (min-width : 768px) {
    .blog-details .blog-post-header .blog-post-title {
        font-size   : 26px;
        line-height : 2.25rem;
        margin-top  : 10px;
    }
}

@media (min-width : 1200px) {
    .blog-details .blog-post-header .blog-post-title {
        font-size   : 28px;
        line-height : 40px;
    }
}

.blog-details p {
    line-height : 2.3rem;
    margin-top  : 1.5rem;
    font-size   : 13px;
}

@media (min-width : 480px) {
    .blog-details p {
        font-size : 14px;
    }
}

@media (min-width : 576px) {
    .blog-details p {
        font-size : 16px;
    }
}

.blog-details .inner-desc > ul {
    margin : 1rem 0;
}

.blog-details .inner-desc > ul li {
    display      : inline-block;
    color        : #2A2A2A;
    opacity      : 0.8;
    width        : 100%;
    line-height  : 2rem;
    position     : relative;
    padding-left : 1.5rem;
    font-size    : 13px;
}

@media (min-width : 768px) {
    .blog-details .inner-desc > ul li {
        font-size   : 16px;
        line-height : 2.25rem;
    }
}

.blog-details .inner-desc > ul li::before {
    content       : "";
    position      : absolute;
    left          : 0;
    top           : 14px;
    width         : 7px;
    height        : 7px;
    border-radius : 50%;
    background    : var(--nader-color-main);
}

@media (min-width : 768px) {
    .blog-details > .inner-desc ul {
        margin : 1.5rem 0;
    }
}

@media (min-width : 768px) {
    .blog-details .blockquote {
        margin : 40px 0;
    }
}

@media (min-width : 992px) {
    .blog-details .blockquote {
        padding-left : 0;
        border-left  : 0;
        margin       : 40px auto;
    }
}

html[dir='rtl'] .blog-details .blockquote {
    padding-left  : 0;
    padding-right : 16px;
    border-left   : 0;
    border-right  : 2px solid #DDD;
}

@media (min-width : 992px) {
    html[dir='rtl'] .blog-details .blockquote {
        padding-right : 0;
        border-right  : 0;
    }
}

.blog-details blockquote p {
    font-size   : 15px;
    line-height : 180%;
    font-style  : italic;
    font-weight : 300;
}

@media (min-width : 576px) {
    .blog-details blockquote p {
        font-size   : 20px;
        line-height : 180%;
    }
}

@media (min-width : 992px) {
    .blog-details blockquote p {
        font-size   : 22px;
        line-height : 200%;
    }
}

html[dir='rtl'] .blog-details blockquote p {
    font-weight : 500;
}

.blog-details .blog-post-footer {
    margin-top     : 20px;
    border-bottom  : 1px solid #EAEAEA;
    padding-bottom : 1.1rem;
    margin-bottom  : 45px;
}

@media (min-width : 992px) {
    .blog-details .blog-post-footer {
        margin-top : 30px;
    }
}

@media (min-width : 1200px) {
    .blog-details .blog-post-footer {
        margin-top : 50px;
    }
}

@media (min-width : 576px) {
    .blog-details .blog-post-footer ul {
        margin-top : 0.5rem;
    }
}

.blog-details .blog-post-footer li {
    color       : #2A2A2A;
    font-size   : 13px;
    opacity     : 0.8;
    font-weight : 600;
}

@media (min-width : 576px) {
    .blog-details .blog-post-footer li {
        font-size : 15px;
    }
}

@media (min-width : 1200px) {
    .blog-details .blog-post-footer li {
        font-weight : normal;
        font-size   : 16px;
    }
}


html[dir='rtl'] .blog-details .blog-post-footer li:first-child {
    margin-right : 0;
}

.blog-details .blog-post-footer li a {
    color : var(--nader-color-dark);
}

.blog-details .blog-post-footer li a:hover {
    color : var(--nader-color-main);
}

.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 {
    margin-top : 40px;
}

.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-rdius     : 5px;
}

@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;
}

.page-banner {
    background-color : #F4F4F4;
}

.page-banner > * {
    position : relative;
}

.page-banner .banner-content {
    position : relative;
    padding  : 130px 0 80px;
    z-index  : 9;
}

@media (min-width : 576px) {
    .page-banner .banner-content {
        padding : 160px 0 95px;
    }
}

@media (min-width : 992px) {
    .page-banner .banner-content {
        padding : 210px 0 140px;
    }
}

@media (min-width : 1200px) {
    .page-banner .banner-content {
        padding : 140px 0;
    }
}

@media (min-width : 1400px) {
    .page-banner .banner-content {
        padding : 180px 0;
    }
}

.page-banner .banner-content h1 {
    font-family   : "Vazir-Regular", serif;
    font-size     : 32px;
    font-weight   : 700;
    line-height   : 42px;
    margin-bottom : 0.5rem;
    opacity       : 0.9;
}

@media (min-width : 768px) {
    .page-banner .banner-content h1 {
        font-size : 36px;
    }
}

@media (min-width : 992px) {
    .page-banner .banner-content h1 {
        font-size     : 42px;
        margin-bottom : 1.5rem;
    }
}

.offscreen {
    position : absolute;
    left     : -999em;
}

.components .section-title {
    margin-bottom : 30px;
}

.components .section-title .subtitle {
    font-size   : 16px;
    font-weight : 700;
}

@media (min-width : 425px) {
    .components .section-title .subtitle {
        font-size : 18px;
    }
}

@media (min-width : 576px) {
    .components .section-title .subtitle {
        font-size : 20px;
    }
}

@media (min-width : 768px) {
    .components .section-title .subtitle {
        font-size : 24px;
    }
}

@media (min-width : 992px) {
    .components .section-title .subtitle {
        font-size : 32px;
    }
}

.components .section-gap {
    margin : 60px 0;
}

@media (min-width : 576px) {
    .components .section-gap {
        margin : 80px 0;
    }
}

@media (min-width : 992px) {
    .components .section-gap {
        margin : 100px 0;
    }
}

@media (min-width : 1200px) {
    .components .section-gap {
        margin : 120px 0;
    }
}

@media (min-width : 1400px) {
    .components .section-gap {
        margin : 140px 0;
    }
}

@media (max-width : 419px) {
    .team .col-6 {
        -webkit-box-flex : 0;
        -ms-flex         : 0 0 auto;
        flex             : 0 0 auto;
        width            : 100%;
    }
}

@media (min-width : 420px) and (max-width : 575px) {
    .team .col-6 {
        -webkit-box-flex : 0;
        -ms-flex         : 0 0 auto;
        flex             : 0 0 auto;
        width            : 75%;
        margin-left      : auto;
        margin-right     : auto;
    }
}

.clients .clientCarousel .item {
    border             : 1px solid #EAEAEA;
    border-radius      : 8px;
    text-align         : center;
    -webkit-transition : all 0.3s;
    transition         : all 0.3s;
}

@media (min-width : 1200px) {
    .clients .clientCarousel .item {
        border-radius : 14px;
    }
}

.clients .clientCarousel .item a {
    padding           : 1rem 1.5rem;
    min-height        : 130px;
    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;
}

@media (min-width : 1200px) {
    .clients .clientCarousel .item a {
        padding    : 2.5rem 1.5rem;
        min-height : 180px;
    }
}

.clients .clientCarousel img {
    width              : inherit;
    margin             : 0 auto;
    -webkit-transform  : scale(1);
    transform          : scale(1);
    -webkit-transition : all 0.3s linear;
    transition         : all 0.3s linear;
    -webkit-filter     : invert(1);
    filter             : invert(1);
}

.clients .clientCarousel .item:hover {
    border : 1px solid var(--nader-color-dark);
}

.clients .clientCarousel .item:hover img {
    -webkit-transform : scale(1.15);
    transform         : scale(1.15);
}

.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;
}
