/* ---------------------------------------------fonts--------------------------------- */

@font-face {
    font-family: "YekanBakh";
    font-weight: 600;
    src: url(../fonts/YekanBakhFaNum-SemiBold.ttf) format("true-type"), url(../fonts/YekanBakhFaNum-SemiBold.woff) format("woff"), url(../fonts/YekanBakhFaNum-SemiBold.woff2) format("woff2");
    font-style: normal;
}

@font-face {
    font-family: "YekanBakh";
    font-weight: 700;
    src: url(../fonts/YekanBakhFaNum-Bold.ttf) format("true-type"), url(../fonts/YekanBakhFaNum-Bold.woff) format("woff"), url(../fonts/YekanBakhFaNum-Bold.woff2) format("woff2");
    font-style: normal;
}

@font-face {
    font-family: "YekanBakh";
    font-weight: 800;
    src: url(../fonts/YekanBakhFaNum-ExtraBold.ttf) format("true-type"), url(../fonts/YekanBakhFaNum-ExtraBold.woff) format("woff"), url(../fonts/YekanBakhFaNum-ExtraBold.woff2) format("woff2");
    font-style: normal;
}

@font-face {
    font-family: "YekanBakh";
    font-weight: 900;
    src: url(../fonts/YekanBakhFaNum-ExtraBlack.ttf) format("true-type"), url(../fonts/YekanBakhFaNum-ExtraBlack.woff) format("woff"), url(../fonts/YekanBakhFaNum-ExtraBlack.woff2) format("woff2");
    font-style: normal;
}

@font-face {
    font-family: "YekanBakh";
    font-weight: 300;
    src: url(../fonts/YekanBakhFaNum-Light.ttf) format("true-type"), url(../fonts/YekanBakhFaNum-Light.woff) format("woff"), url(../fonts/YekanBakhFaNum-Light.woff2) format("woff2");
    font-style: normal;
}

/* @font-face {
    font-family: "YekanBakh";
    font-weight: 900;
    src: url(../fonts/YekanBakh-Heavy.ttf) format("true-type"),
        url(../fonts/YekanBakh-Heavy.woff) format("woff"),
        url(../fonts/YekanBakh-Heavy.woff2) format("woff2");
    font-style: normal;
} */

@font-face {
    font-family: "YekanBakh";
    font-weight: 400;
    src: url(../fonts/YekanBakhFaNum-Regular.ttf) format("true-type"), url(../fonts/YekanBakhFaNum-Regular.woff) format("woff"), url(../fonts/YekanBakhFaNum-Regular.woff2) format("woff2");
    font-style: normal;
}

@font-face {
    font-family: Nimkat;
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Nimkat.ttf') format('truetype');
}

/* ------------------------------------------------------------fonts--------------------------------- */

/* ---------------------------------------------------------- reset.css----------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

::selection {
    background-color: var(--color-primary);
    color: #fff;
}

/* ---------------------------------------------------------- reset.css----------------------------- */

html,
body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 320px;
    overflow-x: clip;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

body {
    min-height: 100vh;
    font-family: "YekanBakh", sans-serif;
    font-weight: 400;
    direction: rtl;
    background-color: #fff;
}

:root {
    --spacer: 1rem;
    --color-primary: #F49231;
    --color-secondary: #0061AF;
    --color-three: #FFF8F0;
    --color-text: #686868;
    --font-size-small: 0.625rem;
    --font-size-0: 0.75rem;
    --font-size-1: 0.875rem;
    --font-size-2: 1rem;
    --font-size-3: 1.125rem;
    --font-size-4: 1.25rem;
    --font-size-5: 1.375rem;
    --line-height-28: 1.75rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

input[type="text"],
textarea {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    outline: 0;
}

.input,
input:focus,
input:hover {
    outline: none !important;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.d-block {
    display: block !important;
}

.d-none {
    display: none !important;
}

.flex-1 {
    flex: 1 !important;
}

.overlay {
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: none;
}

@media only screen and (min-width:993px) {
    .d-lg-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex !important;
    }

    .d-lg-none {
        display: none !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-inline {
        display: inline !important;
    }
}

@media only screen and (min-width:576px) {
    .d-sm-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex !important;
    }

    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-inline {
        display: inline !important;
    }
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}



.w-100 {
    width: 100% !important;
}

.mw-100 {
    max-width: 100% !important;
}

.h-100 {
    height: 100%;
}

.w-50 {
    width: 50%;
}

.border-gray {
    border: 1px solid var(--color-text-light);
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.centering {
    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;
}


.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.m-x-auto {
    margin-left: auto;
    margin-right: auto;
}

.m-0 {
    margin: 0 !important;
}

.m-t-0 {
    margin-top: 0;
}

.m-t-1 {
    margin-top: calc(0.25 * var(--spacer));
}

.m-t-2 {
    margin-top: calc(0.5 * var(--spacer));
}

.m-t-3 {
    margin-top: var(--spacer);
}

.m-t-4 {
    margin-top: calc(1.5 * var(--spacer));
}

.m-t-5 {
    margin-top: calc(3 * var(--spacer));
}

.m-t-auto {
    margin-top: auto;
}


.m-b-0 {
    margin-bottom: 0;
}

.m-b-1 {
    margin-bottom: calc(0.25 * var(--spacer));
}

.m-b-2 {
    margin-bottom: calc(0.5 * var(--spacer));
}

.m-b-3 {
    margin-bottom: var(--spacer);
}

.m-b-4 {
    margin-bottom: calc(1.5 * var(--spacer));
}

.m-b-5 {
    margin-bottom: calc(3 * var(--spacer));
}

.m-b-auto {
    margin-bottom: auto;
}

.m-r-auto {
    margin-right: auto;
}

.m-r-1 {
    margin-right: calc(0.25 * var(--spacer));
}

.m-l-1 {
    margin-left: calc(0.25 * var(--spacer));
}

.m-r-2 {
    margin-right: calc(0.5 * var(--spacer));
}

.m-l-2 {
    margin-left: calc(0.5 * var(--spacer));
}

.m-r-12 {
    margin-right: calc(0.75 * var(--spacer));
}

.m-l-12 {
    margin-left: calc(0.75 * var(--spacer));
}

.m-l-16 {
    margin-left: calc(1 * var(--spacer));
}

.m-r-0 {
    margin-right: 0;
}

.p-r-8 {
    padding-right: calc(0.5 * var(--spacer)) !important;
}

.p-l-8 {
    padding-left: calc(0.5 * var(--spacer)) !important;
}



.p-t-3 {
    padding-top: calc(3 * var(--spacer));
}

.p-b-3 {
    padding-bottom: calc(3 * var(--spacer));
}

.p-0 {
    padding: 0;
}

.m-0 {
    margin: 0;
}

.f-wrap {
    flex-wrap: wrap;
    justify-content: c;
}

.bg-white {
    background-color: #fff;
}

.m-l-auto {
    margin-left: auto;
}

.m-r-auto {
    margin-right: auto;
}



/* ---------------------------------------------------------- grid.css --------------- */
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (min-width:576px) {
    .container {
        max-width: 100%;
    }
}

@media only screen and (min-width:768px) {
    .container {
        max-width: 100%;
    }
}

@media only screen and (min-width:992px) {
    .container {
        max-width: 100%;
    }
}

@media only screen and (min-width:1200px) {
    .container {
        max-width: 1170px;
    }
}

@media only screen and (min-width:1400px) {
    .container {
        max-width: 1370px;
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -16px;
    margin-left: -16px;
}

.col {
    width: 100%;
}

.col-1 {
    width: 8.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
}

.col-2 {
    width: 16.66666%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66666%;
    flex: 0 0 16.66666%;
}

.col-3 {
    width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
}

.col-4 {
    width: 33.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
}

.col-5 {
    width: 41.66666%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66666%;
    flex: 0 0 41.66666%;
}

.col-6 {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.col-7 {
    width: 58.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333;
    flex: 0 0 58.33333;
}

.col-8 {
    width: 66.66666%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66666%;
    flex: 0 0 66.66666%;
}

.col-9 {
    width: 75%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
}

.col-10 {
    width: 83.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
}

.col-11 {
    width: 91.66666%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66666%;
    flex: 0 0 91.66666%;
}

.col-12 {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

@media only screen and (min-width:576px) {
    .col {
        width: 100%;
    }

    .col-sm-1 {
        width: 8.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
    }

    .col-sm-2 {
        width: 16.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666%;
        flex: 0 0 16.66666%;
    }

    .col-sm-3 {
        width: 25%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }

    .col-sm-4 {
        width: 33.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    }

    .col-sm-5 {
        width: 41.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666%;
        flex: 0 0 41.66666%;
    }

    .col-sm-6 {
        width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .col-sm-7 {
        width: 58.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333;
        flex: 0 0 58.33333;
    }

    .col-sm-8 {
        width: 66.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666%;
        flex: 0 0 66.66666%;
    }

    .col-sm-9 {
        width: 75%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    }

    .col-sm-10 {
        width: 83.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
    }

    .col-sm-11 {
        width: 91.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666%;
        flex: 0 0 91.66666%;
    }

    .col-sm-12 {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}


@media only screen and (min-width:768px) {
    .col {
        width: 100%;
    }

    .col-md-1 {
        width: 8.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
    }

    .col-md-2 {
        width: 16.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666%;
        flex: 0 0 16.66666%;
    }

    .col-md-3 {
        width: 25%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }

    .col-md-4 {
        width: 33.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    }

    .col-md-5 {
        width: 41.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666%;
        flex: 0 0 41.66666%;
    }

    .col-md-6 {
        width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .col-md-7 {
        width: 58.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
    }

    .col-md-8 {
        width: 66.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666%;
        flex: 0 0 66.66666%;
    }

    .col-md-9 {
        width: 75%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    }

    .col-md-10 {
        width: 83.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
    }

    .col-md-11 {
        width: 91.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666%;
        flex: 0 0 91.66666%;
    }

    .col-md-12 {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .col-md-20 {
        width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }
}


@media only screen and (min-width:993px) {
    .col {
        width: 100%;
    }

    .col-lg-1 {
        width: 8.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
    }

    .col-lg-2 {
        width: 16.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666%;
        flex: 0 0 16.66666%;
    }

    .col-lg-3 {
        width: 25%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }

    .col-lg-4 {
        width: 33.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    }

    .col-lg-5 {
        width: 41.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666%;
        flex: 0 0 41.66666%;
    }

    .col-lg-6 {
        width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .col-lg-7 {
        width: 58.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
    }

    .col-lg-8 {
        width: 66.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666%;
        flex: 0 0 66.66666%;
    }

    .col-lg-9 {
        width: 75%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    }

    .col-lg-10 {
        width: 83.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
    }

    .col-lg-11 {
        width: 91.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666%;
        flex: 0 0 91.66666%;
    }

    .col-lg-12 {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .col-lg-20 {
        width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }

    .col-lg-1-8 {
        width: 12.5%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
    }

    .col-lg-20 {
        width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }
}

@media only screen and (min-width:1200px) {
    .col {
        width: 100%;
    }

    .col-xl-1 {
        width: 8.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
    }

    .col-xl-2 {
        width: 16.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666%;
        flex: 0 0 16.66666%;
    }

    .col-xl-3 {
        width: 25%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }

    .col-xl-4 {
        width: 33.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    }

    .col-xl-5 {
        width: 41.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666%;
        flex: 0 0 41.66666%;
    }

    .col-xl-6 {
        width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .col-xl-7 {
        width: 58.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333;
        flex: 0 0 58.33333;
    }

    .col-xl-8 {
        width: 66.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666%;
        flex: 0 0 66.66666%;
    }

    .col-xl-9 {
        width: 75%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    }

    .col-xl-10 {
        width: 83.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
    }

    .col-xl-11 {
        width: 91.66666%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666%;
        flex: 0 0 91.66666%;
    }

    .col-xl-12 {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-lg-20 {
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
}

/* ----------------------------------------------- global template styles ------------------- */
.main {
    min-height: 300px;
    background-color: #fff;
    /* padding: 26px 0; */
}


/* --- breadcrumb-------- */
.breadcrumb__section {
    background: #f9f9f9;
    padding: 10px 20px;
}

.breadcrumb__menu::before {
    content: " ";
    width: 17px;
    height: 17px;
    background: url("data:image/svg+xml,%3Csvg width='17' height='18' viewBox='0 0 17 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.90847 1.99858C9.0379 1.22009 7.66339 1.22009 6.79283 1.99858L2.16639 6.13565C2.05303 6.23701 1.97679 6.36905 1.94845 6.51305C1.39432 9.32916 1.35342 12.2122 1.82746 15.0409L1.93998 15.7124H4.91644V9.92396C4.91644 9.53795 5.25222 9.22503 5.66644 9.22503H11.0349C11.4491 9.22503 11.7849 9.53795 11.7849 9.92396V15.7124H14.7613L14.8738 15.0409C15.3479 12.2122 15.307 9.32916 14.7528 6.51305C14.7245 6.36905 14.6483 6.23701 14.5349 6.13565L9.90847 1.99858ZM5.75428 0.989949C7.20522 -0.307522 9.49607 -0.307522 10.947 0.989949L15.5735 5.12702C15.914 5.43157 16.1431 5.82827 16.2282 6.26092C16.8128 9.23151 16.8559 12.2727 16.3559 15.2566L16.1751 16.3353C16.1004 16.7814 15.6881 17.1102 15.2036 17.1102H11.0349C10.6206 17.1102 10.2849 16.7973 10.2849 16.4113V10.6229H6.41644V16.4113C6.41644 16.7973 6.08065 17.1102 5.66644 17.1102H1.49771C1.01323 17.1102 0.600941 16.7814 0.526186 16.3353L0.345423 15.2566C-0.154625 12.2727 -0.111478 9.23151 0.473052 6.26092C0.558185 5.82827 0.787269 5.43157 1.12784 5.12702L5.75428 0.989949Z' fill='%230061AF'/%3E%3C/svg%3E") no-repeat center;
    margin-left: 5px;
    width: 39px;
    height: 39px;
    background-color: #0061af0f;
    border-radius: 50%;
    transition: all 0.3s;
}

.breadcrumb__item {
    font-size: 13px;
    margin-left: 5px;
    color: var(--color-text);
    font-weight: 600;
}

.breadcrumb__item::after {
    content: "/";
}

.breadcrumb__item.active::after {
    content: " ";
}

.breadcrumb__item.active {
    color: var(--color-secondary);
}

/* --------------------------------------- btn --------------------- */
.main-btn {
    background-color: var(--color-primary);
    display: table;
    min-width: 130px;
    text-align: center;
    transition: all 0.3s;
    border-radius: 50px;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -1.2px;
    padding: 10px 20px;
}

.main-btn.big {
    padding: 18px 25px;
    font-size: 22px;
    font-weight: 700;
}

.main-btn.very-small {
    font-size: 10px;
    padding: 10px 11px;
}

.primary-btn {
    background: #f2f2f2;
    text-align: center;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--color-primary);
    display: table;
    min-width: 130px;
    border-radius: 50px;
    font-size: 18px;
    letter-spacing: -1.2px;
    padding: 10px 20px;
}

.primary-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.main-btn.small {
    min-width: 70px
}

.main-btn:hover {
    box-shadow: 0 10px 20px #f492317d;
}

.footer__socials .footer__socials-item {
    margin: 5px;
}

/* ------------------------------ checkbox */
.checkbox__lable::before {
    content: " ";
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-color: #fff !important;
    vertical-align: middle !important;
    margin-left: 3px !important;
    border: 2px solid var(--color-primary) !important;
    border-radius: 3px !important;
    background-position: center;
    background-repeat: no-repeat;
}

.remember-checkbox:checked~.checkbox__lable::before,
.form__checkbox:checked~.checkbox__lable::before {
    background-image: url('data:image/svg+xml,<svg width="11" height="9" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 9L4.23309 11.4248C4.66178 11.7463 5.26772 11.6728 5.60705 11.2581L14 1" stroke="%238B3DFF" stroke-width="2" stroke-linecap="round"/></svg>') !important;
}

.checkbox__lable {
    font-size: 15px;
    position: relative;
}

.remember-checkbox,
.form__checkbox {
    z-index: 10;
    cursor: pointer;
    margin-bottom: 3px;
    opacity: 0;
    position: absolute;
}

/* ------------------------------------------------------------ blog section */

/* ------------------------------------------- comment-send ------------------------- */
.form__row {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.form__input {
    flex-grow: 1;
    height: 40px;
    border: 0;
    background-color: #f5f5f5 !important;
    padding: 9px;
    border: 1px solid transparent;
    transition: all 0.3s;
    border-radius: 10px;
}

.form__lable {
    color: var(--color-text);
    margin-bottom: 0;
    min-width: 130px;
    position: relative;
    font-size: 14px;
}

.form__input:focus {
    border-color: var(--color-primary);
}

.form__textarea {
    min-height: 180px;
    resize: none;
}

.form__send-btn {
    border: 0;
    min-width: 150px;
    display: table;
    margin: auto;
    font-size: 18px;
    cursor: pointer;
    height: 48px;
}

.form__star {
    color: red;
    font-size: 13px;
    position: absolute;
    top: -4px
}

.form__textarea:focus-visible {
    outline: 0
}

.form__input:focus {
    border-color: var(--color-primary);
}



.owl-stage-outer {
    overflow-x: clip;
}

.owl-stage {
    display: flex;
}

.section-title {
    color: #686868;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1.6px;
    text-align: center;
    position: relative;
    margin-bottom: 75px;
}

.section-title::before {
    content: url('data:image/svg+xml,<svg width="72" height="8" viewBox="0 0 72 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="24" width="24" height="8" rx="4" fill="%23F49231"/><rect x="50" width="10" height="8" rx="4" fill="%23E1871B" fill-opacity="0.5"/><rect x="62" width="10" height="8" rx="4" fill="%23E1871B" fill-opacity="0.5"/><rect width="10" height="8" rx="4" fill="%23E1871B" fill-opacity="0.5"/><rect x="12" width="10" height="8" rx="4" fill="%23E1871B" fill-opacity="0.5"/></svg>');
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
}

.big__title {
    text-align: right;
    font-size: 35px;
    font-weight: 800;
    line-height: 42px;
}

.sub__title {
    color: var(--color-text);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.9px;
}

.big__title.purple {
    color: var(--color-primary);
}


.big__title.red {
    color: var(--color-three);
}

section {
    margin-bottom: 70px;
}

.page-title {
    color: var(--color-text);
    color: #686868;
    font-size: 35px;
    font-weight: 900;
    letter-spacing: -1.6px;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.page-title::before {
    content: url('data:image/svg+xml,<svg width="72" height="8" viewBox="0 0 72 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="24" width="24" height="8" rx="4" fill="%23F49231"/><rect x="50" width="10" height="8" rx="4" fill="%23E1871B" fill-opacity="0.5"/><rect x="62" width="10" height="8" rx="4" fill="%23E1871B" fill-opacity="0.5"/><rect width="10" height="8" rx="4" fill="%23E1871B" fill-opacity="0.5"/><rect x="12" width="10" height="8" rx="4" fill="%23E1871B" fill-opacity="0.5"/></svg>');
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
}

footer {
    overflow-x: hidden;
}

/*     */


@media only screen and (max-width:1200px) {
    .main-btn.big {
        padding: 14px 21px;
        font-size: 16px;
    }

    .big__title {
        font-size: 28px;
    }

    .sub__title {
        font-size: 16px;
    }

    .main-btn {
        padding: 7px 16px;
    }
}

@media only screen and (max-width:992px) {
    .section-title {
        font-size: 36px;
    }

    .comment__text {
        font-size: 14px;
        line-height: 27px;
    }
}

@media only screen and (max-width:768px) {
    .form__row {
        flex-direction: column;
        align-items: stretch;
    }
}

@media only screen and (max-width:576px) {


    .blog {
        height: auto;
    }

    .section__title {
        font-size: 1.5rem;
        padding: 30px 0 25px;
    }

    section {
        margin-bottom: 35px;
    }

    .main {
        padding: 20px 0;
    }

    .big__title {
        font-size: 24px !important;
    }

    .page-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: -0.9px;
        margin-bottom: 50px;
    }

    .page-title::before {
        bottom: -30px;
    }

    .breadcrumb__menu {
        justify-content: center;
    }

    .breadcrumb__item {
        font-size: 11px;
    }

    .breadcrumb__menu::before {
        width: 30px;
        height: 30px;
    }
}



.text-danger {
    color: red;
    /* flex-basis: 100%; */
    position: absolute;
    top: 100%;
    font-size: 11px;
    /* left: 0; */
    right: 126px;
}

.span_TextInLine {
    background-color: #FBFBFB;
    padding: 10px 15px;
    position: relative;
    z-index: 3;
    color: #686868;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -1.6px;
    text-align: center;
    position: relative;
}

.text-error {
    color: red;
    /* flex-basis: 100%; */
    position: absolute;
    top: 41%;
    font-size: 11px;
    /* left: 0; */
    right: 176px;
}

.user-text h1,
.user-text h2,
.user-text h1 *,
.user-text h2 * {
    font-size: 1.5rem !important
}

.user-text h3,
.user-text h3 * {
    font-size: 1.4rem !important;
    line-height: 2rem !important
}

.user-text h4,
.user-text h4 * {
    font-size: 1.3rem !important;
    line-height: 2.5rem !important
}

.user-text h5,
.user-text h5 * {
    font-size: 1.2rem !important
}

.user-text p {
    font-size: 15px !important;
    margin-bottom: 7px;
    color: var(--color-text);
    line-height: 30px !important;
}

.user-text p * {
    font-size: 15px !important;
    color: var(--color-text) !important;
    line-height: 30px !important;
}

.user-text *,
.user-text li {
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px
}

.user-text h6,
.user-text h6 * {
    font-size: 1rem !important;
    line-height: 1.5rem !important
}

.user-text h1,
.user-text h2,
.user-text h3,
.user-text h4,
.user-text h5,
.user-text h6,
.user-text h1 *,
.user-text h2 *,
.user-text h3 *,
.user-text h4 *,
.user-text h5 *,
.user-text h6 * {
    margin-bottom: 1.25rem !important;
    margin-top: 1.25rem !important;
    color: #F49231 !important;
    font-weight: 700 !important
}

.user-text strong {
    font-weight: 700;
    color: #F49231
}

.user-text ul li::before {
    content: " ";
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #F49231;
    display: inline-block;
    margin-left: 7px
}

.user-text img {
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 100%
}

.user-text li {
    line-height: 40px
}

@media only screen and (max-width:576px) {

    .user-text h1,
    .user-text h2 {
        font-size: 1.4rem !important;
        line-height: 1.5rem !important
    }

    .user-text h3 {
        font-size: 1.3rem !important;
        line-height: 1.5rem !important
    }

    .user-text h4 {
        font-size: 1.2rem !important;
        line-height: 1.5rem !important
    }

    .user-text h5 {
        font-size: 1.1rem !important
    }

    .user-text p {
        font-size: 15px !important;
        margin-bottom: 7px;
        line-height: 25px
    }

    .user-text h6 {
        font-size: 1rem !important;
        line-height: 1.5rem !important
    }

    .user-text h1,
    .user-text h2,
    .user-text h3,
    .user-text h4,
    .user-text h5,
    .user-text h6 {
        margin-bottom: 1rem;
        margin-top: 1rem;
        color: #F49231;
        font-weight: 600
    }

    .span_TextInLine {
        font-size: 18px;
    }
}

.search-input {
    height: 60px !important;
    /* min-width: 370px; */
    border: 1px solid rgba(0, 0, 0, .125) !important;
}

.submit-search {
    top: 17px !important;
}

.big-menu-2 {
    overflow-x: hidden !important;
    width: 990px !important;
    height: auto !important;
}

@media (max-width:1200px) {
    .big-menu-2 {
        width: 790px !important;
    }
}

@media (max-width:1200px) {
    .big-menu-2 {
        width: 730px !important;
    }
}

/*table-start*/
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.table-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.table-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}

.fw-bolder {
    font-weight: 900 !important;
}


table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:nth-child(odd) {
    background-color: #ffffff;
}

tr:hover {
    background-color: rgba(0, 0, 0, 0.10);
}

td.empty {
    color: #888;
    font-style: italic;
}

@media screen and (max-width: 600px) {
    table {
        width: 100%;
        font-size: 14px;
    }

    th,
    td {
        padding: 10px;
    }
}

/*table-end*/


/* search-autocomplete-start */
.ui-autocomplete.ui-menu {
    right: 30% !important;
}

@media(max-width:1800px) {
    .ui-autocomplete.ui-menu {
        right: 28% !important;
    }
}

@media(max-width:1600px) {
    .ui-autocomplete.ui-menu {
        right: 25% !important;
    }
}

@media(max-width:1400px) {
    .ui-autocomplete.ui-menu {
        right: 26% !important;
    }
}

@media(max-width:1200px) {
    .ui-autocomplete.ui-menu {
        right: 240px !important;
    }
}

@media(max-width:992px) {
    .ui-autocomplete.ui-menu {
        right: 270px !important;
    }
}

@media(max-width:650px) {
    .ui-autocomplete.ui-menu {
        right: 115px !important;
    }
}

@media(max-width:576px) {
    .ui-autocomplete.ui-menu {
        right: 20px !important;
    }
}

/* search-autocomplete-end */