/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* Basic styles */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {  
    font-family: 'Outfit', sans-serif;
    font-optical-sizing: auto;    
    font-variant-ligatures: none;
    font-weight: normal;
    font-style: normal;
    line-height: initial;
    color: #111;    
    background-color: #fff;
    margin: 0; 
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}
.container-2 {
    max-width: 1287px;
}
h1, h2, h3, h4, h5, h6, p, ul, figure {
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
a, button {  
    display: inline-flex;  
    text-decoration: none;
    outline: 0 none;   
    transition: all 0.3s ease-in-out;
}
ul, li {
    list-style: none;
}
img, svg {
    max-width: 100%;
    height: auto;
}
.d-flex {
    display: flex;
}
.d-inline-flex {
    display: inline-flex;
}
.d-block {
    display: block;
}
.d-inline-block {
    display: inline-block;
}
.align-items-start {
    align-items: flex-start;
}
.align-items-center {
    align-items: center;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-between {
    justify-content: space-between;
}
.justify-content-end {
    justify-content: flex-end;
}
.text-center {
    text-align: center;
}
.text-start {
    text-align: left;
}
.flex-column {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.text-white {
    color: #fff;
}
.text-orange {
    color: #ef6512;
}
.text-raisin-black {
    color: #1c1c27;
}
.text-blue {
    color: #078acf;
}
.d-none {
    display: none;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.mw-100 {
    max-width: 100%;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.overflow-hidden {
    overflow: hidden;
}
.object-fit-cover {
    object-fit: cover;
}
.color-inherit {
    color: inherit;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.row>* {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
input::-ms-clear {
    display: none;
}
input::-ms-reveal {
    display: none;
}
.position-absolute {
    position: absolute;
}
.position-relative {
    position: relative;
}
.position-fixed {
    position: fixed;
}
.cursor-pointer {
    cursor: pointer;
}
.text-uppercase {
    text-transform: uppercase;
}
.fw-normal {
    font-weight: normal;
}
.fw-medium {
    font-weight: 500;
}
.fw-semibold {
    font-weight: 600;
}
.fw-bold {
    font-weight: 700;
}
.text-underline {
    text-decoration: underline;
}
button {
    border: 0;
    background: transparent;    
}
.p-0 {
    padding: 0;
}
.lh-2 {
    line-height: 2;
}

/* Content styles */
header {
    padding: 25px 0;
    background: #fff;
    box-shadow: 1px 1px 8px 3px rgba(0, 0, 0, 0.12);   
    width: 100%;
    position: sticky; 
    left: 0;
    top: 0;
    z-index: 3;
}
.header-logo {
    flex: 1 1 12.94%;
    max-width: 12.94%;
}
.btn {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 3px;
    padding: 16px 42px;
    background-color: transparent;
    border-radius: 5px;
    border: 0;
}
.btn-medium {
    padding: 14px 40px;
}
.btn svg {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}
.btn span ~ svg {
    margin-right: 0;
    margin-left: 10px;
}
.btn-orange {    
    background-image: linear-gradient(90deg, rgba(244, 131, 15, 1) 0%, rgba(237, 90, 19, 1) 100%);
}
.btn-orange-medium {    
    background-image: linear-gradient(90deg, rgba(244, 131, 15, 1) 0%, rgba(237, 90, 19, 0.8) 100%);    
}
.btn-blue {
    background-image: linear-gradient(90deg, rgba(7, 138, 207, 1) 0%, rgba(7, 56, 95, 1) 100%);
}
.btn-orange-outline {
    border: 2px solid #ef6512;
    background: transparent;
}
header nav a {
    line-height: 1.5;
    padding: 0 5px;
}
header nav .dropdown-list {
    left: 0;
    top: calc(100% + 5px);
    width: 300px;    
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
header nav .dropdown-item:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
}
header nav .dropdown-list a {
    line-height: 2;
    padding: 15px 35px 15px 15px;
    border-bottom: 1px solid rgba(28, 28, 39, 0.1);
    background: #f4f4f4;
}
header nav .heading-item span {
    font-size: 13px;
    line-height: 1.5;
    padding: 12px 0;
}
.sidebar-backdrop {
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.3);
    z-index: 4;
}
section {
    padding: 100px 0;   
}
.hero {     
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.hero::before {
    content: '';
    background: rgba(255, 255, 255, 0.96);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}
.home-hero {
    background-image: url('../images/kv-banner-2.webp');
}
.hero-content {
    max-width: 750px;
    padding: 25px 0;
    z-index: 1;
}
h1 {
    font-size: 70px;
    line-height: 1.3;    
}
p.large {
    font-size: 20px;    
}
.hero p.large {    
    padding: 10px 0;
}
.hero .btn-group {    
    padding-top: 20px;
    gap: 20px;
}
.heading-label {
    font-size: 19px;
    background-color: transparent;
    background-image: linear-gradient(90deg, rgba(7, 138, 207, 1) 0%, rgba(7, 56, 95, 1) 100%);
    letter-spacing: 5px;
    border-radius: 50px;
    max-width: 250px;
}

.heading-span {
    letter-spacing: 4px;
}
h2 {
    font-size: 50px;
    line-height: 1.3;
}
.heading h2 {
    padding: 20px 0 10px;
}
.heading p {
    padding: 10px 0;
}
.attention-content .heading {
    max-width: 955px;
}
.attention-content h2 {
    max-width: 820px;
}
.attention-content .row {
    margin-top: 20px;
}
.attention-content .row>* > .d-flex {
    padding: 15px 0;
}
.attention-content .row figure img {
    width: 50px;
}
.attention-content .row p {
    width: calc(100% - 90px);
    padding: 0 15px;
}
.categories {  
    background: url('../images/categories-bg.webp') no-repeat center/cover;       
    background-position: 50% 50%;    
}
.categories::before {
    content: '';
    background: rgba(255 255, 255, 0.35);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}
.categories-content {
    z-index: 1;
}
.categories-content .row {
    margin-top: 30px;
    margin-left: -10.5px;
    margin-right: -10.5px;
}
.categories-content .row>* {    
    padding-top: 21px;
    padding-left: 10.5px;
    padding-right: 10.5px;
}
.categories-box {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 10px;
    background: #fff;
}
.categories-box p.large {
    padding: 20px 0 10px;
}
.categories-box p.large ~ p {
    margin: 0 10px 10px;
}
.categories-box .btn {
    margin: 10px 0;
}
footer {
    padding: 70px 0;
    background: url('../images/footer-01.svg') no-repeat center/cover;
    background-position: 50% 50%;
}
footer .heading {
    max-width: 820px;
    padding: 10px 0;
}
footer .heading h2 {
    padding: 20px 0;
}
footer .row {
    margin: 0;
    margin-top: 40px;
}
footer .row>* {
    padding: 15px;
}
.footer-logo {
    padding: 10px 0;
}
.footer-logo img {
    max-width: 59%;
}
footer .row li:not(:has(.ft-nav-icon)) {
    margin: 5px 0;
}
footer .row li:has(.ft-nav-icon) {
    padding: 10px 0;
}
footer .row p.large {
    padding: 10px 0 15px; 
}
footer .row:has(.ft-nav-icon) p.large {
    padding-bottom: 10px;
}
footer li.active a {
    color: #ef6512;
}
.ft-nav-icon {
    margin-right: 20px;
}
footer .hr {
    width: 75%;
    padding: 40px 0 10px;
}
.copy-rights {
    padding: 0 15px;
}
.copy-rights p {
    padding: 15px 0;
}
.theme-2 header {
    background: #1c1c27;
}
.theme-2 header .text-raisin-black {
    color: #fff;
}
.theme-2 .hero::before {
    background: rgba(28, 28, 39, 0.96);
}
.theme-2 .hero {
    color: #fff;
}
.theme-2 .categories-box {
    color: #fff;
    background: #1c1c27;
}

/* Media query styles */
@media (max-width: 991px) {
    .header-logo {
        flex: 1 1 30%;
        max-width: 30%;
        padding: 0 15px;
    }
    header nav {
        width: 80%;
        min-width: 240px;
        max-width: 440px;
        height: 100%;
        background: #1c1c27;
        position: fixed;        
        left: 0;
        top: 0;
        transition: all 0.3s ease-in-out;
        transform: translate3d(-100%, 0, 0);
        z-index: 5;
    }
    .sidebar-show header nav {
        transform: translate3d(0, 0, 0);
    }
    header nav > ul.d-flex {
        display: block;
    }
    .sidebar-show {
        overflow: hidden;
    }
    .sidebar-show .sidebar-backdrop {
        opacity: 1;
        visibility: visible;
    }
    header nav a.text-raisin-black {
        font-size: 15px;
        line-height: 1.6;
        color: #fff;
        padding: 10px 20px;
        display: block;
    }
    header nav li.active > a.text-raisin-black {
        color: #ef6512;
    }
    header nav .dropdown-list {
        position: static;
        width: 100%;   
        opacity: 1;
        visibility: visible;   
        display: none;  
    }
    header nav li.open .dropdown-list {
        display: block;
    }
    header nav .dropdown-list a {
        padding: 10px 30px;
        background: rgba(255, 255, 255, .05);
        border-bottom: 0;
    }
    header nav .dropdown-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    header nav .dropdown-item > a {
        width: calc(100% - 50px);
    }
    header nav .dropdown-arrow {
        width: 50px;
        height: 44px;
    }
    header nav .dropdown-arrow::after {
        content: '';
        position: absolute;
        width: 6px;
        height: 6px;
        transform: rotate(135deg);
        border: 2px solid #ef6512;
        border-bottom: none;
        border-right: none;
        left: 10px;
        top: 19px;
    }
    header nav li.open .dropdown-arrow::after {
        transform: rotate(225deg);
    }
    .btn,
    .btn-medium {
        padding: 11px 26px;
        letter-spacing: 0;
    }
    section,
    footer {
        padding: 50px 0;
    }
    h1.fw-normal,
    h2.fw-normal,
    strong {
        font-weight: 700;
    }
    h1 {
        font-size: 50px;
        line-height: 1.5;
        letter-spacing: 1px;
    }
    .heading-label {
        font-size: 16px;
        line-height: 1.5;
        max-width: 200px;
        padding: 10px;
    }
    h2 {
        font-size: 30px;
        line-height: 1.2;
    }
    .attention-content h2 {
        max-width: 570px;
    }
    p {
        font-size: 15px;
        line-height: 1.6;
    }
    .lh-2:not(.large) {
        line-height: 1.6;
    }
    .categories-content .row {
        margin-top: 10px;
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
    .categories-content .row>* {    
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
    .categories-box p.large ~ p {
        margin: 10px 0;
    }   
    footer .row {
        margin-top: 10px;
    }
    footer a {
        font-size: 15px;
    }
    footer .hr {
        padding: 10px 0;
    }
    .hero-content {
        padding: 20px 0;
    }
    footer .heading h2 {
        padding: 20px 15px;
    }
}
@media (max-width: 767px) {
    header {
        padding: 15px 0;
    }
    .header-logo {
        flex: 1 1 46.3%;
        max-width: 46.3%;
    }
    section,
    footer {
        padding: 25px 0;
    }    
    h1 {
        font-size: 30px;
        letter-spacing: 0;
    }
    .hero p.large {
        font-size: 16px;
    }   
    .hero .btn-group {
        padding-top: 10px;
    }
    .attention-content h2 {
        max-width: 100%;
    }
    .attention-content .row p {
        width: calc(100% - 50px);
    }
    h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    footer .row {
        margin-top: 0;
        margin-left: -15px;
        margin-right: -15px;
    }
    .footer-logo img {
        max-width: 45.3%;
    }
    .copy-rights {
        flex-wrap: wrap;
        padding: 20px 0 10px;
    }
    .copy-rights p {
        width: 100%;
        text-align: center;
        padding: 7px 0;
    }
    footer .hr {
        padding: 0;
    }
}
@media (min-width: 768px) {
    .d-md-none {
        display: none;
    }
    .d-md-block {
        display: block;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-4 {
        width: 33.33333%;
    }
}
@media (min-width: 992px) {
    .d-lg-none {
        display: none;
    }
    .d-lg-block {
        display: block;
    }
    .btn-orange:hover {
        background-image: linear-gradient(90deg, rgba(237, 90, 19, 0.8) 0%, rgba(244, 131, 15, 1) 100%);
    }
    .btn-orange-medium:hover {
        background-image: linear-gradient(90deg, rgba(237, 90, 19, 1) 0%, rgba(244, 131, 15, 1) 100%);
    }
    .btn-blue:hover {
        background-image: linear-gradient(90deg, rgba(7, 56, 95, 0.8) 0%, rgba(7, 138, 207, 1) 100%);
    }
    .btn-orange-outline:hover {
        color: #fff;
        background: #ef6512;
    }
    header nav > ul > li {
        margin-right: 22.5px;
        margin-left: 22.5px;
    }
    header nav > ul > li:not(.active) a:hover,
    footer a:hover {
        color: #ef6512;
    }
    header nav .dropdown-list a:hover {
        color: #fff;
        background: #ef6512;
    }
    header nav .dropdown-item > a {
        padding-right: 30px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 24 24" width="20" height="20"><path fill="currentColor" d="M12 15a.997.997 0 0 1-.707-.293L6.586 10 8 8.586l4 4 4-4L17.414 10l-4.707 4.707A.997.997 0 0 1 12 15z"/></svg>') no-repeat right center;
    }
    .attention-content .row>* {    
        padding-top: 30px;
    }
    .attention-content .row figure {
        padding: 0 15px;
    }    
    .theme-2 header nav .dropdown-item.active > a {
        filter: brightness(0) saturate(100%) invert(41%) sepia(97%) saturate(1143%) hue-rotate(353deg) brightness(95%) contrast(97%);
    }
    .theme-2 header nav .dropdown-list a {
        background: #272734;
    }
}


.attention-item-row > .row:first-child {
    align-items: flex-end !important;
}
header nav li a,
.hero-content h1,
.hero-content .btn-group .btn,
footer li a,
.categories-box p,
.hero-content p,
.categories-content .heading span,
header .btn span:has(~svg),
header .btn:has(svg) svg ~ span {
    word-break: break-all;
}
header nav li a {
    max-width: 300px;
}
.hero-content .btn-group .btn {
    min-width: 185px;
}
.hero-content .btn-group .btn span:has(~svg),
header .btn span:has(~svg),
header .btn:has(svg) svg ~ span {
    width: calc(100% - 26px);
}
header .sidebar ~ .d-none.d-md-block a {
    max-width: 190px;
}

@media (max-width: 1439.98px) {
    .dynamic-field-row .row:has(:nth-child(4)) > [class*="col-"] {
        width: 50%;
    }
}
@media (max-width: 1199.98px) {
    .col-md-6:has(.input-group > :nth-child(5)) {
        width: 100%;
    }
    .dynamic-field-row .row:has(:nth-child(4)) > [class*="col-"] {
        width: 100%;
    }
}
@media (max-width: 991.98px) {
    .sidebar {
        transform: translateX(-110%);
    }
    .sidebar-icon-only .header-container-left .collapse-menu {
        position: absolute;
        left: 15rem;
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        padding-left: 8px;
    }  
    header nav li a {
        max-width: 100%;
    }
    header nav li:has(.dropdown-arrow) {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }  
    header nav li:has(.dropdown-arrow) a {
        width: calc(100% - 50px);
    }   
    .header-logo {
        display: flex;
        justify-content: center;
    }    
}
@media (max-width: 767.98px) {
    .btn-danger[class*="remove-"] {
        margin-top: 8px;
    }
    header .sidebar ~ .d-none.d-md-block + a.d-md-none {
        width: 32px;
        height: 32px;
        background: url('data:image/svg+xml,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="32" height="32" rx="8" fill="%23ef6512" fill-opacity="0.14"></rect><path d="M15.3636 23C11.849 23 9 20.0899 9 16.5C9 12.9101 11.849 10 15.3636 10C16.3517 9.99924 17.3263 10.2339 18.21 10.6852C19.0938 11.1365 19.8623 11.7922 20.4545 12.6H18.73C17.9951 11.9381 17.0889 11.5069 16.1201 11.3581C15.1513 11.2093 14.161 11.3492 13.268 11.761C12.3751 12.1728 11.6175 12.839 11.086 13.6798C10.5546 14.5205 10.272 15.5 10.2721 16.5007C10.2722 17.5014 10.555 18.4809 11.0865 19.3215C11.6181 20.1622 12.3758 20.8283 13.2688 21.2399C14.1618 21.6516 15.1521 21.7913 16.1209 21.6423C17.0897 21.4933 17.9959 21.062 18.7306 20.4H20.4552C19.8629 21.2079 19.0943 21.8636 18.2104 22.315C17.3265 22.7663 16.3518 23.0009 15.3636 23ZM19.8182 19.1V17.15H14.7273V15.85H19.8182V13.9L23 16.5L19.8182 19.1Z" fill="%23ef6512"></path></svg>') no-repeat;
    }
    header .sidebar ~ .d-none.d-md-block + a.d-md-none svg {
        display: none;
    }    
}
@media (max-width: 575.98px) {
    .header-container-right > .mx-2 a {
        font-size: 13px;
        min-width: 56px;
    }
    .header-container-right .user-image {
        min-width: 30px;
    }
    .header-container-right .user-image figure img {
        width: 30px !important;
        height: 30px !important;
    }
    .header-container-right .user-details {
        width: calc(100% - 30px);
    }
    .header-container-right .logout-btn {
        min-width: 32px;
    }
    .header-container-right .notification-details {
        min-width: 20px;
        margin-right: 16px !important;
    }
    .header-container-right .user-profile-details {
        padding-right: 8px !important;
    }
    .header-container-right .user-details p {
        font-size: 0;
    }
    .header-container-right .user-details p span {
        font-size: 13px;
    }
    .nav-tabs#configTabs {
        padding: 0.5rem;
        justify-content: space-between;
    }
    .nav-tabs#configTabs li {
        width: calc(50% - 4px);
    }
    .nav-tabs#configTabs .nav-link {
        font-size: 14px;
        width: 100%;
        padding: 16px;
    }
    input.form-control.color-value,
    input.bg-color-picker + input.form-control.bg-color-value {
        font-size: 15px !important;
        width: 100%;
        border-radius: 0.5rem !important;
        margin-left: 0 !important;
    }
    .input-group-text:has(+.form-control.color-value) {
        border-top-right-radius: 0.5rem !important;
        border-bottom-right-radius: 0.5rem !important;
    }   
    .input-group > input:nth-child(2):nth-last-child(1) {
        width: 70%;
    }
    .add-button-container {
        width: 100%;
        text-align: left;
    }   
}
@media (max-width: 359.98px) {
    .user-details p {
        max-width: 80px;
    }
    .header-container-right > .mx-2 a {
        font-size: 12px;
        min-width: 52.5px;
        margin-left: -10px;
    }    
    .header-container-right .user-details p span {
        font-size: 12px;
    }
}
@media (max-width: 1199.98px) and (min-width: 768px) {
    .dynamic-field-row > .row > .col-md-2 {
        padding-left: 0;
    }
    .dynamic-field-row .row:has(:nth-child(4)) > .col-md-2 {
         padding-left: 12px;
    }
}
