/* ---------------------------------------------fonts--------------------------------- */

@font-face {
    font-family: "dinartwo";
    font-weight: 600;
    src: url(../fonts/Mj_Dinar\ Two\ Medium.ttf) format("true-type"),
        url(../fonts/Mj_Dinar\ Two\ Medium.woff) format("woff"),
        url(../fonts/Mj_Dinar\ Two\ Medium.woff2) format("woff2");
    font-style: normal;
}
@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;
}


/* ------------------------------------------------------------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-secondary);
    color: #fff;
}

/* ---------------------------------------------------------- reset.css----------------------------- */

html,
body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 320px;
    overflow-x: clip;
}

*,
*::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: #ECECEC;
    color: #0F2137;
}

:root {


    --spacer: 1rem;
    --color-primary: #A066AA;
    --color-secondary: #A066AA;
    --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;
}

.overlay {
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: none;
}


.m-0 {
    margin: 0 !important
}

.mt-0,
.my-0 {
    margin-top: 0 !important
}

.mr-0,
.mx-0 {
    margin-right: 0 !important
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1,
.my-1 {
    margin-top: .25rem !important
}

.mr-1,
.mx-1 {
    margin-right: .25rem !important
}

.mb-1,
.my-1 {
    margin-bottom: .25rem !important
}

.ml-1,
.mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2,
.my-2 {
    margin-top: .5rem !important
}

.mr-2,
.mx-2 {
    margin-right: .5rem !important
}

.mb-2,
.my-2 {
    margin-bottom: .5rem !important
}

.ml-2,
.mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3,
.my-3 {
    margin-top: 1rem !important
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5,
.my-5 {
    margin-top: 3rem !important
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0,
.py-0 {
    padding-top: 0 !important
}

.pr-0,
.px-0 {
    padding-right: 0 !important
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important
}

.pl-0,
.px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.pt-1,
.py-1 {
    padding-top: .25rem !important
}

.pr-1,
.px-1 {
    padding-right: .25rem !important
}

.pb-1,
.py-1 {
    padding-bottom: .25rem !important
}

.pl-1,
.px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.pt-2,
.py-2 {
    padding-top: .5rem !important
}

.pr-2,
.px-2 {
    padding-right: .5rem !important
}

.pb-2,
.py-2 {
    padding-bottom: .5rem !important
}

.pl-2,
.px-2 {
    padding-left: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.pt-3,
.py-3 {
    padding-top: 1rem !important
}

.pr-3,
.px-3 {
    padding-right: 1rem !important
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important
}

.pl-3,
.px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-5,
.py-5 {
    padding-top: 3rem !important
}

.pr-5,
.px-5 {
    padding-right: 3rem !important
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important
}

.pl-5,
.px-5 {
    padding-left: 3rem !important
}

.m-n1 {
    margin: -.25rem !important
}

.mt-n1,
.my-n1 {
    margin-top: -.25rem !important
}

.mr-n1,
.mx-n1 {
    margin-right: -.25rem !important
}

.mb-n1,
.my-n1 {
    margin-bottom: -.25rem !important
}

.ml-n1,
.mx-n1 {
    margin-left: -.25rem !important
}

.m-n2 {
    margin: -.5rem !important
}

.mt-n2,
.my-n2 {
    margin-top: -.5rem !important
}

.mr-n2,
.mx-n2 {
    margin-right: -.5rem !important
}

.mb-n2,
.my-n2 {
    margin-bottom: -.5rem !important
}

.ml-n2,
.mx-n2 {
    margin-left: -.5rem !important
}

.m-n3 {
    margin: -1rem !important
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important
}

.m-n4 {
    margin: -1.5rem !important
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important
}

.m-n5 {
    margin: -3rem !important
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto,
.my-auto {
    margin-top: auto !important
}

.mr-auto,
.mx-auto {
    margin-right: auto !important
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important
}

.ml-auto,
.mx-auto {
    margin-left: auto !important
}
@media only screen and (min-width:993px) {
    .d-lg-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .d-lg-none {
        display: none !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-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;
}

.m-x-auto {
    margin-left: 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: 1180px;
    }
}
@media only screen and (min-width:1300px) {
    .container {
        max-width: 1280px;
    }
}

@media only screen and (min-width:1400px) {
    .container {
        max-width: 1350px;
    }
}

.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%;
    }

}


@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%;
    }

}

@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: 400px;
    

}
/* -------------------------------------------------- breadcrumb section ------------------------  */
.page-title{
    color: var(--color-primary);
    font-weight: 800;
    font-size: 26px;
}
.breadcrumb__section {
    padding: 20px 0;

}
.page-header__section .page-header{
    background: #e5e5e5;
    border-radius: 15px;
    padding: 10px 16px;
    flex-wrap: wrap;
}
.breadcrumb__menu{
    flex-wrap: wrap;
}
.breadcrumb__menu::before {
    content: " ";
    margin-left: 5px;
    width: 20px;
    height: 39px;
    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='%23812990'/%3E%3C/svg%3E") no-repeat center;
    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: "/";
    color: #686868 !important;
}

.breadcrumb__item.active::after {
    content: " ";
}

.breadcrumb__item.active {
    color: var(--primary-color);
}
.breadcrumb__link{
    color: #686868 !important;
}
.breadcrumb__item.active , .breadcrumb__item.active a{
   color: var(--color-primary);
}
/* --------------------------------------- btn --------------------- */
.main-btn {
    background-color: var(--color-primary);
    border-radius: 15px;
    padding: 14px;
    display: table;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.56px;
    display: flex;
    min-width: 120px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 600;
    transition: all 0.3s;
}
.outline-btn{
    border-radius: 15px;
    border: 1px solid #A066AA;

    padding: 14px;
    transition: all 0.3s;
}
.outline-btn:hover{
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.outline-btn:hover svg path{
    stroke: #fff;
}



.main-btn.small {
    min-width: 70px
}
.main-btn:hover{
    box-shadow:0 10px 20px #a066aa88;
   
}

.owl-stage-outer {
    overflow-x: clip;
}

.owl-stage {
    display: flex;
}
.text-white{
    color: #fff;
}


/* ----------------------- form */
.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: #e4e4e4 !important;
    padding: 9px;
    border: 1px solid transparent;
    transition: all 0.3s;
    border-radius: 10px;
}
.form__input:focus{
    border: 0.5px solid var(--color-primary);
}
.form__label {
    color: var(--color-text);
    margin-bottom: 0;
    min-width: 130px;
    position: relative;
    font-size: 14px;
}
@media only screen and (max-width:768px) {
    .form__row {
        flex-direction: column;
        align-items: stretch;

    }


}
.search-btn {
    display: none !important;
}


#enDetail .value-box {
    font-family: sans-serif !important;
    padding: 0px 16px !important;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
    background-color: white !important;
    border-bottom-right-radius: 4px;
}