:root {
    --gray-80: #000;
    --gray-70: #565663;
    --gray-60: #a4a4af;
    --gray-50: #bbbbc3;
    --gray-40: #d1d1d7;
    --gray-30: #e8e8eb;
    --gray-20: #f4f4f5;
    --gray-10: #f8f8f9;
    --blue-second-60: #0b85c8;
    --blue-second-50: #55aad9;
    --blue-second-40: #84c1e3;
    --blue-second-30: #b6dbef;
    --blue-second-20: #cee7f4;
    --blue-second-10: #f4fbff;
    --blue-firs-60: #005492;
    --blue-firs-50: #3376a8;
    --blue-firs-40: #6698be;
    --blue-firs-30: #99bbd3;
    --blue-firs-20: #ccdde9;
    --blue-firs-10: #e9f5ff;
    --primary-gray-04: #ececec;
    --primary-gray-03: #f3f3f3;
    --primary-gray-02: #f9f9f9;
    --primary-gray-01: #fcfcfc;
    --red-2: #ff6f6f;
    --alert-60: #d50e4a;
    --alert-50: #e56e93;
    --alert-40: #ee9fb7;
    --alert-30: #f2b7c9;
    --alert-20: #f6cfdb;
    --alert-10: #fbe7ed;
    --dark-b-10: #0e151b;
    --success-50: #66daae;
    --success-60: #00C278;
    --desktop-container-width: 1200px;
}

@font-face {
    font-family: Dana;
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url('../fonts/dana/DanaFaNum-Medium.woff2') format('woff2'),  /* FF39+, Chrome36+, Opera24+ Will be preloaded */
    url('../fonts/dana/DanaFaNum-Medium.woff') format('woff'),  /* FF3.6+, IE9, Chrome6+, Saf5.1+ Will be preloaded */
    url('../fonts/dana/DanaFaNum-Medium.ttf') format('truetype');
}

@font-face {
    font-family: DsDigi;
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url('../fonts/dsdigi/dsdigi.eot'),
    url('../fonts/dsdigi/dsdigi.woff') format('woff'),
    url('../fonts/dsdigi/dsdigi.ttf') format('truetype');
}

/* General */
* {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

html {
    direction: rtl;
    overflow-x: hidden;
}

body {
    font: 15px Dana;
    color: var(--gray-70);
    line-height: 30px;
    overflow-x: hidden;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    background-color: unset;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-weight: 800;
    color: var(--blue-firs-60);
    line-height: 30px;
    margin-bottom: 20px;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 26px;
}

strong {
    font-weight: 800;
}

header a,
footer a {
    color: var(--gray-80);
}

header ul,
footer ul {
    list-style: none;
}

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

img,
video {
    border-radius: 8px;
}

iframe {
    max-width: 100%;
}

p {
    margin-bottom: 10px;
    text-align: justify;
}

figure {
    margin: 0;
}

a[href=''] {
    cursor: default;
}

ol,
ul {
    list-style-position: inside;
}
/* --- End General --- */

/* Layout */
.kb-container,
#kb-wrapper {
    height: 100%;
    min-height: 650px;
}

.kb-container {
    position: relative;
}

#kb-wrapper {
    position: relative;
    margin: 0 auto;
}

.container {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.content {
    margin-top: 20px;
}

section {
    margin: 35px 0;
}

@media (min-width: 768px) {
    .container {
        max-width: var(--desktop-container-width);
    }

    section {
        margin: 50px 0;
    }
}
/* --- End Layout --- */

/* For Script */
.display-none {
    display: none;
}

.display-block {
    display: block;
}

.display-inline {
    display: inline;
}

.display-flex {
    display: flex;
}

/* --- End For Script --- */

/* Button */
.button-fill,
.button-outline {
    display: inline-block;
    padding: 10px 10px;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid var(--blue-firs-60);
    text-align: center;
}

.button-fill {
    background-color: var(--blue-firs-60);
}

.button-fill:hover {
    background-color: var(--blue-second-60);
}

.button-fill,
.button-fill span:before {
    color: #fff;
}

.button-outline {
    color: var(--blue-second-60);
}

.button-outline:hover {
    border: 1px solid var(--blue-second-60);
    color: var(--blue-second-60);
}

.button-outline:visited,
.button-outline:link {
    color: var(--blue-second-60);
}

.button-fill:visited,
.button-fill:link {
    color: #fff;
}
/* End Button */

.flex-center,
.flex-right {
    display: flex;
    flex-flow: column;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.flex-right {
    justify-content: right;
    flex-flow: column;
}

.box-hover:hover .item-title {
    color: var(--blue-second-60);
}

.box-hover:hover {
    box-shadow: 0 6px 8px rgba(75, 75, 75, 0.06);
    border: 1px solid var(--blue-second-20);
    background-color: var(--primary-gray-01);
}

.box-shadow {
    box-shadow: 0 3px 5px rgba(75, 75, 75, 0.08);
}

.box-border {
    border: 1px solid var(--gray-40);
}

.box {
    text-align: center;
    padding: 5px;
    margin: 8px;
}

@media (min-width: 768px) {
    .box {
        padding: 34px 24px;
    }
}

.vertical-line {
    width: 0;
    height: 20px;
    margin: 0 20px;
    border-right: 2px solid var(--gray-50);
}

.icon {
    display: inline-block;
}
/* Section */
.section-container {
    display: flex;
    flex-flow: column;
}

.section-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.item-title {
    color: var(--gray-80);
    font-size: 14px;
    font-weight: 800;
    line-height: 30px;
    margin-bottom: 20px;
}

.section-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

@media (min-width: 768px) {
    .section-container {
        align-items: center;
    }

    .section-info {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 40%;
        font-size: 16px;
        line-height: 28px;
    }

    .section-info p {
        text-align: center;
    }

    .section-items {
        width: 100%;
    }

    .section-title {
        font-size: 32px;
    }

    .item-title {
        font-size: 20px;
    }
}
/* End Section */
.section-title,
.title {
    color: var(--blue-firs-60);
    font-weight: 800;
}

ul.section-items {
    list-style-type: none;
}

.more-less-inline-content p:first-child {
    display: inline;
}

.hidden-in-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hidden-in-mobile {
        display: block;
    }
}


