.btn {
    position: relative;
    border-radius: 5px;
    border: 1px solid transparent;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    color: hsl(0 0% 100%) !important;
    z-index: 1;
    line-height: 1;
    padding: 13px 24px;
}
.btn:hover, .btn:focus, .btn:focus-visible {
    box-shadow: none !important;
}
@media screen and (max-width: 1399px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}
.btn:active {
    transform: scale(1.01);
}
.btn-main {
    background-color: #2b2f4d !important;
    border-color: #2b2f4d !important;
}
.btn-main:hover {
    background-color: hsl(196, 69%, calc(36% - 36% * 0.2)) !important;
    border-color: hsl(196, 69%, calc(36% - 36% * 0.2)) !important;
}
.btn-outline-white {
    background-color: #121535 !important;
    border-color: #121535 !important;
    color: #fff !important;
}
.btn-outline-white:hover {
    background-color: #fc761a !important;
    border-color: #fc761a !important;
    color: #fff !important;
}
.common-input {
    border-radius: 5px;
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 17px 24px;
    background-color: transparent !important;
    border: 1px solid #E6E6E6;
    color: hsl(235 49% 14%);
    line-height: 1;
}
@media screen and (max-width: 991px) {
    .common-input {
        padding: 12px 24px;
    }
}
@media screen and (max-width: 767px) {
    .common-input {
        padding: 10px 16px;
    }
}
.common-input::placeholder {
    color: #808080;
    transition: 0.2s linear;
    font-size: 0.875rem;
    font-weight: 400;
}
.common-input:focus {
    border-color: #2b2f4d;
    box-shadow: none;
}
.common-input:focus::placeholder {
    visibility: hidden;
    opacity: 0;
}
.common-input:disabled, .common-input[readonly] {
    background-color: hsl(235 49% 14%/0.2);
    opacity: 1;
    border: 0;
}
textarea.common-input {
    height: 140px;
}
@media screen and (max-width: 767px) {
    textarea.common-input {
        height: 110px;
    }
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active,
textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, textarea:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill, textarea:-webkit-autofill, textarea:-webkit-autofill, textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-text-fill-color: hsl(235 49% 14%) !important;
    caret-color: hsl(235 49% 14%);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type=number] {
    -moz-appearance: textfield;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    color: #000;
    word-break: break-word;
    background-color: hsl(0 0% 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}
html, body {
    overflow-x: hidden;
}
p {
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}
span {
    display: inline-block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 16px 0;
    font-family: "Quicksand", sans-serif;
    color: hsl(235 49% 14%);
    line-height: 1.2;
    font-weight: 700;
}
h1, .h1 {
    font-size: clamp(2.25rem, -0.0733rem + 6.3692vw, 4.5rem);
}
h2, .h2 {
    font-size: clamp(2rem, 0.7133rem + 2.8846vw, 3.5rem);
}
h3, .h3 {
    font-size: clamp(1.75rem, 0.3353rem + 2.1661vw, 3rem);
}
h4, .h4 {
    font-size: clamp(1.5rem, 0.5569rem + 1.444vw, 2.5rem);
}
h5, .h5 {
    font-size: clamp(1.25rem, 1.2rem + 0.722vw, 2.25rem);
}
h6, .h6 {
    font-size: clamp(1.125rem, 0.769rem + 0.6813vw, 1.5rem);
}
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    transition: 0.2s linear;
    line-height: inherit;
}
h1 > a:hover,
h2 > a:hover,
h3 > a:hover,
h4 > a:hover,
h5 > a:hover,
h6 > a:hover {
    color: #2b2f4d;
}
a {
    display: inline-block;
    transition: 0.2s linear;
    text-decoration: none;
    color: #0661e9;
}
a:hover {
    color: #1d72f2;
}
img {
    max-width: 100%;
    height: auto;
}
select {
    cursor: pointer;
}
ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}
button {
    border: 0;
    background-color: transparent;
}
button:focus {
    outline: none;
    box-shadow: none;
}
input:focus-visible {
    outline: 0;
}
.my-12 {
    margin-block: 0.75rem !important;
}
.mt-20 {
    margin-block-start: 1.25rem !important;
}
.mt-24 {
    margin-block-start: 1.5rem !important;
}
.mb-4 {
    margin-block-end: 0.25rem !important;
}
.mb-8 {
    margin-block-end: 0.5rem !important;
}
.mb-12 {
    margin-block-end: 0.75rem !important;
}
.mb-16 {
    margin-block-end: 1rem !important;
}
.mb-20 {
    margin-block-end: 1.25rem !important;
}
.mb-24 {
    margin-block-end: 1.5rem !important;
}
.mb-32 {
    margin-block-end: 2rem !important;
}
.mb-40 {
    margin-block-end: 2.5rem !important;
}
.mb-48 {
    margin-block-end: 3rem !important;
}
.mb-0 {
    margin-block-end: 0 !important;
}
.p-24 {
    padding: 1.5rem !important;
}
.px-8 {
    padding-inline: 0.5rem !important;
}
.px-16 {
    padding-inline: 1rem !important;
}
.px-24 {
    padding-inline: 1.5rem !important;
}
.px-32 {
    padding-inline: 2rem !important;
}
.py-4 {
    padding-block: 0.25rem !important;
}
.py-10 {
    padding-block: 0.625rem !important;
}
.py-11 {
    padding-block: 0.6875rem !important;
}
.py-18 {
    padding-block: 1.125rem !important;
}
.py-40 {
    padding-block: 2.5rem !important;
}
.py-80 {
    padding-block: 5rem !important;
}
.pt-2 {
    padding-block-start: 0.125rem !important;
}
.pt-20 {
    padding-block-start: 1.25rem !important;
}
.pt-32 {
    padding-block-start: 2rem !important;
}
.pb-2 {
    padding-block-end: 0.125rem !important;
}
.pb-5 {
    padding-block-end: 0.3125rem !important;
}
.pb-32 {
    padding-block-end: 2rem !important;
}
.py-80 {
    padding-block-start: 60px !important;
    padding-block-end: 60px !important;
}
@media (min-width: 992px) {
    .py-80 {
        padding-block-start: 80px !important;
        padding-block-end: 80px !important;
    }
}
.container-lg {
    max-width: 1680px;
}
@media screen and (min-width: 425px) and (max-width: 575px) {
    .col-xs-6 {
        width: 50%;
    }
}
.transition-2 {
    transition: 0.2s linear;
}
.line-height-1 {
    line-height: 1;
}

.hover-text-decoration-underline:hover {
    text-decoration: underline;
}
.font-heading-two {
    font-family: "Exo", sans-serif;
}
.group:hover .group-item-white {
    color: hsl(0 0% 100%) !important;
}
.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flex-align, .common-check {
    display: flex;
    align-items: center;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.w-40 {
    width: 2.5rem !important;
}
.w-120 {
    width: 7.5rem !important;
}
.h-40 {
    height: 2.5rem !important;
}
.h-110 {
    height: 6.875rem !important;
}
.max-h-120 {
    max-height: 120px !important;
}
.max-w-120 {
    max-width: 120px;
}
.text-main-600 {
    color: #171a3e !important;
}
.text-main-two-600 {
    color: #ff6907 !important;
}
.text-neutral-200 {
    color: #fff !important;
}
.text-gray-500 {
    color: #808080 !important;
}
.text-light-600 {
    color: #E4F1FF !important;
}
.text-heading {
    color: hsl(235 49% 14%) !important;
}
.text-heading-two{
    color: #2D2727 !important;
}
.hover-text-main-600:hover {
    color: #171a3e !important;
}
.hover-text-light-600:hover {
    color: #E4F1FF !important;
}
.hover-text-white:hover {
    color: #fff !important;
}
.hover-text-main:hover {
    color: #2b2f4d !important;
}
.border-main-600 {
    border-color: #171a3e !important;
}
.border-neutral-40 {
    border-color: #E5E7EB !important;
}
.border-gray-100 {
    border-color: #E6E6E6 !important;
}
.hover-border-main-600:hover {
    border-color: #171a3e !important;
}
.bg-main-50 {
    background-color: #fe6100 !important;
}
.bg-main-600 {
    background-color: #171a3e !important;
}
.bg-main-two-50 {
    background-color: hsl(224, 71%, calc(49% + (100% - 49%) * 0.9)) !important;
}
.bg-neutral-100 {
    background-color: #E6E6E6 !important;
}
.bg-light-100 {
    background-color: #F3F4F6 !important;
}
.bg-danger-600 {
    background-color: #DC2626 !important;
}
.bg-info-600 {
    background-color: #121535 !important;
}
.hover-bg-main-600:hover {
    background-color: #171a3e !important;
}
.hover-bg-neutral-100:hover {
    background-color: #E6E6E6 !important;
}
.bg-black-light {
    background-color: #171a3e;
}

.contact-box div a{
    color: #000;
}
.gradient-shadow {
    position: relative;
}
/*.gradient-shadow::before, .gradient-shadow::after {
    position: absolute;
    content: "";
    width: 200px;
    height: 100%;
    inset-inline-start: 0;
    inset-block-start: 0;
    background: linear-gradient(90deg, #ffffff, transparent);
    z-index: 1;
}
.gradient-shadow::after {
    inset-inline-start: auto;
    inset-inline-end: 0;
    background: linear-gradient(-90deg, #fff, transparent);
}*/
.text-inherit {
    font-size: inherit;
}
.text-xs {
    font-size: 0.75rem !important;
}
.text-sm {
    font-size: 0.875rem !important;
}
.text-md {
    font-size: 1rem !important;
}
.text-lg {
    font-size: 1.125rem !important;
}
.text-xl {
    font-size: 1.25rem !important;
}
.text-2xl {
    font-size: 1.5rem !important;
}
.text-4xl {
    font-size: 2.25rem !important;
}
.text-32 {
    font-size: 2rem !important;
}
.rounded-4 {
    border-radius: 0.25rem !important;
}
.rounded-8 {
    border-radius: 0.5rem !important;
}
.rounded-16 {
    border-radius: 1rem !important;
}
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    inset-inline-start: 0;
    inset-block-start: 0;
    background-color: hsl(235 49% 14%/0.6);
    z-index: 99;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}
.overlay.show-overlay {
    visibility: visible;
    opacity: 1;
}
.side-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    inset-inline-start: 0;
    inset-block-start: 0;
    background-color: hsl(235 49% 14%/0.6);
    z-index: 8;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}
@media screen and (max-width: 991px) {
    .side-overlay.show {
        visibility: visible;
        opacity: 1;
    }
}
.text-line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.text-line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.scroll-sm::-webkit-scrollbar {
    width: 4px !important;
    height: 4px !important;
}
.scroll-sm::-webkit-scrollbar-thumb {
    background-color: #b1b3b8;
}
.scroll-sm::-webkit-scrollbar-thumb:hover {
    background-color: #7e7d7d;
}
.scroll-sm::-webkit-scrollbar-track {
    background-color: #d6d9de;
}
.gap-4 {
    gap: 0.25rem !important;
}
.gap-8 {
    gap: 0.5rem !important;
}
.gap-16 {
    gap: 1rem !important;
}
.gap-20 {
    gap: 1.25rem !important;
}
.gap-24 {
    gap: 1.5rem !important;
}
.gap-32 {
    gap: 2rem !important;
}
.on-hover-dropdown {
    visibility: hidden;
    opacity: 0;
    margin-block-start: 16px;
}
.on-hover-item {
    position: relative;
}
.on-hover-item:hover .on-hover-dropdown {
    visibility: visible;
    opacity: 1;
    margin-block-start: 0;
}
@media (min-width: 992px) {
    .on-hover-item:hover > a::before {
        color: #2b2f4d;
        transform: translateY(-50%) rotate(180deg);
    }
}
.g-12, .gy-12 {
    --bs-gutter-y: .75rem !important;
}
.g-12, .gx-12 {
    --bs-gutter-x: .75rem !important;
}
@media screen and (max-width: 767px) {
    .header-top__right {
        width: 100%;
    }
    .header-top__right li:nth-last-child(2) {
        margin-inline-end: 0 !important;
        padding-inline-end: 0 !important;
    }
    .header-top__right li:nth-last-child(2)::before {
        display: none;
    }
}
.header-top__right{
    justify-content: flex-end;
    gap: 12px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}
.header-top__right.style-two > li {
    padding-inline-end: 16px !important;
    margin-inline-end: 0 !important;
    max-width: 50%;
}
.header-top__right.style-two > li:last-child {
    padding-inline-end: 0 !important;
}
.header-top__right.style-two > li::before {
    display: none !important;
}
@media screen and (max-width: 991px) {
    .header-top__right.style-two > li a {
        color: #fff !important;
    }
}
.header-top__right.style-two > li a::before {
    color: 235 49% 14% !important;
    font-size: 14px !important;
}
.header-top__right.style-two > li > ul {
    inset-inline-end: auto !important;
    inset-inline-start: calc(-100% - 24px) !important;
}
@media screen and (max-width: 991px) {
    .header-top__right.style-two > li > ul li a {
        color: #121535 !important;
    }
}
@media screen and (max-width: 991px) {
    .border-right-item a {
        font-size: 12px !important;
    }
}
.border-right-item {
    position: relative;
}
.border-right-item:not(:last-child) {
    margin-inline-end: 24px;
    padding-inline-end: 24px;
}
@media screen and (max-width: 1399px) {
    .border-right-item:not(:last-child) {
        margin-inline-end: 16px !important;
        padding-inline-end: 16px !important;
    }
}
@media screen and (max-width: 1199px) {
    .border-right-item:not(:last-child) {
        margin-inline-end: 10px !important;
        padding-inline-end: 10px !important;
    }
}
.border-right-item:not(:last-child)::before {
    position: absolute;
    content: "";
    inset-block-start: 50%;
    transform: translateY(-50%);
    inset-inline-end: 0;
    width: 1px;
    height: 15px;
    background-color: hsl(0 0% 100%/0.3);
}
.border-right-item-sm-space:not(:last-child) {
    margin-inline-end: 20px;
    padding-inline-end: 20px;
}
.header {
    transition: 0.2s linear;
}
.logo img {
    max-width: 180px;
    margin-right: 10px;
}
@media screen and (max-width: 424px) {
    .logo img {
        max-width: 148px;
    }
}
.nav-menu {
    gap: 32px;
}
@media screen and (max-width: 1399px) {
    .nav-menu {
        gap: 24px;
    }
}
@media screen and (max-width: 1199px) {
    .nav-menu {
        gap: 16px;
    }
}
.nav-menu__item.activePage > a {
    color: #2b2f4d !important;
}
.nav-menu__item.activePage > a::before {
    color: #2b2f4d !important;
}
.nav-menu__item:hover > a {
    color: #999999;
}
@media (min-width: 992px) {
    .nav-menu__item:hover > a {
        color: #2b2f4d !important;
    }
}
.nav-menu__link {
    color: #999999;
    font-weight: 500;
    width: 100%;
    padding: 10px 0;
    width: 100%;
    font-size: 16px;
    text-align: center;
}
@media (max-width: 1299px) {
    .nav-menu__link {
        font-size: 0.875rem;
    }
}
@media screen and (max-width: 1199px) {
    .nav-menu__link {
        font-size: 0.8125rem;
    }
}
@media (max-width: 1299px) {
    .nav-menu .common-dropdown__link {
        font-size: 0.875rem;
    }
}
@media screen and (max-width: 1199px) {
    .nav-menu .common-dropdown__link {
        font-size: 0.8125rem;
    }
}
.has-submenu {
    position: relative;
}
.has-submenu .nav-menu__link {
    padding-inline-end: 16px;
}
.has-submenu.active > a, .has-submenu.active > a::before {
    color: #2b2f4d;
}
.has-submenu.active > a::before {
    transform: translateY(-50%) rotate(180deg) !important;
}
.has-submenu > a {
    position: relative;
}
.has-submenu > a::before {
    position: absolute;
    /*content: "\e136";*/
    content: "\F229";
    inset-inline-end: 0;
    inset-block-start: 50%;
    transform: translateY(-50%);
    /*font-family: "Phosphor";*/
    font-family: "bootstrap-icons";
    color: hsl(235 49% 14%/0.4);
    transition: 0.2s linear;
}
.common-dropdown {
    position: absolute;
    inset-inline-start: 0;
    inset-block-start: 100%;
    width: max-content;
    background-color: hsl(0 0% 100%);
    border-radius: 6px;
    min-width: 190px;
    overflow: hidden;
    padding: 8px;
    transition: 0.2s linear;
    z-index: 99;
}
@media (min-width: 992px) {
    .common-dropdown {
        max-height: 400px;
        overflow-y: auto;
    }
}
.common-dropdown__item {
    display: block;
    border-radius: 4px;
    transition: 0.2s linear;
    position: relative;
}
@media screen and (max-width: 991px) {
    .common-dropdown__item {
        border-radius: 0;
    }
}
.common-dropdown__item.activePage .common-dropdown__link {
    color: #2b2f4d !important;
}
.common-dropdown__link {
    color: #999999;
    font-weight: 500;
    width: 100%;
    padding-inline-end: 16px;
    width: 100%;
    padding: 8px 14px;
    border-radius: inherit;
}
.common-dropdown__link:hover {
    color: #666666 !important;
}
.common-dropdown__link::before {
    position: absolute;
}
.menu-category-wrapper {
    gap: clamp(0.75rem, -8.243rem + 12vw, 4.5rem);
}
.submenus-submenu-wrapper {
    overflow: unset;
}
.submenus-submenu {
    position: absolute;
    z-index: 9999;
    background: hsl(0 0% 100%);
    width: 300px;
    inset-inline-start: 100%;
    inset-block-start: 0px;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    height: 100%;
}
.submenus-submenu__list li a {
    padding: 10px 16px;
    padding-inline-start: 32px;
    display: block;
    color: #808080;
    position: relative;
}
.submenus-submenu__list li a::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    inset-inline-start: 16px;
    inset-block-start: 50%;
    transform: translateY(-50%);
    background: #B3B3B3;
    border-radius: 80%;
    transition: 0.2s linear;
}
.submenus-submenu__list li a:hover {
    background-color: #F1F1F1;
    color: #333333;
    font-weight: 600;
}
.submenus-submenu__list li a:hover::before {
    background: #666666;
}
@media (min-width: 991px) {
    .has-submenus-submenu:hover > a {
        background-color: #F1F1F1;
        color: #1A1A1A !important;
        font-weight: 600;
    }
    .has-submenus-submenu:hover .submenus-submenu {
        visibility: visible;
        opacity: 1;
    }
}
.responsive-dropdown.style-two {
    width: 100%;
    border-radius: 0 0 16px 16px;
    width: 310px;
    max-height: 900px;
}
.responsive-dropdown.style-two .responsive-dropdown__list {
    max-height: 900px;
}
@media screen and (max-width: 1199px) {
    .responsive-dropdown.style-two .responsive-dropdown__list {
        max-height: 438px;
    }
}
@media (min-width: 992px) {
    .responsive-dropdown.style-two {
        z-index: 1;
    }
}
.header-border-0 .header {
    border-bottom: 0 !important;
}
.header-style-two .header {
    padding-bottom: 12px;
    padding-top: 12px !important;
}
.header-style-two .category__button {
    border-radius: 8px;
    overflow: hidden;
}
.header-sticky-style .header.fixed-header {
    padding-bottom: 12px;
    padding-top: 12px !important;
}
.header-sticky-style .header.fixed-header .category__button {
    border-radius: 8px;
}
.header-middle {
    padding: 20px 0 !important;
}
.header-middle.style-two {
    padding: 24px 0;
}
@media screen and (max-width: 1399px) {
    .header-middle {
        padding: 24px 0;
    }
}
@media screen and (max-width: 1199px) {
    .header-middle {
        padding: 16px 0 !important;
    }
}
@media screen and (max-width: 991px) {
    .header-middle {
        padding: 8px 0 !important;
    }
}
@media screen and (max-width: 991px) {
    .responsive-dropdown {
        position: fixed;
        inset-inline-start: 0;
        inset-block-start: 0;
        visibility: visible;
        opacity: 1;
        margin-top: 0;
        border-radius: 0;
        width: unset !important;
        height: 100vh;
        overflow-y: auto;
        transform: translateX(-100%);
        padding-top: 8px !important;
    }

    .responsive-dropdown.active {
        transform: translateX(0);
    }

    .responsive-dropdown ul {
        max-height: 100% !important;
    }

    .responsive-dropdown ul li.active > a {
        background: #F1F1F1;
        color: #333333 !important;
        font-weight: 600;
    }

    .responsive-dropdown ul li.active > a .icon {
        transform: rotate(90deg);
    }

    .responsive-dropdown ul li a {
        border-bottom: 1px solid #E6E6E6;
    }

    .responsive-dropdown .submenus-submenu {
        position: static;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        border-radius: 0;
        margin-left: 40px;
        width: unset;
        padding-top: 8px !important;
        display: none;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .responsive-dropdown .submenus-submenu__title {
        display: none;
    }

    .responsive-dropdown .submenus-submenu__list {
        max-height: unset !important;
    }

    .responsive-dropdown .submenus-submenu__list li a {
        padding-left: 16px;
    }

    .responsive-dropdown .submenus-submenu__list li a::before {
        inset-inline-start: 0;
    }
}
.responsive-dropdown__list li:last-child {
    border-bottom: 0 !important;
}
.mobile-menu {
    position: fixed;
    background-color: hsl(0 0% 100%);
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    padding: 24px;
    z-index: 9999;
    transform: translateX(-100%);
    transition: 0.2s linear;
    padding-block-end: 68px;
}
.mobile-menu.active {
    transform: translateX(0%);
}
.close-button {
    position: absolute;
    inset-inline-end: 8px;
    inset-block-start: 8px;
    width: 28px;
    height: 28px;
    background-color: #CCCCCC;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}
.close-button:hover {
    background-color: hsl(235 49% 14%);
    color: hsl(0 0% 100%);
}
.nav-menu--mobile {
    display: block;
    margin-block-start: 16px;
}
.nav-menu--mobile .nav-menu__item > a::before {
    transform: translateY(-50%) rotate(0deg);
}
.nav-menu--mobile .nav-menu__link {
    border-bottom: 1px solid #E6E6E6 !important;
    position: relative;
    padding: 12px 0;
    padding-inline-end: 16px;
    text-align: left;
}
.nav-menu--mobile .nav-submenu {
    position: static;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    width: 100%;
    margin-block-start: 0;
    padding: 0;
    margin-inline-start: 16px;
    display: none;
    transition: 0s;
}
.nav-menu--mobile .nav-submenu__link {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #E6E6E6 !important;
}
.nav-menu--mobile .nav-submenu__item:hover {
    background-color: transparent;
    color: #2b2f4d;
}
.nav-menu--mobile .nav-submenu__item::before {
    display: none;
}
.footer {
    margin-block-start: auto;
}
.footer-item__logo {
    margin-block-end: 20px;
    text-align: center;
}
.footer-item__logo a img {
    width: 100%;
    height: 100%;
    max-width: 190px;
    max-height: 64px;
    margin-bottom: 40px;
}
.footer-item__logo p{
    color: #fff;
}
.body-bottom-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.progress-wrap {
    position: fixed;
    inset-inline-end: 36px;
    inset-block-end: 36px;
    height: 46px;
    line-height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background-color: transparent;
}
@media screen and (max-width: 991px) {
    .progress-wrap {
        inset-inline-end: 24px;
        inset-block-end: 24px;
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap:hover {
    transform: scale(1.06);
}
.progress-wrap::after {
    position: absolute;
    /*font-family: "Phosphor";*/
    font-family: "bootstrap-icons";
    content: "\F148";
    /*content: "\e08e";*/
    text-align: center;
    height: 46px;
    width: 46px;
    line-height: 46px;
    font-size: 18px;
    inset-inline-start: 0;
    inset-block-start: 0;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    color: #ff6105 !important;
}
@media screen and (max-width: 991px) {
    .progress-wrap::after {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: #2b2f4d;
    stroke-width: 5;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.slick-initialized.slick-slider .slick-track {
    display: flex;
}
.slick-initialized.slick-slider .slick-slide {
    cursor: grab;
    height: auto;
    margin: 0 10px;
}
.slick-initialized.slick-slider .slick-slide > div {
    height: 100%;
}
.slick-initialized.slick-slider .slick-slide > div > div {
    height: 100%;
}
.slick-arrow {
    width: 48px;
    height: 48px;
}
.slick-arrow:active {
    transform: scale(1.02);
}
@media screen and (max-width: 991px) {
    .slick-arrow {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .slick-arrow {
        width: 32px;
        height: 32px;
    }
}
.arrow-center {
    position: relative;
}
.arrow-center .slick-arrow {
    position: absolute;
    inset-block-start: 50%;
    transform: translateY(-50%);
    inset-inline-start: 16px;
    z-index: 2;
}
.arrow-center .slick-arrow.slick-next {
    inset-inline-start: auto;
    inset-inline-end: 16px;
}
.slick-arrows-style-three .slick-arrow {
    visibility: hidden;
    opacity: 0;
}
.slick-arrows-style-three:hover .slick-arrow {
    visibility: visible;
    opacity: 1;
}
.slick-dots {
    text-align: center;
    position: absolute;
    inset-block-end: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 1;
    line-height: 1;
}
.slick-dots li {
    display: inline-block;
    display: flex;
}
.slick-dots li button {
    border: none;
    background-color: #95a4bb42;
    color: hsl(0 0% 100%);
    margin: 0 3px;
    width: 32px;
    height: 6px;
    border-radius: 1px;
    border-radius: 50px;
    text-indent: -9999px;
    transition: 0.3s linear;
}
.slick-dots li.slick-active button {
    background-color: hsl(224 71% 49%);
}
.section-heading {
    margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
    .section-heading {
        margin-bottom: 24px;
    }
}
@media (min-width: 1200px) {
    .section-heading.writing-mode {
        writing-mode: vertical-lr;
        transform: rotate(180deg);
    }
}
@media (max-width: 1199px) {
    .section-heading.writing-mode {
        margin-bottom: 60px !important;
    }
}
.banner {
    margin-top: 32px;
}

@media screen and (max-width: 767px) {
    .banner {
        margin-bottom: 32px;
    }
}
.banner .slick-slider {
    position: unset;
}
.banner .slick-initialized.slick-slider .slick-slide {
    margin: 0;
}
.banner-item {
    position: relative;
    padding-block-start: 80px;
    padding-block-end: 140px;
    padding-inline-start: clamp(1rem, -11.87rem + 20.758vw, 8.875rem);
    padding-inline-end: clamp(1rem, -5.129rem + 9.885vw, 4.75rem);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: #E9FFFF;
    mask-position: top;
    mask-size: 100% 100%;
    gap: clamp(1.5rem, -2.151rem + 7.607vw, 4.5rem);
}
@media screen and (max-width: 767px) {
    .banner-item {
        mask-image: none;
        overflow: unset !important;
    }
}
.banner-item__content {
    max-width: 852px;
}
@media screen and (max-width: 1499px) {
    .banner-item__content {
        max-width: 750px;
    }
}
@media screen and (max-width: 575px) {
    .banner-item__thumb img {
        max-width: 350px;
        width: 100%;
    }
}
@media screen and (max-width: 575px) {
    .banner-slider__inner {
        flex-wrap: wrap;
    }
}
.scroll-down {
    width: 94px;
    height: 94px;
    position: relative;
    margin-bottom: 24px;
    z-index: 2;
}
@media screen and (max-width: 1399px) {
    .scroll-down {
        width: 74px;
        height: 74px;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 767px) {
    .scroll-down {
        margin-bottom: -36px;
    }
}

.scroll-down::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 32px;
    border: 2px dashed hsl(0 0% 100%/0.4);
    top: 16px;
    animation: upDown 2s linear infinite;
}

@media screen and (max-width: 1399px) {
    .scroll-down::before {
        top: 8px;
    }
}

.scroll-down .icon {
    animation: upDown 2s linear infinite;
    font-size: 1.75rem;
    margin-top: 16px;
}

@keyframes upDown {
    0% {
        transform: translateY(10px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(10px);
    }
}
.animate-left-right {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    transition: 0.4s linear;
}

.slick-current .animate-left-right {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: 0.4s linear;
}

.slick-current .animate-scale {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.animation-delay-08 {
    transition-delay: 800ms;
}

.animation-delay-1 {
    transition-delay: 1000ms;
}

.animation-delay-12 {
    transition-delay: 1200ms;
}

.animation-delay-15 {
    transition-delay: 1500ms;
}

.feature-item-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 16px;
}

.feature-item-wrapper .feature-item:nth-child(10n+1) .feature-item__thumb {
    background: #fff;
}

.feature-item-wrapper .feature-item:nth-child(10n+2) .feature-item__thumb {
    background: #FCEDED;
}

.feature-item-wrapper .feature-item:nth-child(10n+3) .feature-item__thumb {
    background: #F6EBF3;
}

.feature-item-wrapper .feature-item:nth-child(10n+4) .feature-item__thumb {
    background: #FCF2E7;
}

.feature-item-wrapper .feature-item:nth-child(10n+5) .feature-item__thumb {
    background: #F5FBE3;
}

.feature-item-wrapper .feature-item:nth-child(10n+6) .feature-item__thumb {
    background: #E3FBE9;
}

.feature-item-wrapper .feature-item:nth-child(10n+7) .feature-item__thumb {
    background: #E9E3FB;
}

.feature-item-wrapper .feature-item:nth-child(10n+8) .feature-item__thumb {
    background: #ECF8F2;
}

.feature-item-wrapper .feature-item:nth-child(10n+9) .feature-item__thumb {
    background: #F8F5E5;
}

.feature-item-wrapper .feature-item:nth-child(10n+10) .feature-item__thumb {
    background: #F0F8E5;
}

.feature-item-wrapper .feature-item:nth-child(10n+11) .feature-item__thumb {
    background: #ddd;
}

.feature-item__thumb {
    max-width: 153px;
    max-height: 153px;
    background-color: hsl(196, 69%, calc(36% + (100% - 36%) * 0.9));
    aspect-ratio: 1;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #121535;
}

.feature-item{
    z-index: 5;
}

.feature-item__thumb img {
    transition: 0.2s linear;
    max-width: 15vh;
}

.feature-item:hover .feature-item__thumb img {
    transform: scale(1.2);
}

.featured-products .product-card, .popular-products .product-card {
    flex-direction: row;
    align-items: unset;
}
.product-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: #fff;
}

@media screen and (max-width: 1499px) {
    .product-card__cart {
        font-size: 12px;
        padding: 9px 12px !important;
    }
}

.brand-slider .slick-slide{
    margin-right: 15px;
}

.brand-item img{
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}

.interfaces{
    display: flex;
    align-items: center;
    max-width: 100%;
    justify-content: center;
}

.garantia{
    position: absolute;
    max-width: 80px;
}

.garantia-detail{
    max-width: 80px;
}

.etiqueta{
    background-color: #000;
    color: #fff;
}
.product-card__badge {
    border-radius: 16px 0 16px 0;
    right: 2vh;
    position: absolute;
    top: 2vh;
}

.product-card__thumb {
    width: 100%;
    transition: 0s !important;
}

.product-card__thumb img {
    width: 100%;
    transition: 0.2s linear;
    border-radius: 1rem;
}

.product-card.style-two {
    flex-direction: row;
}

.product-card.style-two .product-card__thumb {
    width: 260px;
    height: 190px;
}

@media screen and (max-width: 991px) {
    .product-card.style-two .product-card__thumb {
        width: 190px;
    }
}

@media screen and (max-width: 575px) {
    .product-card.style-two .product-card__thumb {
        width: 124px;
    }
}

.product-card__content h6{
    min-height: 50px;
}
@media screen and (max-width: 1199px) {
    .product-card__thumb {
        min-height: 160px;
    }

    .product-card__thumb img {
        max-width: 120px;
    }

    .product-card__content .product-card__price span {
        font-size: 0.75rem !important;
    }

    .product-card__content .title .link {
        font-size: 0.875rem;
    }

    .product-card__content .text-xs {
        font-size: 0.625rem !important;
    }
}
.offer-card a img{
    border-radius: 10px;
}
.shipping-item {
    padding: clamp(1.5rem, 0.891rem + 1.268vw, 2rem) clamp(1.5rem, -3.746rem + 6vw, 3.375rem);
}
.shipping-item span p{
    color: #fff !important;
}
.item-dis{
    width: 60px;
    height: 60px;
}
.item-dis img{
    max-height: 50px;
}
.banner-three {
    background-color: #121535;
}
@media (width: 991px) {
    .banner-three {
        padding: 60px 0;
    }
}
.animation {
    position: absolute;
    max-width: 10%;
}
.animation-rotate {
    animation: rotation 6s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.promo-three-item {
    padding: 8vh;
}
.promo-three-item img{
    position: relative;
    border-radius: 10px;
}
.product-details__thumb-slider {
    padding: clamp(3rem, -2.173rem + 10.777vw, 3rem);
}
.product-details .slick-initialized.slick-slider .slick-slide > div > div {
    height: 100%;
}
.product-dContent__box, .product-dContent__header {
    padding: 16px 40px;
}
.product-dContent__box {
    padding-top: 48px;
    padding-bottom: 48px;
}
.list-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}
@media (min-width: 480px) {
    .list-view {
        grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
    }

    .list-view .product-card {
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    .list-view .product-card__thumb {
        max-width: 200px;
        height: 100% !important;
    }

    .list-view .product-card__content {
        margin-top: 0 !important;
        margin-left: 20px;
        flex-grow: 1;
    }
}
.blog-item {
    margin-bottom: 30px;
}
.btn.btn-orange{
    background: #fc761a;
    color: #fff;
    border-color: #fc761a;
    padding: 10px 5px;
    font-size: 15px;
}
.blog-cont{
    height: 60px;
    font-size: 15px;
}
.blog-title{
    height: 50px;
}
.breadcrumb{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.breadcrumb-wrapper h5{
    color: #fff;
    font-size: 2.5rem;
}
.breadcrumb-wrapper ul li a,
.breadcrumb-wrapper ul li{
    color: #fff;
}
.red-social{
    border-radius: 50%;
    background-color: #fff;
    color: #171a3e;
    font-size: 2.5vh;
    height: 35px;
    width: 35px;
}
.red-social:hover{
    border-radius: 50%;
    background-color: #ff6907;
    color: #fff;
}
.red-social-orange{
    border-radius: 50%;
    background-color: #ff6907;
    color: #fff;
    font-size: 2.5vh;
    height: 35px;
    width: 35px;
}
.red-social-orange:hover{
    border-radius: 50%;
    background-color: #171a3e;
    color: #fff;
}
.bottom-footer__inner{
    padding: 15px 0;
    text-align: center;
}
.bottom-footer__inner p a{
    color: #fff;
}
.btn-success{
    padding: 15px;
}
.btn.btn-orange:hover,
.btn.btn-orange:focus{
    background: transparent;
    color: #fc761a !important;
    border-color: #fc761a;
}
.btn.btn-orange span{
    font-size: 10px;
    width: 100%;
}
.product-etiqueta{
    border-radius: 16px 0 16px 0;
    position: relative;
}
.etiqueta-detail{
    margin-bottom: 15px;
}
.inter .interfaces{
    justify-content: left;
}
.caracteristicas ul,
.caracteristicas ol{
    list-style: all;
    margin-left: 20px;
}
.redes{
    justify-content: center;
}
.email a{
    color: #fff;
}
.text-start{
    position: absolute;
    top: 20vh;
    left: 12%;
    color: #000;
}
.movil{
    display: none !important;
}
.feature-item__content h6 > a{
    font-size: 14px;
}
.fondo {
    background-color: #f3f3f3;
}

.blog-sidebar{
    padding: 15px;
}
.libro a img{
    max-width: 200px;
    max-height: 70px;
}
a.whatsapp-back i {
    color: #fff;
}
a.whatsapp-back{
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 32px;
    background-color:#2fb842;
    position: fixed;
    bottom: 120px;
    right: 20px;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 999;
    overflow: hidden;
    border-radius: 50%;
}
@media(max-width: 1084px){
    .text-start{
        top: 20vh;
    }
    .header-top__right.style-two > li{
        max-width: 100%;
    }
}
@media(max-width: 996px){
    .text-start{
        top: 20vh;
    }
}
@media(max-width: 766px){
    .desktop{
        display: none !important;
    }
    .movil{
        display: block !important;
    }
    .flex-between{
        justify-content: center;
    }
    .header-top__right{
        justify-content: center;
    }
    .text-start{
        top: 25vh;
    }
    .text-start h2{
        font-size: 3em;
    }
    .text-start h3{
        font-size: 2.5em;
    }
    .promo-three-item img{
        width: 100%
    }

    .feature-item__thumb img{
        max-width: 8vh;
    }
}
@media(max-width: 500px){
    .text-start{
        top: 6vh;
    }
    .text-start h2{
        font-size: 2em;
    }
    .text-start h3{
        font-size: 1.5em; 
    }
    .promo-three-item{
        padding: 2vh;
    }
    .red-social{
        font-size: 16px;
    }
}