:root {
    --theme-color: #0d5ef4;
    --theme-color2: #f20f10;
    --title-color: #0f2239;
    --body-color: #4d5765;
    --smoke-color: #f3f7fb;
    --black-color: #000;
    --white-color: #fff;
    --light-color: #72849b;
    --yellow-color: #ffb539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #ecf1f9;
    --title-font: 'Jost', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --icon-font: "Font Awesome 5 Free";
    --main-container: 1380px;
    --container-gutters: 24px;
    --section-space: 70px;
    --section-space-mobile: 50px;
    --section-title-space: 30px;
    --ripple-ani-duration: 5s;
    --ripple-ani-duration: 5s;
    --font-large: 40px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
header.sticky {
    background-color: #111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 2.5rem !important;
}
header .btn-gradient {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    width: 140px;
    height: 47px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(137.02deg, #ef0 1.7%, #1c84a3 86.13%);
    border: none;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}
header .btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(137.02deg, #ef0 1.7%, #1c84a3 86.13%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
header .btn-gradient:hover {
    background: transparent;
    color: #fff;
}
header .btn-gradient:hover::before {
    opacity: 1;
}
a.header-link {
    font-size: 12px;
    color: #ececec;
}
a.header-link:hover {
    background: linear-gradient(137.02deg, #ef0 1.7%, #1c84a3 86.13%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
ul.dropdown-menu.dropdown-menu-dark {
    background: #000;
}

ul.dropdown-menu.dropdown-menu-dark .dropdown-item{
font-size: 12px;
}
header nav.custom-gap {
    gap: 3rem ;
}
.bordder-left {
    border-left: 1px solid #302b2b;
    padding: 1px;
    height: 28px;
    width: 1px;
}