body {
    background-color: var(--theme-background-color);
    color: var(--theme-text);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
html {
    height: 100%;
}

:root {
    --theme-background-color: #fbfbfb;
    --bg-theme: #161212;
    --bg-white: #ffffff;
    --bg-black: #000000;
    --bg-orange: #ff7d44;
    --bg-primary: #d74315;
    --bg-light-primary1: #ffebe6;
    --bg-light-primary2: #fff1ed;
    --bg-light-primary3: #fff9f7;
    --bg-light-primary4: #FFF8F6;
    --bg-light-primary5: #F7CEC2;
    --text-white: #ffffff;
    --text-black: #000000;
    --theme-text: #161212;

    --danger: #dc3232;
    --success: #198754;
    --warning: #ffc107;

    --text-primary: #d74315;
    --text-secondary: #797979;
    --text-disabled: #9ca3af;
    --input-placeholder: #ffffff73;
    --dark-gray: #4D585F;
    --text-gray1: #E5E7EB;
    --text-gray2: #3C4449;
    --text-gray3: #ECECEC;
    --btn-focus-box-shadow: 0 0 0 0.2rem rgba(215, 67, 21, 0.4);
    /* Transition */
    --transition: 0.4s ease;
    --transition-400ms: all 400ms ease;
    /* Border Radius */
    --radius10: 10px;
    --radius12: 12px;
    --radius16: 16px;
    --radius20: 20px;
    --radius24: 24px;
    --radius30: 30px;
    --radius50px: 50px;
    --radius50: 50%;
    --btn-radius: 10px;
    /* Border Color */
    --borderColor: #EAEAEA;
}


/* ========================================
HEADINGS
======================================== */

h1,
.h1 {
    font-size: clamp(36px, 4vw, 76px);
    line-height: 1.1;
    font-weight: 800;
}

h2,
.h2 {
    font-size: clamp(30px, 2.8vw, 48px);
    line-height: 1.1;
    font-weight: 600;
}

h3,
.h3 {
    font-size: clamp(28px, 2.1vw, 36px);
    line-height: 1.1;
    font-weight: 700;
}

h4,
.h4 {
    font-size: clamp(20px, 1.8vw, 24px);
    line-height: 1.2;
    font-weight: 600;
}

h5,
.h5 {
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
}

h6,
.h6 {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
}

p,
.p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}


/* =========================================================
SUBTITLE
========================================================= */

.subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    text-transform: uppercase;
    color: var(--text-primary);
    background-color: var(--text-white);
    border: 1px solid #ececec;
    border-radius: var(--radius30);
    -webkit-border-radius: var(--radius30);
    -moz-border-radius: var(--radius30);
    -ms-border-radius: var(--radius30);
    -o-border-radius: var(--radius30);
}

.caption {
    font-size: 12px;
}

.minidot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: var(--radius50);
    -webkit-border-radius: var(--radius50);
    -moz-border-radius: var(--radius50);
    -ms-border-radius: var(--radius50);
    -o-border-radius: var(--radius50);
    background-color: var(--bg-primary);
}


/* =========================================================
FONT-WIGHT
========================================================= */

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}


/* =========================================================
COLOR CLASSNAME
========================================================= */

.text_primary {
    color: var(--text-primary) !important;
}

.text_theme {
    color: var(--theme-text) !important;
}

.text_secondary {
    color: var(--text-secondary) !important;
}

.text_white {
    color: var(--text-white) !important;
}

.text_dark_gray {
    color: var(--dark-gray) !important;
}

.text-success{
    color: var(--success);
}

.text-warning{
    color: var(--warning);
}

.text-danger{
    color: var(--danger);
}

a {
    color: var(--theme-text);
    display: inline-block;
}

a:hover,
a:active {
    color: var(--theme-text);
    text-decoration: none;
}

a,
*:hover,
*:focus,
*:active :focus {
    text-decoration: none;
    outline: none !important;
    outline-offset: 0 !important;
}

::-webkit-scrollbar-thumb {
    background: var(--bg-primary);
    border-radius: var(--radius10);
    -webkit-border-radius: var(--radius10);
    -moz-border-radius: var(--radius10);
    -ms-border-radius: var(--radius10);
    -o-border-radius: var(--radius10);
    background-clip: padding-box;
}

::-webkit-scrollbar {
    width: 4px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-moz-selection {
    color: var(--bg-white);
    background: var(--bg-primary);
}

::selection {
    color: var(--bg-white);
    background: var(--bg-primary);
}


/* Firefox */

* {
    scrollbar-width: thin;
    scrollbar-color: var(--bg-primary) transparent;
}

a,
i,
input {
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

a img,
img {
    border: none;
    outline: none !important;
    outline-offset: 0 !important;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* Utilities CSS */

.ellipsis-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.mxw-fit {
    max-width: fit-content !important;
}

.border1 {
    border: 1px solid var(--borderColor);
}


/* =========================================================
BUTTON
========================================================= */

.btn {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    padding: 14px 34px;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius10);
    -webkit-border-radius: var(--radius10);
    -moz-border-radius: var(--radius10);
    -ms-border-radius: var(--radius10);
    -o-border-radius: var(--radius10);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    color: var(--text-primary);
    border: 1px solid transparent;
}

.btn:hover,
.btn:active,
.btn:focus,
.btn:focus-visible {
    transform: translateY(-2px);
    color: var(--text-white);
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.btn:focus-visible {
    background-color: var(--bg-primary);
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: unset;
}

.btn-check:checked+.btn-primary,
:not(.btn-check)+.btn-primary:active,
.btn-primary:first-child:active,
.btn-primary.active,
.btn-primary.show {
    color: var(--text-white);
    background-color: var(--bg-primary);
}

.btn-check:checked+.btn:focus-visible,
:not(.btn-check)+.btn:active:focus-visible,
.btn:first-child:active:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible {
    box-shadow: var(--btn-focus-box-shadow) !important;
}

.btn-primary {
    background: var(--bg-primary);
    color: var(--text-white);
}

.btn-primary:hover,
.btn-primary:active {
    background: var(--bg-primary);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--theme-text);
    border-color: var(--text-gray3);
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    color: var(--text-white);
    background-color: var(--text-gray2);
}

.btn-secondary:focus-visible {
    background: var(--bg-white);
}

.btn-black {
    background: var(--bg-theme);
    color: var(--text-white);
}

.btn-black:hover,
.btn-black:active,
.btn-black:focus {
    background-color: var(--bg-theme);
    color: var(--text-white);
}

.btn-black:focus-visible {
    background: var(--bg-theme);
}

.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}


/* .btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
color: var(--white);
background-color: var(--primary-main);
border-color: var(--primary-main);
} */

.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    width: 14px;
    height: 14px;
    margin-left: 8px;
    display: inline-block;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: btnSpin 0.7s linear infinite;
    vertical-align: middle;
}

@keyframes btnSpin {
    to {
        transform: rotate(360deg);
    }
}


/* Input css */

.form-control.border {
    background-color: var(--bg-white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid var(--borderColor);
    color: var(--theme-text);
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: unset;
    padding: 15px 20px;
    border-radius: var(--radius10);
    -webkit-border-radius: var(--radius10);
    -moz-border-radius: var(--radius10);
    -ms-border-radius: var(--radius10);
    -o-border-radius: var(--radius10);
}

.form-control.border::placeholder {
    font-size: 16px;
    color: var(--theme-text);
    text-transform: capitalize;
}

.form-control.border:focus {
    color: var(--theme-text);
    border-color: var(--bg-primary) !important;
    box-shadow: none;
}

.form-control.border:focus-visible {
    outline: none !important;
}


/* textarea {
    font-style: italic;
} */

.clip-right-top {
    position: relative;
    clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% 50px, 100% 100%, 0% 100%);
}

.clip-right-top img::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
    border-top-right-radius: var(--radius20);
}

.clip-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 70%;
    height: 30px;
    clip-path: polygon(0% 0%, calc(100% - 40px) 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.clip-shape--red {
    background-color: var(--bg-light-primary2);
}

.clip-shape--sec {
    background-color: var(--theme-background-color);
}

.clip-shapev1 {
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 70%;
    height: 35px;
    clip-path: polygon(50px 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}