:root {
    --transition: all 0.3s ease-in-out;
    --primary-color: #d50000;
    --primary-color-bold: #bc0000;
    --primary-color-light:#ff2323;
    --dark-color:rgb(3, 3, 15);
    --accent-color: #ffc400;
    --text-color: var(--bs-dark);
    --border-color: #e0e0e0;
    --white-color:#fafcfe;
    --text-sm: 0.75rem;
    --text-base: 0.875rem;
    --text-md: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --bs-header-line-height: 1.1em;
    --font-theme: "Lexend", var(--bs-font-sans-serif);

    --shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
    --shadow-1: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    --shadow-2: 0px 6px 12px -6px rgba(24, 39, 75, 0.12), 0px 8px 24px -4px rgba(24, 39, 75, 0.08);
    --shadow-3: 0px 1px 2px rgba(97, 97, 97, 0.2), 0px 2px 4px rgba(97, 97, 97, 0.2);
}
.bg-yellow-10{
    background: linear-gradient( 90deg, rgb(192 255 30 / 3%) 0%, rgb(250 252 116 / 3%) 100% );
}

html {
    scroll-behavior: auto !important;
}

body {
    font: 400 var(--text-base)/var(--bs-body-line-height) var(--font-theme);
    position: relative;
    background-color: var(--bs-white);
    color: var(--text-color);
  
}

a, span, i {
    font: inherit;
    color: currentColor;
}
img, video {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
}

input, input::placeholder {
    font: inherit;
}

button {
    outline: none;
    border: 1px solid transparent;
}

textarea {
    resize: none;
}

button, button:hover, button:focus,
a, a:hover, a:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

input,
select,
textarea {
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

a,
button {
    outline: none !important;
    box-shadow: none !important;
}

.transition-default {
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

.pseudo:before,
.pseudo:after {
    position: absolute;
    content: "";
    display: block;
}

.background-cover {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.image-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.image-contain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.limit-lines {
    --lines: 3;
    --line-height: 1.5;
    --font-size: 0.875rem;
    --calc-max-height: calc(var(--line-height) * var(--lines) * var(--font-size));
    display: inline-block;
    display: -webkit-box;
    width: 100%;
    max-height: var(--calc-max-height);
    height: var(--calc-max-height);
    font-size: var(--font-size);
    line-height: var(--line-height);
    line-clamp: var(--lines);
    -webkit-line-clamp: var(--lines);
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.hidden-effect {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hidden-effect:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.section-20{
    padding: 20px 0px;
}
.section-30{
    padding:30px 0px;
}
.section-50{
    padding:50px 0px;
}
.ml-6{
    margin-left: 6px;
}
.mr-6{
    margin-right: 6px;
}
.mr-30{
    margin-right: 30px;
}
.ml-3{
    margin-left: 3px;
}
.z-index-0 {
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.z-index-5 {
    z-index: 5;
}

.z-index-10 {
    z-index: 10;
}

.button-theme {
    color: var(--bs-white) !important;
    border-radius: 5px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 21px;
    font-size: var(--text-md);
    font-weight: 400;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    border: 0;
}

.button-theme:disabled {
    opacity: .6;
}

.button-theme:disabled .button-theme_bg {
    display: none;
}

.button-theme .button-theme_bg {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.1, 0, 0.3, 1);
    background: transparent;
}

.button-theme .button-theme_bg:before {
    content: '';
    position: absolute;
    width: 110%;
    height: 0;
    padding-bottom: 110%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
}

.button-theme .button-theme_bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.button-theme:hover .button-theme_bg {
    transform: scale3d(1.2, 1.2, 1);
}

.button-theme:hover .button-theme_bg:before {
    transition: transform 0.5s cubic-bezier(0.1, 0, 0.3, 1);
    transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
}

.button-theme:hover .button-theme_bg:after {
    opacity: 1;
    transition-duration: 0.01s;
    transition-delay: 0.3s;
}

.button-theme .button-theme_text {
    display: block;
    position: relative;
}

.button-theme.button-theme_primary {
    background-color: rgba(var(--primary-color), 1);
}

.button-theme.button-theme_primary__outline {
    border: 1px solid rgba(var(--primary-color), 1);
}

.button-theme.button-theme_primary__outline:hover {
    background-color: rgba(var(--primary-color), 1);
}

.button-theme.button-theme_primary > .button-theme_bg:before,
.button-theme.button-theme_primary > .button-theme_bg:after,
.button-theme.button-theme_primary__outline > .button-theme_bg:before,
.button-theme.button-theme_primary__outline > .button-theme_bg:after {
    background-color: rgba(var(--primary-hover));
}

.button-theme.button-theme_secondary {
    background-color: rgba(var(--secondary-color), 1);
}

.button-theme.button-theme_secondary > .button-theme_bg:before,
.button-theme.button-theme_secondary > .button-theme_bg:after, marker
.button-theme.button-theme_secondary__outline > .button-theme_bg:before,
.button-theme.button-theme_secondary__outline > .button-theme_bg:after {
    background-color: rgba(var(--secondary-hover));
}

.button-theme.button-theme_secondary__outline {
    border: 1px solid rgba(var(--secondary-color), 1);
}

.effect-link {
    position: relative;
    font-size: var(--text-md);
}

.effect-link:after {
    content: "";
    height: 1px;
    width: 100%;
    top: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    transition: all .15s cubic-bezier(.39, .575, .565, 1);
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    background-color: rgba(var(--primary-color), 1);
}

.effect-link:hover:after {
    opacity: 1;
    transition-delay: .2s;
    transition-duration: .15s;
    -webkit-transform: translateY(1px) translateZ(0);
    transform: translateY(1px) translateZ(0);
}

/*
    Start table of content
*/
.theme-toc {
    border: 1px solid #e9e9e9;
    background: #faf9fa;
    display: inline-flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 15px;
    min-width: 200px;
}

.theme-toc > .nav {
    padding: 0 0 8px;
    width: 100%;
}

.theme-toc .nav {
    display: inline-flex;
    flex-direction: column;
}

.theme-toc .nav > li > a {
    padding-top: 3px;
    padding-right: 15px;
    padding-bottom: 3px;
    display: block;
    color: var(--bs-gray-dark);
    font-size: .95rem;
}

.theme-toc .nav > li > a:hover,
.theme-toc .nav > li > a:active {
    color: var(--primary-color);
}

.theme-toc .nav > li > a.toc-link-1 {
    padding-left: 15px;
}

.theme-toc .nav > li > a.toc-link-2 {
    padding-left: 30px;
}

.theme-toc .nav > li > a:not(.toc-link-1):before {
    content: "-";
    margin-right: 9px;
}

.theme-toc .nav > li > a.toc-link-3 {
    padding-left: 45px;
}

.theme-toc .nav > li > a.toc-link-4 {
    padding-left: 60px;
}

.theme-toc .nav > li > a.toc-link-5 {
    padding-left: 75px;
}

.theme-toc .nav > li > a.toc-link-6 {
    padding-left: 90px;
}

.theme-toc .nav > li.toc-heading {
    background-color: #f5f5f5;
    border-bottom: 1px solid #dddddd;
    padding: 0;
    margin-bottom: 5px;
    width: 100%;
}

.theme-toc .nav > li.toc-heading > p {
    color: var(--bs-gray-dark);
    padding: 10px 0 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 0;
}

.theme-toc .nav > li.toc-heading > p > a {
    color: var(--primary-color);
    margin-left: 4px;
    font-size: .9rem;
}

.theme-toc .nav > li.toc-heading > p > a:hover,
.theme-toc .nav > li.toc-heading > p > a:active {
    color: var(--primary-hover);
}

.theme-toc .nav .nav {
    margin-bottom: 0;
}

@media screen and (max-width: 600px) {
    .theme-toc {
        width: 100%;
    }
}

.-mt-2 {
    margin-top: -0.5rem;
}