﻿@font-face {
    font-display: block;
    font-family: "Font Awesome\6 Free";
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/fontawesome-free/fa-solid-900.woff2") format("woff2"), url("../fonts/fontawesome-free/fa-solid-900.ttf") format("truetype");
}

.fa-solid {
    font-weight: 900;
}

@font-face {
    font-display: block;
    font-family: "Font Awesome\6 Brands";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/fontawesome-free/fa-brands-400.woff2") format("woff2"), url("../fonts/fontawesome-free/fa-brands-400.ttf") format("truetype");
}

.fa-brands {
    font-weight: 400;
}

.fa-facebook-f {
    --fa: "\f39e";
}

.fa-linkedin {
    --fa: "\f08c";
}

.fa-instagram {
    --fa: "\f16d";
}

.fa-whatsapp {
    --fa: "\f232";
}

.fa-brands, .fa-solid, .far {
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

.fa-brands::before, .fa-solid::before, .far::before {
    content: var(--fa);
}

.fa-solid, .far {
    font-family: "Font Awesome\6 Free";
}

.fa-brands {
    font-family: "Font Awesome\6 Brands";
}

.fa-arrow-right {
    --fa: "\f061";
}

.fa-phone {
    --fa: "\f095";
}

.fa-arrow-left {
    --fa: "\f060";
}

.fa-envelope {
    --fa: "\f0e0";
}

.fa-angle-down {
    --fa: "\f107";
}

:root {
    --bs-dark-rgb: 33, 37, 41;
    --bs-primary-text-emphasis: #052c65;
    --bs-primary-bg-subtle: #cfe2ff;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-emphasis-color: #000;
    --bs-emphasis-color-rgb: 0, 0, 0;
    --bs-secondary-color: rgba(33, 37, 41, 0.75);
    --bs-tertiary-color: rgba(33, 37, 41, 0.5);
    --bs-tertiary-bg: #f8f9fa;
    --bs-heading-color: inherit;
    --bs-link-color: #0d6efd;
    --bs-link-color-rgb: 13, 110, 253;
    --bs-link-hover-color: #0a58ca;
    --bs-link-hover-color-rgb: 10, 88, 202;
    --bs-border-width: 1px;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
}

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

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    margin: 0px;
    text-align: var(--bs-body-text-align);
}

hr {
    border-right: 0px;
    border-bottom: 0px;
    border-left: 0px;
    border-image: initial;
    border-top: var(--bs-border-width) solid;
    color: inherit;
    margin: 1rem 0px;
    opacity: 0.25;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--bs-heading-color);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    margin-top: 0px;
}

.h1, h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 2.5rem;
    }
}

.h2, h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 2rem;
    }
}

.h3, h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.75rem;
    }
}

.h4, h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    .h4, h4 {
        font-size: 1.5rem;
    }
}

.h5, h5 {
    font-size: 1.25rem;
}

.h6, h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    margin-top: 0px;
}

ul {
    margin-bottom: 1rem;
    margin-top: 0px;
    padding-left: 2rem;
}

ul ul {
    margin-bottom: 0px;
}

b, strong {
    font-weight: bolder;
}

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
}

a:hover {
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

img, svg {
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    caption-side: bottom;
}

th {
    text-align: -webkit-match-parent;
}

tbody, td, th, thead, tr {
    border-width: 0px;
    border-style: solid;
    border-image: initial;
    border-color: inherit;
}

button {
    border-radius: 0px;
}

button:focus:not(:focus-visible) {
    outline: 0px;
}

button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0px;
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

[type="button"], [type="submit"], button {
    appearance: button;
}

[type="button"]:not(:disabled), [type="submit"]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-year-field {
    padding: 0px;
}

::-webkit-inner-spin-button {
    height: auto;
}

::-webkit-search-decoration {
    appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0px;
}

::file-selector-button {
    appearance: button;
    font: inherit;
}

.img-fluid {
    height: auto;
    max-width: 100%;
}

.container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    width: 100%;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

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

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-top: calc(var(--bs-gutter-y) * -1);
}

.row > * {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    width: 100%;
}

.col {
    flex: 1 0 0%;
}

.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3, .gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3, .gy-3 {
    --bs-gutter-y: 1rem;
}

.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.gx-5 {
    --bs-gutter-x: 3rem;
}

.gy-5 {
    --bs-gutter-y: 3rem;
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.3333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.6667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.6667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.3333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.6667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.3333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.6667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.3333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.6667%;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }
}

@media (min-width: 1200px) {
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.3333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.6667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.3333%;
    }
}

@media (min-width: 1400px) {
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.3333%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.3333%;
    }
}

.table {
    --bs-table-color-type: initial;
    --bs-table-bg-type: initial;
    --bs-table-color-state: initial;
    --bs-table-bg-state: initial;
    --bs-table-color: var(--bs-emphasis-color);
    --bs-table-bg: var(--bs-body-bg);
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-emphasis-color);
    --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
    border-color: var(--bs-table-border-color);
    margin-bottom: 1rem;
    vertical-align: top;
    width: 100%;
}

.table > :not(caption) > * > * {
    background-color: var(--bs-table-bg);
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
    color: var( --bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)) );
    padding: 0.5rem;
}

.table > tbody {
    vertical-align: inherit;
}

.table > thead {
    vertical-align: bottom;
}

.table-striped > tbody > tr:nth-of-type(2n+1) > * {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: var(--bs-table-striped-bg);
}

.collapse:not(.show) {
    display: none;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

.dropdown-toggle::after {
    border-width: 0.3em 0.3em 0px;
    border-bottom-style: initial;
    border-bottom-color: initial;
    border-left-style: solid;
    border-left-color: transparent;
    border-right-style: solid;
    border-right-color: transparent;
    border-top-style: solid;
    border-top-color: initial;
    content: "";
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
}

.dropdown-toggle:empty::after {
    margin-left: 0px;
}

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: var(--bs-body-color);
    --bs-dropdown-bg: var(--bs-body-bg);
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: var(--bs-border-radius);
    --bs-dropdown-border-width: var(--bs-border-width);
    --bs-dropdown-link-color: var(--bs-body-color);
    --bs-dropdown-link-hover-color: var(--bs-body-color);
    --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    background-clip: padding-box;
    background-color: var(--bs-dropdown-bg);
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
    color: var(--bs-dropdown-color);
    display: none;
    font-size: var(--bs-dropdown-font-size);
    list-style: none;
    margin: 0px;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    position: absolute;
    text-align: left;
    z-index: var(--bs-dropdown-zindex);
}

.dropdown-item {
    background-color: transparent;
    border: 0px;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
    clear: both;
    color: var(--bs-dropdown-link-color);
    display: block;
    font-weight: 400;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: var(--bs-dropdown-link-hover-bg);
    color: var(--bs-dropdown-link-hover-color);
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--bs-dropdown-link-active-bg);
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
}

.dropdown-item:disabled {
    background-color: transparent;
    color: var(--bs-dropdown-link-disabled-color);
    pointer-events: none;
}

.dropdown-menu.show {
    display: block;
}

.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0px;
    padding-left: 0px;
}

.nav-link {
    background: none;
    border: 0px;
    color: var(--bs-nav-link-color);
    display: block;
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link {
        transition: none;
    }
}

.nav-link:focus, .nav-link:hover {
    color: var(--bs-nav-link-hover-color);
}

.nav-link:focus-visible {
    box-shadow: rgba(13, 110, 253, 0.25) 0px 0px 0px 0.25rem;
    outline: 0px;
}

.nav-link:disabled {
    color: var(--bs-nav-link-disabled-color);
    cursor: default;
    pointer-events: none;
}

.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
    --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
    --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
    --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-brand-padding-y: 0.3125rem;
    --bs-navbar-brand-margin-end: 1rem;
    --bs-navbar-brand-font-size: 1.25rem;
    --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-nav-link-padding-x: 0.5rem;
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(33, 37, 41, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
    --bs-navbar-toggler-border-radius: var(--bs-border-radius);
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    flex-wrap: wrap;
    padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
    position: relative;
}

.navbar, .navbar > .container {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.navbar > .container {
    flex-wrap: inherit;
}

.navbar-brand {
    color: var(--bs-navbar-brand-color);
    font-size: var(--bs-navbar-brand-font-size);
    margin-right: var(--bs-navbar-brand-margin-end);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    padding-top: var(--bs-navbar-brand-padding-y);
    text-decoration: none;
    white-space: nowrap;
}

.navbar-brand:focus, .navbar-brand:hover {
    color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 0px;
    padding-left: 0px;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--bs-navbar-active-color);
}

.navbar-nav .dropdown-menu {
    position: static;
}

.navbar-text {
    color: var(--bs-navbar-color);
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.navbar-text a, .navbar-text a:focus, .navbar-text a:hover {
    color: var(--bs-navbar-active-color);
}

.navbar-collapse {
    align-items: center;
    flex-basis: 100%;
    flex-grow: 1;
}

.navbar-toggler {
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    color: var(--bs-navbar-color);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    transition: var(--bs-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
        transition: none;
    }
}

.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
    outline: 0px;
    text-decoration: none;
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-position: 50% center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    height: 1.5em;
    vertical-align: middle;
    width: 1.5em;
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: var(--bs-navbar-nav-link-padding-x);
        padding-right: var(--bs-navbar-nav-link-padding-x);
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

.accordion {
    --bs-accordion-color: var(--bs-body-color);
    --bs-accordion-bg: var(--bs-body-bg);
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-border-color: var(--bs-border-color);
    --bs-accordion-border-width: var(--bs-border-width);
    --bs-accordion-border-radius: var(--bs-border-radius);
    --bs-accordion-inner-border-radius: calc( var(--bs-border-radius) - var(--bs-border-width) );
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: var(--bs-body-color);
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052C65' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: var(--bs-primary-text-emphasis);
    --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
    align-items: center;
    background-color: var(--bs-accordion-btn-bg);
    border: 0px;
    border-radius: 0px;
    color: var(--bs-accordion-btn-color);
    display: flex;
    font-size: 1rem;
    overflow-anchor: none;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    position: relative;
    text-align: left;
    transition: var(--bs-accordion-transition);
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        transition: none;
    }
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-accordion-active-bg);
    box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
    color: var(--bs-accordion-active-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::after {
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    content: "";
    flex-shrink: 0;
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    transition: var(--bs-accordion-btn-icon-transition);
    width: var(--bs-accordion-btn-icon-width);
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
    outline: 0px;
    z-index: 3;
}

.accordion-header {
    margin-bottom: 0px;
}

.accordion-item {
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
    color: var(--bs-accordion-color);
}

.accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: var(--bs-accordion-inner-border-radius);
    border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:not(:first-of-type) {
    border-top: 0px;
}

.accordion-item:last-of-type {
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
    border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:last-of-type > .accordion-collapse {
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush > .accordion-item {
    border-left: 0px;
    border-radius: 0px;
    border-right: 0px;
}

.accordion-flush > .accordion-item:first-child {
    border-top: 0px;
}

.accordion-flush > .accordion-item:last-child {
    border-bottom: 0px;
}

.accordion-flush > .accordion-item > .accordion-collapse, .accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
    border-radius: 0px;
}

.fixed-top {
    left: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 1030;
}

.hstack {
    align-items: center;
    align-self: stretch;
    display: flex;
    flex-direction: row;
}

.visually-hidden {
    clip: rect(0px, 0px, 0px, 0px) !important;
    border: 0px !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0px !important;
    white-space: nowrap !important;
    width: 1px !important;
}

.visually-hidden:not(caption) {
    position: absolute !important;
}

.d-inline {
    display: inline !important;
}

.d-block {
    display: block !important;
}

.d-none {
    display: none !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.m-0 {
    margin: 0px !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.p-0 {
    padding: 0px !important;
}

.py-0 {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.text-center {
    text-align: center !important;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.visible {
    visibility: visible !important;
}

@media (min-width: 576px) {
    .text-sm-start {
        text-align: left !important;
    }
}

@media (min-width: 768px) {
    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .me-md-auto {
        margin-right: auto !important;
    }

    .ms-md-0 {
        margin-left: 0px !important;
    }

    .text-md-start {
        text-align: left !important;
    }
}

@media (min-width: 992px) {
    .pe-lg-5 {
        padding-right: 3rem !important;
    }

    .text-lg-start {
        text-align: left !important;
    }

    .text-lg-end {
        text-align: right !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-block {
        display: block !important;
    }
}

@font-face {
    font-display: swap;
    font-family: "Font Awesome\6 Free";
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/fontawesome-free/fa-solid-900.woff2") format("woff2");
}

i.fa-solid {
    font-family: "Font Awesome\6 Free";
}

body::-webkit-scrollbar {
    width: 0.8em;
}

body::-webkit-scrollbar-track {
    background: rgb(118, 95, 1);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 6px inset;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(255, 204, 0);
    border-radius: 25px;
}

::selection {
    background-color: rgb(255, 204, 0);
    color: rgb(0, 0, 0) !important;
}

body, html {
    font-family: Gilroy, "sans-serif";
    overflow-x: hidden;
}

.h2, .h3, .h4, .h5, .h6, h2, h3, h4, h5, h6 {
    display: block;
}

.h1, h1 {
    color: rgb(0, 0, 0);
    display: inline-block;
    font-size: 48px;
    line-height: 55px;
    margin-bottom: 16px;
}

.h1, .h2, h1, h2 {
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

.h2, h2 {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(rgb(0, 0, 0) 50%, rgb(120, 104, 40) 65%) text;
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 10px;
    text-align: center;
}

.h2::selection, h2::selection {
    -webkit-text-fill-color: initial;
}

.h3, h3 {
    font-size: 31px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.h4, h4 {
    line-height: 28px;
}

.h4, .h5, .h6, h4, h5, h6 {
    font-size: 22px;
}

p {
    color: rgb(56, 56, 56);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 25px;
}

.key-words {
    font-size: 20px;
    text-align: center;
}

a {
    box-shadow: none;
    outline: none !important;
    text-decoration: none !important;
}

section {
    margin: auto;
    max-width: 1920px;
    padding: 70px 0px;
}

.b-l-box, section {
    position: relative;
}

.b-l-box {
    z-index: 1;
}

.b-l-box::before {
    left: -300px;
}

.b-l-box::after, .b-l-box::before {
    background: linear-gradient(rgba(255, 204, 0, 0.18) 53%, rgba(255, 204, 0, 0.18) 78%);
    border: 1px solid rgba(255, 204, 0, 0.18);
    border-radius: 0px 23px 23px 0px;
    content: "";
    height: 210px;
    margin: auto;
    position: absolute;
    top: 0px;
    width: 180px;
    z-index: -1;
}

.b-l-box::after {
    bottom: 0px;
    right: -300px;
    transform: rotate(180deg);
}

.t-sr-box {
    position: relative;
    z-index: 1;
}

.t-sr-box::after {
    background: linear-gradient(rgba(255, 204, 0, 0.18) 53%, rgba(255, 204, 0, 0.18) 78%);
    border: 1px solid rgba(255, 204, 0, 0.18);
    border-radius: 15px;
    content: "";
    height: 70px;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 70px;
    z-index: -2;
}

.b-r-box {
    position: relative;
    z-index: 1;
}

.b-r-box::before {
    background: linear-gradient(87deg, rgba(255, 204, 0, 0.18) 53%, rgba(255, 204, 0, 0.18) 78%);
    border-radius: 15px;
    bottom: 90px;
    content: "";
    height: 70px;
    position: absolute;
    right: 235px;
    width: 70px;
    z-index: -2;
}

.t-l-box {
    position: relative;
    z-index: 1;
}

.t-l-box::before {
    background: linear-gradient(rgba(255, 204, 0, 0.18) 53%, rgba(255, 204, 0, 0.18) 78%);
    border: 1px solid rgba(255, 204, 0, 0.18);
    border-radius: 15px;
    content: "";
    height: 135px;
    left: -40px;
    position: absolute;
    top: -23px;
    width: 79px;
    z-index: -2;
}

.t-r-box {
    position: relative;
    z-index: 1;
}

.t-r-box::after {
    background: linear-gradient(rgba(255, 204, 0, 0.18) 53%, rgba(255, 204, 0, 0.06) 78%);
    border: 1px solid rgba(255, 204, 0, 0.18);
    border-radius: 15px;
    content: "";
    height: 218px;
    position: absolute;
    right: 0px;
    top: -48px;
    width: 215px;
    z-index: -2;
}

ul {
    padding: 0px;
}

ul li {
    display: flex;
    list-style: none;
    margin-bottom: 7px;
    text-decoration: none;
    color: rgb(0, 0, 0) !important;
    font-size: 18px !important;
}

.hstack {
    gap: 2rem;
}

.btn-order {
    background-color: rgb(255, 204, 0);
    border: 1px solid rgb(255, 204, 0);
    border-radius: 4px;
    color: rgb(0, 0, 0);
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    overflow: hidden;
    padding: 12px 32px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s ease-in-out;
}

.btn-order:hover {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    transition: background-color 1s;
}

.btn-order:hover::before {
    background: radial-gradient(circle at 20% 35%, transparent 0px, transparent 2px, #000 3px, #000 4px, transparent 0px), radial-gradient(circle at 75% 44%, transparent 0px, transparent 2px, #000 3px, #000 4px, transparent 0px), radial-gradient(circle at 46% 52%, transparent 0px, transparent 4px, #000 5px, #000 6px, transparent 0px), radial-gradient(circle at 15% 25%, transparent 0px, transparent 4px, #000 5px, #000 6px, transparent 0px), radial-gradient(circle at 65% 85%, transparent 0px, transparent 4px, #000 5px, #000 6px, transparent 0px);
}

.btn-order::before {
    animation: 3.5s linear 0s infinite normal both running bubbles;
    background: radial-gradient(circle at 20% 35%, transparent 0px, transparent 2px, rgb(198, 217, 236) 3px, rgb(198, 217, 236) 4px, transparent 0px), radial-gradient(circle at 75% 44%, transparent 0px, transparent 2px, rgb(198, 217, 236) 3px, rgb(198, 217, 236) 4px, transparent 0px), radial-gradient(circle at 46% 52%, transparent 0px, transparent 4px, rgb(198, 217, 236) 5px, rgb(198, 217, 236) 6px, transparent 0px), radial-gradient(circle at 15% 25%, transparent 0px, transparent 4px, rgb(198, 217, 236) 5px, rgb(198, 217, 236) 6px, transparent 0px), radial-gradient(circle at 65% 85%, transparent 0px, transparent 4px, rgb(198, 217, 236) 5px, rgb(198, 217, 236) 6px, transparent 0px);
    content: "";
    height: 300%;
    left: 0px;
    opacity: 0.6;
    pointer-events: none;
    position: absolute;
    top: 0px;
    width: 100%;
}

@keyframes bubbles {
    0% {
    }

    100% {
        transform: translateY(-66.666%);
    }
}

span {
    display: block;
}

.key-text {
    color: rgb(22, 42, 71);
    display: inline;
    font-size: 46px;
    font-weight: 500;
    line-height: 55px;
}

.btn-live {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(255, 204, 0);
    border-radius: 4px;
    color: rgb(0, 0, 0);
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 32px;
    text-align: center;
    text-transform: uppercase;
}

.btn-live, .btn-live:hover {
    transition: 0.5s ease-in-out;
}

.btn-live:hover {
    background: linear-gradient(127deg, rgb(255, 204, 0) 48%, rgb(221, 177, 0) 81%);
    border: 1px solid;
    color: rgb(0, 0, 0);
}

.btn-content {
    color: rgb(0, 0, 0);
    font-size: 14px;
}

.btn-content::after {
    color: rgb(255, 255, 255);
    content: "\f054";
    display: inline-block;
    font-family: "Font Awesome\6 Free";
    font-weight: 900;
    margin-left: 10px;
    transition: transform 1s;
}

.lazyload {
    opacity: 0;
    transition: opacity 0.5s;
}

hr {
    border-top: 1px solid rgba(112, 112, 112, 0.63);
    margin: auto;
    max-width: 1920px;
}

.mt-60 {
    margin-top: 65px;
}

.sub-heading {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.sub-heading::after {
    background-color: rgb(255, 204, 0);
    inset: 0px -135px 0px auto;
    content: "";
    height: 6px;
    margin: auto;
    position: absolute;
    width: 120px;
}

.mt-35 {
    margin-top: 35px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .h2 {
        font-size: 35px !important;
        line-height: 44px !important;
    }

    p {
        font-size: 15px !important;
        line-height: 22px !important;
    }

    .key-words {
        font-size: 17px !important;
        line-height: 25px !important;
    }

    .h3 {
        font-size: 30px !important;
    }

    ul li {
        font-size: 15px !important;
    }

    .h5 {
        font-size: 21px !important;
    }

    .h4 {
        font-size: 27px;
    }
}

@media (max-width: 991px) {
    .hstack {
        justify-content: center;
    }

    .key-words {
        font-size: 18px !important;
    }

    ul li {
        font-size: 14px !important;
    }

    p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .b-l-box::after, .b-r-box::before, .t-l-box::before, .t-r-box::after {
        content: none;
    }

    .b-l-box::after, .b-l-box::before {
        content: none !important;
    }

    .t-sr-box::after {
        content: none;
    }

    .sub-heading {
        display: block;
        margin-bottom: 20px;
    }

    .sub-heading::after {
        inset: 40px 0px 0px;
    }
}

@media (max-width: 575px) {
    section {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .hstack {
        flex-direction: column;
        gap: 1rem;
    }

    .hstack .btn-live, .hstack .btn-order {
        min-width: 265px;
    }

    .h2 {
        font-size: 30px !important;
        line-height: 38px !important;
    }

    .key-words {
        font-size: 15px !important;
    }

    .h3 {
        font-size: 30px !important;
        margin-bottom: 15px;
    }

    p {
        font-size: 15px !important;
        line-height: 20px !important;
    }
}

header {
    border-bottom: 1px solid rgba(128, 128, 128, 0.15);
    left: 0px;
    margin: auto;
    max-width: 1920px;
    position: fixed;
    right: 0px;
    width: 100%;
    z-index: 9999;
}

header .top-bar {
    background: rgb(0, 0, 0);
    padding: 5px 0px;
}

header .top-bar .social-icons {
    display: flex;
    gap: 14px;
}

header .top-bar .social-icons a {
    align-items: center;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50%;
    color: rgb(255, 255, 255);
    display: inline-flex;
    font-size: 14px;
    height: 30px;
    justify-content: center;
    width: 30px;
}

header .top-bar .social-icons a:hover {
    box-shadow: rgb(255, 255, 255) 1px -1px 4px;
}

header .top-bar .social-icons a:hover i {
    transform: rotate(1turn);
    transition: 1s;
}

header .top-bar .content {
    align-items: center;
    display: flex;
    gap: 8px;
}

header .top-bar .content .text {
    font-size: 14px;
    font-weight: 500;
}

header .top-bar .content-2 {
    align-items: center;
    display: flex;
    gap: 50px;
    justify-content: end;
}

header .top-bar .content-2 a:hover i, header .top-bar .content-2 a:hover img {
    transform: rotate(1turn);
    transition: 1s;
}

header .top-bar .content-2 img {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
    display: inline-flex;
    padding: 8px;
    width: 34px;
}

header .top-bar .content-2 .connect {
    align-items: center;
    color: rgb(255, 255, 255);
    display: flex;
    font-weight: 600;
    gap: 10px;
}

header .top-bar .content-2 .connect i {
    align-items: center;
    background: rgb(255, 255, 255);
    border: rgb(240, 248, 255);
    border-radius: 50%;
    color: rgb(0, 0, 0);
    display: inline-flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

header .navbar {
    background-color: rgb(255, 255, 255);
    padding: 0px;
}

header .navbar .nav-link {
    color: rgb(42, 42, 42);
    font-size: 20px;
    font-weight: 600;
    transition: 1s;
    margin: 0px !important;
    padding: 30px 0px !important;
}

header .navbar .nav-link.active {
    color: #000;
}

header .navbar .nav-link:active, header .navbar .nav-link:hover {
    color: #000;
    transform: scale(1.05);
}

header .navbar .navbar-nav {
    gap: 45px;
    padding: 0px;
}

header .navbar .navbar-text .btn-order {
    animation: 2s ease 0s infinite normal none running gradientBG, 2s ease-out 0s infinite normal none running zoom-in-zoom-out;
    background: linear-gradient(-40deg, rgb(255, 204, 0), rgb(0, 0, 0), rgb(255, 204, 0), rgb(0, 0, 0), rgb(255, 204, 0)) 0% 0% / 300% 300%;
    border-radius: 4px;
    color: rgb(255, 255, 255);
    padding: 12px 25px;
    position: relative;
    transition: 1s;
}

@keyframes gradientBG {
    0% {
        background-position: 0px 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0px 50%;
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0.9);
    }
}

header .navbar .navbar-text .btn-order:hover {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    transition: background-color 1s;
}

header .navbar .navbar-text .btn-order:hover::before {
    background: radial-gradient(circle at 20% 35%, transparent 0px, transparent 2px, #000 3px, #000 4px, transparent 0px), radial-gradient(circle at 75% 44%, transparent 0px, transparent 2px, #000 3px, #000 4px, transparent 0px), radial-gradient(circle at 46% 52%, transparent 0px, transparent 4px, #000 5px, #000 6px, transparent 0px), radial-gradient(circle at 15% 25%, transparent 0px, transparent 4px, #000 5px, #000 6px, transparent 0px), radial-gradient(circle at 65% 85%, transparent 0px, transparent 4px, #000 5px, #000 6px, transparent 0px);
}

header .navbar .dropdown-toggle::after {
    display: none;
}

header.fixed-top {
    border-bottom: 1px solid rgba(40, 56, 145, 0.39);
    box-shadow: rgba(40, 56, 145, 0.39) 0px 0px 1px 1px;
}

main {
    margin-top: 126px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    header .navbar .navbar-text .btn-order {
        font-size: 14px;
    }

    header .navbar .nav-link {
        font-size: 16px;
    }

    header .navbar .dropdown:hover .dropdown-menu {
        top: 85px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    header .navbar .nav-link {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    header .navbar-nav {
        max-height: 85px;
        max-width: 450px;
        min-height: 85px;
        min-width: 340px;
    }

    header .navbar-nav li {
        margin: 0px !important;
    }

    header .navbar .dropdown .dropdown-menu {
        display: none;
    }

    header .navbar .dropdown:hover i {
        transform: rotate(180deg);
    }

    header .navbar .dropdown:hover .dropdown-menu {
        border-bottom: 7px solid #000;
        border-left: 2px solid #000;
        border-radius: 0px 0px 8px 8px;
        border-right: 2px solid #000;
        display: grid;
        gap: 0px 8px;
        grid-template-columns: auto auto;
        left: -226px;
        padding: 12px 8px 8px;
        top: 84px;
    }

    header .navbar .dropdown:hover .dropdown-menu .dropdown-item {
        border-radius: 2px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
        padding: 10px 35px 10px 40px;
        position: relative;
        transition: background-color 0.5s;
    }

    header .navbar .dropdown:hover .dropdown-menu .dropdown-item::before {
        bottom: 0px;
        content: "\f1a7";
        font-family: "Font Awesome\6 Brands";
        font-size: 21px;
        font-weight: 500;
        height: 29px;
        left: 12px;
        margin: auto;
        opacity: 0;
        position: absolute;
        top: 0px;
        visibility: hidden;
    }

    header .navbar .dropdown:hover .dropdown-menu .dropdown-item.active, header .navbar .dropdown:hover .dropdown-menu .dropdown-item:active, header .navbar .dropdown:hover .dropdown-menu .dropdown-item:focus, header .navbar .dropdown:hover .dropdown-menu .dropdown-item:hover {
        background-color: #000;
        color: rgb(255, 255, 255);
    }

    header .navbar .dropdown:hover .dropdown-menu .dropdown-item.active::before, header .navbar .dropdown:hover .dropdown-menu .dropdown-item:active::before, header .navbar .dropdown:hover .dropdown-menu .dropdown-item:focus::before, header .navbar .dropdown:hover .dropdown-menu .dropdown-item:hover::before {
        opacity: 1;
        visibility: visible;
    }

    header .navbar .dropdown i {
        font-size: 17px;
        margin-left: 3px;
        transition: transform 1s;
    }
}

@media (max-width: 991px) {
    header .top-bar {
        display: none;
    }

    header .navbar {
        padding: 25px 10px;
    }

    header .navbar .nav-link {
        color: rgb(36, 45, 55);
        padding: 0px !important;
    }

    header .navbar .navbar-nav {
        gap: 25px;
    }

    header .navbar .navbar-nav .dropdown-menu {
        border: 1px solid rgb(52, 96, 165);
        height: 265px;
        overflow-y: scroll;
        padding: 4px;
        position: absolute;
        top: 38px;
        width: 280px;
    }

    header .navbar .navbar-nav .dropdown-menu .dropdown-item {
        padding: 9px 22px;
        font-size: 16px !important;
    }

    header .navbar .navbar-nav .dropdown-menu .dropdown-item.active, header .navbar .navbar-nav .dropdown-menu .dropdown-item:active, header .navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
        background: linear-gradient(109deg, rgb(32, 63, 106) 40%, rgb(52, 98, 167) 62%);
        color: rgb(255, 255, 255) !important;
    }

    header .navbar .navbar-text {
        display: none;
    }

    header .navbar-toggler {
        border: 0px;
    }

    header .navbar-toggler .navbar-toggler-icon {
        background: none;
        border: 2px solid #000;
        border-radius: 5px;
        height: 44px;
        padding: 7px;
        position: relative;
        transition: 2s;
        width: 60px;
    }

    header .navbar-toggler .navbar-toggler-icon::before {
        background: none;
        color: #000;
        content: "\f00d";
        font-family: "Font Awesome\6 Free";
        font-size: 24px;
        font-weight: 600;
    }

    header .navbar-toggler[aria-expanded="false"] span {
        background: none;
        border: 2px solid rgb(14, 33, 136);
        border-radius: 5px;
        padding: 7px;
    }

    header .navbar-toggler[aria-expanded="false"] span::before {
        background: none;
        color: #000;
        content: "\f0c9";
        font-family: "Font Awesome\6 Free";
        font-size: 24px;
        font-weight: 600;
    }

    header .navbar-toggler:focus {
        box-shadow: none !important;
    }

    header .navbar-collapse {
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(40, 56, 145, 0.68) 0px 6px 13px -5px;
        height: 90vh;
        left: -19px;
        padding: 44px 55px;
        position: absolute;
        top: 0px;
        transform: translate(-12%);
        width: 80%;
    }

    header .navbar-collapse.show {
        transform: translate(0px);
    }

    main {
        margin-top: 120px;
    }
}

@media (max-width: 575px) {
    header .navbar-brand img {
        -o-object-fit: scale-down;
    object-fit: scale-down;
    width: 180px;
    }
}

.footer {
    padding: 0px 0px 10px;
}

.footer .h5 {
    font-size: 24px;
    font-weight: 700;
    margin: 0px;
}

.footer .key-words {
    color: rgb(0, 0, 0);
    font-size: 15px;
    line-height: 23px;
    margin-top: 12px;
}

.footer .content {
    align-items: center;
    display: inline-flex;
    gap: 20px;
}

.footer .content i {
    color: rgb(0, 0, 0);
}

.footer .content .text {
    font-size: 16px;
    font-weight: 600;
}

.footer .content .no {
    font-size: 20px;
}

.footer .content .btn-order {
    padding: 12px 25px;
}

.footer .content .btn-order::before {
    content: none;
}

.footer .call-us {
    color: rgb(0, 0, 0);
    display: flex;
    font-size: 36px;
    gap: 10px;
}

.footer p {
    color: rgb(0, 0, 0);
    font-size: 16px;
    line-height: 22px;
    margin-top: 18px;
}

.footer .footer-img {
    object-fit: scale-down;
    width: 215px;
}

.footer .h4 {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 30px;
}

.footer ul {
    padding-bottom: 20px;
    padding-left: 0px;
}

.footer ul li {
    display: block;
    list-style-type: none;
}

.footer ul li a {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    line-height: 29px;
    transition: transform 1s;
}

.footer ul li a:hover {
    color: #000;
    transform: scale(1.1);
}

.footer .social-icons {
    display: inline-flex;
    margin: 0px 0px 30px;
}

.footer .social-icons a i {
    align-items: center;
    border: 1px solid;
    border-radius: 30px;
    color: rgb(0, 0, 0);
    display: flex;
    font-size: 20px;
    height: 45px;
    justify-content: center;
    margin-right: 10px;
    transition: transform 1s;
    width: 45px;
}

.footer .social-icons a i:hover {
    color: #000;
    transform: translateY(-10px);
}

.footer .payment-box {
    display: flex;
    gap: 8px;
}

.footer .h2 {
    font-size: 22px !important;
}

.footer .h6 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer .mail {
    color: rgb(0, 0, 0);
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 45px;
}

.footer .p-text {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 10px 5px;
}

.footer .app-text {
    color: rgb(0, 0, 0);
    font-weight: 600;
    padding: 0px 5px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer .content {
        gap: 15px;
    }

    .footer .content .no, .footer .content .text {
        font-size: 16px;
    }

    .footer .content .btn-order {
        padding: 12px 15px;
    }

    .footer .mail {
        font-size: 14px !important;
    }

    .footer .h4 {
        font-size: 23px;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .footer ul li a {
        font-size: 14px;
    }

    .footer .mail {
        font-size: 17px;
    }

    .footer .footer-t .h5 {
        font-size: 20px !important;
    }
}

@media (max-width: 991px) {
    .footer ul {
        margin: 0px !important;
        padding: 0px !important;
    }

    .footer .mail {
        font-size: 14px !important;
    }
}

section.writers {
    background: linear-gradient(1turn, rgba(231, 243, 255, 0.25) 14%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 0px);
}

section.writers .b-l-box::before {
    bottom: -240px;
    margin: auto;
}

section.writers .b-l-box::after {
    bottom: -200px;
    top: unset;
}

section.writers .t-sr-box::after {
    right: -20px;
    top: 120px;
}

section.writers .key-words {
    margin-bottom: 35px;
}

section.writers .box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(204, 204, 204);
    border-radius: 12px;
    cursor: pointer;
    padding: 28px;
    transition: transform 1s;
}

section.writers .box p {
    color: rgb(0, 0, 0);
    line-height: 22px;
    margin-bottom: 25px;
    min-height: 127px;
    font-size: 16px !important;
}

section.writers .box img {
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px;
}

section.writers .box .h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0px 0px;
    position: relative;
}

section.writers .box .h5::after {
    color: rgb(239, 176, 2);
    content: "\f005\f005\f005\f005\f005";
    display: block;
    font-family: "Font Awesome\6 Free";
    font-size: 16px;
    letter-spacing: 3px;
    margin: 5px 0px 25px;
}

section.writers .box .h6 {
    color: rgb(87, 83, 83);
    margin: 0px;
    font-size: 18px !important;
}

section.writers .box .h6::before {
    content: "- ";
}

section.writers .box:hover {
    border: 1px solid rgb(118, 95, 1);
    transform: scale(1.02);
}

section.writers .box:hover .h5, section.writers .box:hover .h6 {
    color: rgb(0, 0, 0);
}

@media (min-width: 1400px) and (max-width: 1699px) {
    section.writers .b-l-box::before {
        left: -205px;
    }

    section.writers .b-l-box::after {
        right: -205px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    section.writers .b-l-box::before {
        left: -190px;
    }

    section.writers .b-l-box::after {
        right: -190px;
    }

    section.writers .box {
        padding: 15px 20px !important;
    }

    section.writers .box p {
        line-height: 21px !important;
        min-height: 125px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    section.writers .box p {
        min-height: 95px !important;
    }
}

@media (max-width: 767px) {
    section.writers .box .img-box {
        justify-content: center;
    }

    section.writers .box p {
        min-height: unset !important;
    }
}

section.submit-process .b-l-box::before {
    bottom: 0px;
}

section.submit-process .b-l-box::after {
    bottom: 115px;
}

section.submit-process .b-r-box::before {
    bottom: -31px;
    right: 385px;
}

section.submit-process .title {
    color: rgb(118, 95, 1);
    font-size: 15px;
    font-weight: 600;
    margin: 40px 0px 5px;
    text-transform: uppercase;
}

section.submit-process .h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

section.submit-process p {
    color: rgb(39, 41, 43);
    line-height: 24px;
}

section.submit-process .key-words {
    margin-bottom: 60px;
}

section.submit-process .lines {
    position: relative;
}

section.submit-process .lines::before {
    background-image: url("../frontend/images/bg/bg-process.webp");
    background-position: 50% center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 125px;
    left: 0px;
    margin: auto;
    position: absolute;
    right: 0px;
    top: 47px;
    width: 100%;
    z-index: -1;
    filter: grayscale(1);
}

section.submit-process .box-1 {
    position: relative;
}

section.submit-process .box-1::after {
    background-color: #000;
    border-radius: 50%;
    bottom: 20px;
    content: "";
    height: 12px;
    left: auto;
    position: absolute;
    right: 98px;
    width: 12px;
}

section.submit-process .box-2 {
    position: relative;
}

section.submit-process .box-2::before {
    left: 82px;
    right: auto;
    top: -75px;
}

section.submit-process .box-2::after, section.submit-process .box-2::before {
    background-color: #000;
    border-radius: 50%;
    bottom: 0px;
    content: "";
    height: 12px;
    margin: auto;
    position: absolute;
    width: 12px;
}

section.submit-process .box-2::after {
    left: auto;
    right: 78px;
    top: 35px;
}

section.submit-process .box-3 {
    position: relative;
}

section.submit-process .box-3::before {
    background-color: #000;
    border-radius: 50%;
    bottom: 32px;
    content: "";
    height: 12px;
    left: 89px;
    margin: auto;
    position: absolute;
    width: 12px;
}

section.submit-process .box img {
    object-fit: scale-down;
    width: 215px;
    filter: grayscale(1);
}

@media (min-width: 992px) {
    section.submit-process .gx-7 {
        --bs-gutter-x: 7rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    section.submit-process .b-l-box::before {
        left: -190px;
    }

    section.submit-process .b-l-box::after {
        right: -190px;
    }

    section.submit-process .gx-7 {
        --bs-gutter-x: 5rem;
    }

    section.submit-process .box-1::after {
        right: 62px;
    }

    section.submit-process .box-2::before {
        left: 52px;
    }

    section.submit-process .box-2::after {
        right: 48px;
    }

    section.submit-process .box-3::before {
        bottom: 25px;
        left: 55px;
    }
}

@media (min-width: 1400px) and (max-width: 1699px) {
    section.submit-process .b-l-box::before {
        left: -138px;
    }

    section.submit-process .b-l-box::after {
        right: -138px;
    }
}

@media (max-width: 1199px) {
    section.submit-process .lines .box-1::after, section.submit-process .lines .box-1::before, section.submit-process .lines .box-2::after, section.submit-process .lines .box-2::before, section.submit-process .lines .box::after, section.submit-process .lines .box::before, section.submit-process .lines::before {
        content: none;
    }
}

section.home-banner {
    background: linear-gradient(rgb(255 245 231 / 46%) 21%, rgb(255, 255, 255) 37%, rgb(255, 255, 255) 45%, rgba(231, 243, 255, 0.16) 60%, rgb(255, 255, 255));
    padding: 100px 0px 0px;
    position: relative;
}

section.home-banner .banner.b-l-box::before {
    border: 1px solid rgb(219, 238, 255);
    top: 250px;
}

section.home-banner .banner.b-l-box::after {
    content: none;
}

section.home-banner .h1 {
    font-size: 50px;
    line-height: 50px;
}

section.home-banner .h1 .key-text {
    display: inline;
    font-size: 50px;
    font-weight: 500;
}

section.home-banner .whole-box {
    inset: auto 63px 15px 0px;
    display: grid;
    grid-template-columns: auto auto;
    margin: auto;
    position: absolute;
}

section.home-banner .whole-box.b-r-box::before {
    right: -77px;
}

section.home-banner .whole-box .main-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 82px;
}

section.home-banner .whole-box .main-steps.main-steps-2 {
    row-gap: 171px !important;
}

section.home-banner .whole-box .step {
    color: rgb(255, 204, 0);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

section.home-banner .whole-box .box {
    border-radius: 40px;
    padding: 6px 25px;
}

section.home-banner .whole-box .box-1 {
    background-color: rgb(0, 0, 0);
    grid-column: 3 / 8;
    margin-top: 34px;
}

section.home-banner .whole-box .box-2 {
    background-color: rgb(255, 204, 0);
    grid-column: 2 / 6;
    margin: 26px 0px 51px;
    & .step {
        color: rgb(0, 0, 0);
    }
}

section.home-banner .whole-box .box-3 {
    background-color: rgb(0, 0, 0);
    grid-column: 3 / 10;
}

section.home-banner .whole-box .box-4 {
    background-color: rgb(255, 204, 0);
    grid-column: 4 / 7;
    margin-top: 148px;
    & .step {
        color: rgb(0, 0, 0);
    }
}

section.home-banner .whole-box .box-5 {
    background-color: rgb(0, 0, 0);
    grid-column: 4 / 14;
}

section.home-banner .box-features {
    padding: 70px 0px;
}

section.home-banner .box-features .inner {
    color: rgb(0, 0, 0);
    display: inline;
    font-weight: 700;
}

section.home-banner .our-features {
    padding: 20px 0px 60px;
}

section.home-banner .our-features.b-l-box::before {
    top: 37px !important;
}

section.home-banner .our-features .box .h6 {
    margin-left: 10px;
}

section.home-banner .our-features .card-2 {
    align-items: center;
    border-radius: 60px;
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-bottom: 10px;
}

section.home-banner .our-features .card-2 .content {
    font-size: 20px;
}

section.home-banner .our-features .main-box {
    margin: 32px 0px 40px;
}

section.home-banner .our-features .box-card {
    background-color: rgba(255, 204, 0, 0.08);
    border: 1px solid rgb(215, 230, 248);
    border-radius: 24px;
    padding: 30px;
    transition: transform 1s;
}

section.home-banner .our-features .box-card .h3 {
    color: rgb(0, 0, 0);
    font-weight: 600;
}

section.home-banner .our-features .box-card p {
    font-size: 17px;
    line-height: 24px;
}

section.home-banner .our-features .box-card .card-1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

section.home-banner .our-features .box-card .card-1 .card-2 {
    align-items: center;
    background-color: rgb(255, 255, 255);
    border-radius: 60px;
    display: flex;
    height: fit-content;
    padding: 4px 13px 4px 4px;
}

section.home-banner .our-features .box-card .card-1 .card-2 .content {
    display: inline;
    font-size: 16px;
}

section.home-banner .our-features .box-card .h6 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

section.home-banner .our-features .box-card ul li::before {
    color: #765f01;
    content: "\f00c";
    display: inline-block;
    font-family: "Font Awesome\6 Free";
    font-size: 16px;
    font-weight: 600;
    margin-right: 14px;
}

section.home-banner .our-features .box-card img {
    transition: 1s;
}

section.home-banner .our-features .box-card:hover {
    background-color: rgb(255, 255, 255);
    border: 1px solid #765f01;
    transform: translateY(-15px);
}

section.home-banner .our-features .box-card:hover .card-1 img {
    transform: rotate(1turn);
    transition: 1s;
}

section.home-banner .our-features .box-card:hover .card-2 img {
    transform: unset !important;
}

section.home-banner .major-services {
    padding: 0px 0px 70px;
}

section.home-banner .major-services.b-l-box::before {
    bottom: 160px;
}

section.home-banner .major-services.b-l-box::after {
    bottom: -366px;
}

section.home-banner .major-services .t-sr-box::after {
    top: 80px;
}

section.home-banner .major-services .key-words {
    margin-bottom: 45px;
}

section.home-banner .major-services .h5 {
    font-size: 26px;
    font-weight: 700;
    margin: 14px 0px 10px !important;
}

section.home-banner .major-services .box {
    border: 1px solid rgba(32, 48, 139, 0);
    border-radius: 4px;
    cursor: pointer;
    padding: 25px 19px;
    transition: 1s;
}

section.home-banner .major-services .box:hover {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(227, 182, 0, 0.93);
    box-shadow: rgba(187, 152, 11, 0.45) 0px 5px 0px 0px;
    transition: 1s;
}

section.home-banner .major-services .box:hover .h5 {
    color: rgb(0, 0, 0);
}

section.home-banner .major-services .box:hover p {
    color: rgba(0, 0, 0, 0.74);
}

section.home-banner .major-services .box:hover img {
    transform: scale(1.1);
}

section.home-banner .major-services .box p {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 10px;
}

section.extra-services {
    background-color: rgb(118, 95, 1);
    border-radius: 60px;
}

section.extra-services .b-l-box::before {
    bottom: -124px;
}

section.extra-services .b-l-box::after, section.extra-services .b-l-box::before {
    background: linear-gradient(rgba(232, 243, 254, 0.06) 53%, rgba(232, 243, 254, 0.06) 78%);
    border: 0px solid rgb(219, 238, 255);
}

section.extra-services .b-l-box::after {
    bottom: -366px;
}

section.extra-services .t-sr-box::after {
    border: 0px solid rgb(219, 238, 255);
}

section.extra-services .b-r-box::before, section.extra-services .t-sr-box::after {
    background: linear-gradient(rgba(232, 243, 254, 0.06) 53%, rgba(232, 243, 254, 0.06) 78%);
}

section.extra-services .b-r-box::before {
    border: 0px solid;
    bottom: -30px;
    right: 443px;
}

section.extra-services .h2 {
    -webkit-text-fill-color: unset !important;
    background: unset !important;
    color: rgb(255, 255, 255) !important;
}

section.extra-services p {
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

section.extra-services .btn-order {
    border: 0px;
    padding: 0px;
    background-color: rgb(118, 95, 1);
    color: rgb(255, 255, 255) !important;
}

section.extra-services .btn-order:hover {
    background-color: unset !important;
}

section.extra-services .btn-order:hover::after {
    transform: rotate(180deg);
}

section.extra-services .btn-order::after {
    color: rgb(255, 255, 255);
    content: "\f054";
    display: inline-block;
    font-family: "Font Awesome\6 Free";
    font-weight: 900;
    margin-left: 10px;
    transition: transform 1s;
}

section.extra-services .btn-order::before {
    content: none;
}

section.extra-services .box {
    display: grid;
    gap: 32px;
    grid-template-columns: 95px auto;
}

section.extra-services .box .inner {
    align-items: center;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 5px 0px 2px;
    display: flex;
    height: 90px;
    justify-content: center;
    width: 95px;
}

section.extra-services .box .h4 {
    color: rgb(255, 255, 255);
    font-size: 21px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 10px;
}

section.solution {
    background: rgb(255, 250, 242);
    border-radius: 60px;
}

section.solution .h2 {
    margin-bottom: 30px;
}

section.solution .b-l-box::before {
    bottom: -124px;
}

section.solution .b-l-box::after {
    bottom: 22px;
}

section.solution .box-card {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(118, 95, 1, 0.28);
    border-radius: 24px;
    padding: 45px 40px 45px 35px;
    transition: transform 1s;
}

section.solution .box-card .h4 {
    color: rgb(0, 0, 0);
    font-weight: 600;
}

section.solution .box-card p {
    font-size: 17px;
    line-height: 24px;
}

section.solution .box-card .h6 {
    color: rgb(45, 45, 45);
    font-weight: 700;
    margin-bottom: 20px;
}

section.solution .box-card ul li::before {
    color: rgb(118, 95, 1);
    content: "\f00c";
    display: inline-block;
    font-family: "Font Awesome\6 Free";
    font-size: 16px;
    font-weight: 600;
    margin-right: 14px;
}

section.solution .box-card:hover {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(118, 95, 1);
    transform: translateY(-15px);
}

section.journals .b-l-box::before {
    bottom: 0px;
}

section.journals .b-l-box::after {
    bottom: -240px;
}

section.journals .box-card {
    background-color: rgba(255, 204, 0, 0.06);
    border: 1px solid rgb(215, 230, 248);
    border-radius: 12px;
    padding: 40px 0px 0px;
}

section.journals .box-card .box {
    display: flex;
    gap: 17px;
    padding: 0px 30px 25px;
}

section.journals .box-card .box .img-box {
    height: 174px;
    width: 174px;
}

section.journals .box-card .box .content {
    text-align: left;
}

section.journals .box-card .box .content .h3 {
    color: rgb(0, 0, 0);
    font-size: 40px;
    font-weight: 700;
    margin: 0px;
}

section.journals .box-card .box .content .genre {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 4px 0px 7px;
    text-transform: uppercase;
}

section.journals .box-card .box .content .mail {
    color: rgb(0, 0, 0);
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

section.journals .box-card .body {
    padding: 25px 20px;
    text-align: center;
}

section.journals .box-card .body .h4 {
    font-size: 30px;
    font-weight: 700;
}

section.journals .box-card .body .h5 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}

section.journals .box-card .body p {
    color: rgb(39, 41, 43);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

section.journals .box-card .body .gurantee {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 15px;
}

section.journals .box-card .body .gurantee .inner {
    height: 140px;
    width: 172px;
}

section.journals .box-card .body .content {
    background: rgb(255, 204, 0);
    border-radius: 42px;
    color: rgb(0, 0, 0);
    display: flex;
    gap: 8px;
    line-height: 22px;
    padding: 7px 25px 9px 7px;
    text-align: left;
}

section.journals .box-card .body .content .text-1 {
    font-size: 15px;
    font-weight: 700;
}

section.journals .box-card .body .content .text-2 {
    font-size: 22px;
    font-weight: 900;
}

section.journals .box-card .body .content .h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 18px !important;
}

section.journals .box-card .body .content p {
    margin-bottom: 10px;
    font-size: 12px !important;
    line-height: 16px !important;
}

section.journals .box-card .body .content .btn-order {
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    padding: 0px;
}

section.journals .box-card .body .content .btn-order::after {
    content: none;
}

section.journals .box-card .table-striped {
    border: 1px solid grey;
    border-radius: 7px !important;
    margin-top: 15px !important;
}

section.journals .box-card .table-striped .table > :not(caption) > * > * {
    border: 1px solid rgba(128, 128, 128, 0.36);
}

section.journals .box-card .table-striped .thead {
    border-radius: 2px;
}

section.journals .box-card .table-striped td, section.journals .box-card .table-striped th {
    border: 1px solid grey;
    font-size: 15px;
    padding: 14px 17px;
}

section.journals .box-card .table tr {
    border-width: 1px !important;
    padding: 13px 8px !important;
}

section.collections {
    background-color: rgb(118, 95, 1);
    border-radius: 60px;
    padding: 70px 0px 75px;
}

section.collections .b-l-box::after, section.collections .b-l-box::before {
    background: linear-gradient(rgba(232, 243, 254, 0.06) 53%, rgba(232, 243, 254, 0.06) 78%);
    border: 0px solid rgb(219, 238, 255);
}

section.collections .b-l-box::after {
    bottom: -120px;
}

section.collections .t-sr-box::after {
    background: linear-gradient(rgba(232, 243, 254, 0.06) 53%, rgba(232, 243, 254, 0.06) 78%);
    border: 0px solid rgb(219, 238, 255);
    top: -121px;
}

section.collections .h2 {
    font-size: 47px;
    margin-bottom: 65px;
    -webkit-text-fill-color: unset !important;
    background: unset !important;
    color: rgb(255, 255, 255) !important;
}

section.collections .books {
    position: relative;
    z-index: 1;
}

section.collections .books::before {
    left: -45px;
}

section.collections .books::after, section.collections .books::before {
    background: linear-gradient(rgba(219, 238, 255, 0.1) 53%, rgba(232, 243, 254, 0.1) 78%);
    border-radius: 50%;
    bottom: -15px;
    content: "";
    height: 135px;
    position: absolute;
    right: 0px;
    width: 135px;
    z-index: -2;
}

section.collections .books::after {
    left: 80px;
    margin: auto;
}

section.collections .books .splide__track .splide__list .splide__slide .box .h6 {
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: uppercase;
}

section.collections .books .splide__track .splide__list .splide__slide .box .text {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 19px;
}

section.collections .books .books-arrow .splide__arrow {
    background: transparent;
    border: 1px solid rgb(255, 255, 255);
    opacity: 1;
}

section.collections .books .books-arrow .splide__arrow i {
    color: rgb(255, 255, 255);
}

section.collections .books .books-arrow .splide__arrow--prev {
    left: -100px;
}

section.collections .books .books-arrow .splide__arrow--next {
    right: -100px;
}

section.collections p {
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

section.collections .btn-order {
    border: 0px;
    padding: 0px;
    background-color: rgb(118, 95, 1);
    color: rgb(255, 255, 255) !important;
}

section.collections .btn-order:hover {
    background-color: unset !important;
}

section.collections .btn-order:hover::after {
    transform: rotate(180deg);
}

section.collections .btn-order::after {
    color: rgb(255, 255, 255);
    content: "\f054";
    display: inline-block;
    font-family: "Font Awesome\6 Free";
    font-weight: 900;
    margin-left: 10px;
    transition: transform 1s;
}

section.collections .btn-order::before {
    content: none;
}

section.publishers {
    background: linear-gradient(rgba(231, 243, 255, 0.25) 14%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 0px);
}

section.publishers .e-text {
    border: 1px solid rgba(204, 204, 204, 0.53);
    border-radius: 12px;
    padding: 10px;
    font-family: Gilroy, "sans-serif";
    font-size: 16px;
    margin: 10px;
    text-align: center;
    box-shadow: rgba(128, 128, 128, 0.3) 0px 0px 10px;
}

section.publishers .align-img {
    position: relative;
}

section.publishers .align-img::after {
    background-image: url("../frontend/images/bg/arrow.svg");
    background-position: 50% center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0px;
    content: "";
    height: 100px;
    margin: auto;
    position: absolute;
    right: -31px;
    top: 0px;
    width: 111px;
}

section.publishers .h3 {
    color: rgb(0, 0, 0);
    font-size: 35px;
    font-weight: 700;
    -webkit-text-fill-color: unset !important;
    background: unset !important;
}

section.publishers .key-words {
    color: rgb(0, 0, 0);
    font-size: 18px;
    margin-bottom: 35px;
    text-align: center;
}

section.publishers .box-1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

section.publishers .box-2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

section.submissions {
    background: rgb(242, 248, 255);
    border-radius: 60px;
}

section.submissions .b-l-box::before {
    bottom: 60px;
}

section.submissions .b-l-box::after {
    bottom: -300px;
}

section.submissions .h2 {
    margin-bottom: 45px;
}

section.submissions .main {
    display: grid;
    gap: 28px;
    grid-template-columns: auto auto;
}

section.submissions .main p {
    color: rgb(0, 0, 0);
    font-weight: 600;
    line-height: 27px;
    margin: 5px 0px 0px;
    font-size: 20px !important;
}

section.submissions .main .box-1 {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(215, 230, 248);
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 0px 16px -5px;
    display: flex;
    flex-direction: column;
    height: 195px;
    justify-content: center;
    padding: 12px 20px 12px 30px;
    width: 274px;
}

section.submissions .main .box-1.border-b {
    border-bottom: 5px solid rgb(255, 204, 0) !important;
}

section.submissions .main .box-1.border-n {
    border-bottom: 5px solid rgb(255, 204, 0) !important;
}

section.submissions .main .box-1 .h1 {
    color: rgb(0, 0, 0);
    font-size: 45px;
    line-height: 49px;
    margin: 0px;
    text-align: left;
}

section.submissions .box-2 {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(215, 230, 248);
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 0px 16px -5px;
    padding: 35px 30px;
}

section.submissions .box-2 .h5 {
    font-size: 24px;
    font-weight: 700;
}

section.submissions .box-2 p {
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 20px;
}

section.faqs {
    padding: 60px 0px 35px;
}

section.faqs .box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(215, 230, 248);
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 0px 16px -5px;
    padding: 45px 30px;
}

section.faqs .box.box-right {
    padding: 50px 35px;
}

section.faqs .box .h5 {
    font-size: 25px;
    font-weight: 700;
}

section.faqs .box .accordion .accordion-button {
    padding: 18px 0px;
}

section.faqs .box .accordion .accordion-button::after {
    background-image: none;
    content: "\f0da";
    font-family: "Font Awesome\6 Free";
    font-size: 20px;
    font-weight: 900;
    color: rgb(118, 95, 1) !important;
}

section.faqs .box .accordion .accordion-button:focus {
    box-shadow: none;
}

section.faqs .box .accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    border-bottom: 1px solid rgb(11, 80, 193);
    color: rgb(11, 80, 193);
}

section.faqs .box .accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

section.faqs .box .accordion .accordion-body {
    padding: 18px 0px 0px;
}

section.faqs .box .accordion .accordion-body p {
    color: rgb(0, 0, 0);
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 18px;
}

section.faqs .box .h4 {
    font-size: 25px;
    font-weight: 700;
    line-height: 28px;
    margin: 25px 0px 12px;
}

section.faqs .box .text {
    color: rgb(0, 0, 0);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 25px;
}

section.faqs .box .btn-content {
    color: rgb(118, 95, 1);
    font-size: 18px;
    font-weight: 700;
}

section.faqs .box .btn-content::after {
    color: rgb(0, 0, 0);
    font-size: 14px;
}

section.faqs .box .btn-content:hover::after {
    transform: rotate(180deg);
}

section.banner {
    padding-top: 0px;
}

section.banner .h3 {
    color: rgb(255, 255, 255);
    font-size: 42px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 20px;
    -webkit-text-fill-color: unset !important;
    background: unset !important;
}

section.banner p {
    color: rgb(255, 255, 255);
    margin-bottom: 25px;
}

section.banner .btn-order {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    transition: 1s;
}

section.banner .btn-order:hover {
    background-color: transparent;
    box-shadow: rgba(255, 255, 255, 0.62) 4px 4px 3px 0px;
    color: rgb(255, 255, 255);
}

section.banner .main-box {
    background: url("../frontend/images/bg/level-of-success.webp") 100% center / contain no-repeat, rgb(118, 95, 1);
    border-radius: 24px;
    padding: 45px 40px;
}

@media (min-width: 992px) {
    section.extra-services .h2 {
        margin-bottom: 60px;
    }

    section.submit-process .gx-7 {
        --bs-gutter-x: 7rem;
    }
}

@media (min-width: 1400px) and (max-width: 1699px) {
    .major-services.b-l-box::before, .our-features.b-l-box::before {
        left: -180px;
    }

    section.collections .b-l-box::before, section.extra-services .b-l-box::before, section.journals .b-l-box::before, section.solution .b-l-box::before, section.submissions .b-l-box::before, section.writers .b-l-box::before {
        left: -200px;
    }

    section.collections .b-l-box::after, section.extra-services .b-l-box::after, section.journals .b-l-box::after, section.solution .b-l-box::after, section.submissions .b-l-box::after, section.writers .b-l-box::after {
        right: -200px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .major-services.b-l-box::before, .our-features.b-l-box::before {
        left: -200px;
    }

    .major-services.b-l-box::after, .our-features.b-l-box::after {
        right: -200px;
    }

    section.collections .b-l-box::before, section.extra-services .b-l-box::before, section.journals .b-l-box::before, section.solution .b-l-box::before, section.submissions .b-l-box::before, section.writers .b-l-box::before {
        left: -200px;
    }

    section.collections .b-l-box::after, section.extra-services .b-l-box::after, section.journals .b-l-box::after, section.solution .b-l-box::after, section.submissions .b-l-box::after, section.writers .b-l-box::after {
        right: -200px;
    }

    section.home-banner .h1 .key-text {
        font-size: 41px;
    }

    section.home-banner .btn-live, section.home-banner .btn-order {
        font-size: 12px;
        padding: 12px 30px;
    }

    section.home-banner .whole-box .box-4 {
        grid-column: 3 / 7;
    }

    section.home-banner .whole-box .box-5 {
        grid-column: 3 / 14;
    }

    section.home-banner .whole-box .main-steps {
        row-gap: 106px;
    }

    section.home-banner .whole-box .main-steps.main-steps-2 {
        row-gap: 206px !important;
    }

    section.home-banner .box-features .h5 {
        font-size: 19px;
        line-height: 26px;
    }

    section.submissions .main {
        gap: 17px;
    }

    section.submissions .main .box-1 {
        height: 166px;
        width: 232px;
    }

    section.submissions .main .box-1 p {
        font-size: 12px !important;
    }

    section.extra-services .box .h4 {
        font-size: 22px !important;
        line-height: 26px !important;
    }

    section.solution .box-card {
        min-height: 492px !important;
    }

    section.journals .box-card .box .content .genre {
        font-size: 16px !important;
    }
}

@media (max-width: 1199px) {
    section.submissions .main .box-1 {
        width: unset;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    section.home-banner .h1 {
        font-size: 42px;
        line-height: 49px;
    }

    section.home-banner .h1 .key-text {
        font-size: 34px;
    }

    section.home-banner .extra {
        font-size: 15px;
        line-height: 23px;
    }

    section.home-banner .btn-live, section.home-banner .btn-order {
        font-size: 12px;
        padding: 12px 18px;
    }

    section.home-banner .whole-box .step {
        font-size: 12px;
    }

    section.home-banner .whole-box .box {
        padding: 12px 6px;
    }

    section.home-banner .hstack {
        gap: 1rem;
    }

    section.home-banner .our-features .box .h6 {
        font-size: 20px !important;
    }

    section.banner .main-box {
        background-size: 50% 100%;
    }

    section.banner .h3 {
        font-size: 38px;
        line-height: 40px;
    }

    section.banner p {
        font-size: 17px;
        line-height: 22px;
    }
}

@media (max-width: 991px) {
    section.home-banner {
        padding: 70px 0px 0px;
    }

    section.home-banner .banner.b-l-box::before {
        content: none;
    }

    section.home-banner .main-box .banner-img {
        display: none !important;
    }

    section.home-banner .whole-box {
        gap: 15px;
        grid-template-columns: auto auto auto;
        justify-content: center !important;
        margin-top: 20px !important;
        position: relative !important;
    }

    section.home-banner .whole-box .main-steps {
        display: contents;
    }

    section.home-banner .whole-box .box-1, section.home-banner .whole-box .box-2, section.home-banner .whole-box .box-3, section.home-banner .whole-box .box-4, section.home-banner .whole-box .box-5 {
        grid-column: unset !important;
        margin: 0px !important;
    }

    section.home-banner .t-r-box::after {
        display: none;
    }

    section.home-banner .our-features .box-card .card-1 .card-2 .content {
        font-size: 12px;
    }

    section.home-banner .our-features .box-card .h3 {
        margin-bottom: 5px !important;
    }

    section.home-banner .box-features {
        padding: 25px 0px 20px !important;
    }

    section.journals .box-card .box {
        justify-content: center;
    }

    section.journals .box-card .body .gurantee .inner {
        height: 135px;
        width: 153px;
    }

    section.collections .books::after, section.collections .books::before {
        content: none !important;
    }

    section.collections .books .books-arrow .splide__arrow--next {
        right: 0px;
    }

    section.collections .books .books-arrow .splide__arrow--prev {
        left: 0px;
    }

    section.banner .main-box {
        background-image: none;
    }

    section.extra-services .h2 {
        margin-bottom: 25px !important;
    }
}

@media (max-width: 767px) {
    section.major-services .box {
        border: 1px solid rgba(32, 48, 139, 0.41);
    }

    section.publishers .box-1 {
        display: none;
    }

    section.publishers .box-2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    section.home-banner .banner .sub-heading {
        display: block;
        font-size: 17px !important;
        line-height: 20px !important;
        margin-bottom: 0px !important;
    }

    section.home-banner .banner .sub-heading::after {
        inset: 0px;
        display: block;
        margin: 10px auto;
        position: relative;
    }

    section.home-banner .banner .h1 {
        font-size: 30px !important;
        line-height: 30px !important;
    }

    section.home-banner .banner .h1 .key-text {
        font-size: 30px !important;
        line-height: 21px !important;
    }

    section.home-banner .our-features .card-2 .content {
        font-size: 15px;
    }

    section.home-banner .whole-box {
        grid-template-columns: auto auto;
    }

    section.extra-services .box {
        grid-template-columns: auto;
    }

    section.extra-services .inner {
        margin: auto;
    }

    section.journals .box-card .box {
        display: block;
    }

    section.journals .box-card .box .img-box {
        display: block;
        margin: 0px auto 20px !important;
    }

    section.journals .box-card .box .content {
        text-align: center;
    }

    section.submissions .main {
        grid-template-columns: auto;
    }

    section.submissions .main .box-1 .h1 {
        text-align: center;
    }

    section.publishers .box-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    section.home-banner .whole-box {
        grid-template-columns: auto;
    }
}

