/*
Theme Name: Bootscore
Theme URI: https://bootscore.me/
Author: Bootscore
Author URI: https://bootscore.me
Description: Flexible Bootstrap WordPress starter-theme for developers with full WooCommerce support. <a href="https://bootscore.me/category/documentation/" target="_blank">Documentation</a>
Version: 6.3.1
Requires at least: 5.0
Tested up to: 6.9
Requires PHP: 7.4
License: MIT License
License URI: https://github.com/bootscore/bootscore/blob/main/LICENSE
Text Domain: bootscore
Tags: featured-images, threaded-comments, translation-ready

Use this theme to make something cool, have fun, and share what you've learned with others.

Bootscore is based on Underscores https://underscores.me/, (C) 2012-2024 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* 
All style editing is done via /assets/scss/_bootscore-custom.scss
*/

/***
 * Theme Variables
 ***/
:root {
    --body-bg-color: #FAF8F5;
    --body-text-color: #737B8C;
    --heading-text-color: #212631;
    --subheading-text-color: #30B9FF;
    --primary-color: #D3E9FE;
    --secondary-color: #E5E5E5;
    --top-bar-blue: #20426D;
    --accent-color: #0F0F0F;
    --dark-color: #0F0F0F;
    --light-color: #FFFFFF;
    --padding-xlarge: 160px;
    --padding-large: 120px;
    --padding-small: 60px;
}

/***
 * Custom Fonts - Inter
 ***/
@font-face {
    font-family: 'Inter-Regular';
    src: url('./assets/fonts/Inter-Regular.woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Inter-Light';
    src: url('./assets/fonts/Inter-Light.woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Inter-Medium';
    src: url('./assets/fonts/Inter-Medium.woff');
    font-weight: 300;
    font-style: normal;
}

/***
 * Custom Fonts - JetBrainsMono
 ***/
@font-face {
    font-family: 'JetBrainsMono-Light';
    src: url('./assets/fonts/JetBrainsMono-Light.woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'JetBrainsMono-Medium';
    src: url('./assets/fonts/JetBrainsMono-Medium.woff2');
    font-weight: 300;
    font-style: normal;
}

/***
 * Global Styles
 ***/
html {
    box-sizing: border-box;
    font-size: 18px;
}
body {
    font-family: 'Inter-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--body-text-color);
    background-color: var(--body-bg-color);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.3;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--heading-text-color) !important;
}
a {
    color: inherit;
    text-decoration: none;
    user-select: none;
}
h1, h2, h3, h4, h5 {
    font-family: 'Inter-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 300;
}
h6 {
    color: var(--subheading-text-color) !important;
    font-family: 'JetBrainsMono-Medium', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
}
strong, b {
    font-family: 'Inter-Medium', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 300;
}
figure, h1, h2, h3, h4, h5, h6, p, blockquote, dl, dd {
    margin: 0 0 0.66em;
    line-height: 1.2;
}
p {
    margin-bottom: 1.5em;
    line-height: 1.5;
}
li, p, .accordion-body, .editor-content {
    line-height: 1.5;
}
video, img, svg {
    max-width: 100%;
    height: auto;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/*** 
 * Helper Classes
 ***/
.py-xlarge {
    padding-block: var(--padding-xlarge);
}
.py-large {
    padding-block: var(--padding-large);
}
.py-small {
    padding-block: var(--padding-small);
}
.overlay, .overlay-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
a.overlay-link {
    opacity: 0;
    font-size: 0;
    cursor: pointer;
}
.hide {
    display: none !important;
}
div.container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 94%;
}
.container.container-mini {
    max-width: 1180px;
}
.back-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.py-large + .py-large {
    padding-top: 0 !important;
}

a, .btn-link {
    color: #1200FF !important;
}

/*** 
 * Top Bar
 ***/
.top-notification {
    background-color: #20426D !important;
    color: #ffffff !important;
    font-family: 'Inter-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}
.top-notification p {
    margin: 0;
}
.top-notification a {
    color: #ffffff !important;
    font-family: 'Inter-Medium', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/*** 
 * Header
 ***/
header {
    background: var(--body-bg-color);
}
nav#nav-main {
    padding-block: 3.5rem;
    transition: all 0.1s ease-in-out;
}
.header-is-sticky nav#nav-main {
    padding-block: 1rem;
}
a.navbar-brand {
    max-width: 150px;
}

ul#bootscore-navbar {
    background: #F4F2EB;
    border: 1px solid #E5E2DC;
    border-radius: 50px;    
    padding: 6px 10px;
}
ul#bootscore-navbar > li > a {
    padding: 0.7rem 1.4rem;
    font-family: 'JetBrainsMono-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    line-height: 1;
    color: #4C5567 !important;
    letter-spacing: 0.75px;
    font-weight: 300;
}
ul#bootscore-navbar > li.current-menu-item > a {
    color: #1200FF !important;
}
ul#bootscore-navbar li.link-contact a.nav-link,
.btn-contact {
    background-color: #1200FF !important;
    color: #FAF8F5 !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    padding: 0.7rem 1.6rem;
    line-height: 1;
}
li.link-contact a.nav-link:hover,
.btn-contact:hover {
    background-color: #0d00cc !important;
    color: #ffffff !important;
}


/*** 
 * Title Block
 ***/
h1 {
    font-size: 5.33rem;
}
h2 {
    font-size: 3.3rem;
}
.sub-heading {
    color: #30B9FF !important;
    font-family: 'JetBrainsMono-Medium', 'Segoe UI', system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.1rem;
}
p.text-secondary.fs-5 {
    font-size: 1rem !important;
    max-width: 36em;
    font-family: 'Inter-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
}
.heading-block + figure {
    margin-top: 70px;
}

/*** 
 * About Us
 ***/
figure.theme-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
}
.philosophy-section h2 {
    max-width: 25rem;
}
.theme-card {
    background: #F4F1EC;
    border: 1px solid #E5E2DC;
    border-radius: 16px;
    padding: 32px;
}
.theme-card .text-secondary ul {
    padding-left: 20px;
    margin: 0 0 8px;
}
.theme-card .text-secondary li + li {
    margin-top: 10px;
}
.col-social-responsibility .text-secondary {
    margin-left: 55px;
}
.col-social-responsibility .text-secondary p:first-child {
    font-family: 'JetBrainsMono-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.75px;
    margin-bottom: 12px;
    margin-top: -5px;
}
.card {
    border: none !important;
    border-radius: 8px !important;
    overflow: hidden;
    background-color: #f1ebd8;
}

.card-img-top {
    border-radius: 0;
    object-fit: cover;
    height: 200px;
}

.card-body {
    background-color: #f1ebdf;
    padding: 1.5rem;
}

.badge-tag {
    background-color: #e6e1d5;
    color: #737B8C;
    font-size: 0.7rem;
    margin-right: 0.3rem;
    margin-bottom: 0.3rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    font-weight: 300;
}

.partner-logo-box {
    background-color: #F4F1EC;
    border: 1px solid #E5E2DC;
    border-radius: 16px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 150px; */
    aspect-ratio: 1.1;
}

.partner-logo-box img {
    max-height: 60px;
    max-width: 100%;
    filter: grayscale(0%);
    mix-blend-mode: multiply;
}
.partner-logo-box span.img-fluid {
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 52%;
    width: 100%;
    height: 100%;
    aspect-ratio: 1.1;
    filter: grayscale(0%);
    mix-blend-mode: multiply;
    display: block;
}

.alert-notice {
    background-color: #F4F1EC;
    border: 1px solid #E5E2DC;
    border-radius: 12px;
    padding: 32px 40px;
    margin: 4rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    max-width: 1060px;
    margin-inline: auto;
    display: table;
    padding-right: 200px;
}
.alert-notice .section-subheading:last-child {
    margin-bottom: 0;
}
.alert-notice img.img-fluid {
    width: 46px;
    margin-right: 8px;
}
.alert-notice h3 {
    font-size: 38px;
    display: flex;
    align-items: center;
}
p.section-subheading {
    color: #212631;
}
i.fa-arrow-right.text-white {
    background-image: url(./assets/icon-arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px auto;
}
i.fa-arrow-right.text-white:before {
    content: '';
}
.hero-carousel-wrapper h1 {
    font-size: 4.5rem;
    line-height: 1.15;
}
.site-content-aboutus h1 {
    line-height: 1.1;
}

p.section-subheading a {
    font-family: 'Inter-Medium', 'Segoe UI', system-ui, -apple-system, sans-serif;
    border-bottom: 1px solid;
}

p.section-subheading span.current-version {
    font-family: 'JetBrainsMono-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #737B8C;
    font-size: 85%;
    display: block;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

section.hero-section {
    margin-bottom: 90px;
}
section.partners-section {
    margin-top: 70px;
}
.hero-slide-item img.rounded {
    border-radius: 20px !important;
}
.hero-carousel-wrapper .swiper-button-next, 
.hero-carousel-wrapper .swiper-button-prev {
    top: 100%;
    margin-top: -40px;
    width: 40px;
    height: 40px;
    background: #F4F1EC;
    border-radius: 50%;
}
.hero-carousel-wrapper .swiper-button-next {
    right: 50%;
}
.hero-carousel-wrapper .swiper-button-prev {
    left: 50%;
    margin-left: -90px;
}
.hero-carousel-wrapper .swiper-button-next:after,
.hero-carousel-wrapper .swiper-button-prev:after {
    content: '';
    background: url(./assets/arrow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}
.hero-carousel-wrapper .swiper-button-prev:after {
    transform: rotate(-180deg);
}
.page-our-partners .theme-card-img img {
    height: 66px;
    margin-bottom: 10px;
}

/*** 
 * Brands
 ***/
.brand-card .theme-card-img {
    background: #F4F1EC;
}
.brand-details-section .theme-card img,
.brand-card .theme-card-img img {
    mix-blend-mode: multiply;
}
.product-thumbnail-wrapper img[alt="Placeholder"] {
    mix-blend-mode: darken;
}
.page-single-brand a.product-thumbnail-link {
    pointer-events: none;
}

.brand-card h3 {
    font-family: 'Inter-Medium', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.2rem !important;
}

.brand-card h3 + p {
    color: #737B8C;
    margin-bottom: 30px;
    font-size: 0.9rem;
}
.brand-card .btn-light {
    margin-top: auto;
    width: fit-content;
}

.brand-card .theme-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.brand-card {
    display: flex;
    flex-direction: column;
}
.brand-card .btn-light i.fa-solid.fa-arrow-right {
    margin-left: 40px !important;
}

.brand-card, .brand-card .theme-card-img {
    transition: 0.2s;
}
/*
.brand-card:hover, .brand-card:hover .theme-card-img {
    background: #E5E2DC;
}
.brand-card:hover {
    border-color: #E5E2DC;
} */

/*** 
 * Category Page
 ***/
.category-breadcrumb {
    /* pointer-events: none; */
}
.category-hero-card h1 {
    font-size: 3.15rem;
}
.category-hero-card .category-description p {
    margin: 0;
}
.product-img-wrap {
    margin: -1.5rem -1.5rem 1.5rem;
    background: #E9E7E2;
    padding: 20px 0;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
}
.product-img-wrap img {
    width: 90%;
    mix-blend-mode: multiply;
    object-fit: contain;
}
.product-img-wrap .rounded-circle {
    width: 120px;
    height: 120px;
    background-color: #E6E4DD;
}
.text-primary.brand-name {
    font-family: 'JetBrainsMono-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #4DA7FF !important;
}
.product-card .rounded-pill {
    font-family: 'JetBrainsMono-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
}


/*** 
 * Contact Form
 ***/
.contact-form-wrapper .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
    margin-top: 0;
}
.form-control {
    background-color: #F4F1EC;
    border: 1px solid #E5E2DC;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 14px;
}
.form-control:focus {
    background-color: #F4F1EC;
    box-shadow: none;
    border-color: #30B9FF;
}
textarea.form-control {
    min-height: 140px;
    height: 146px;
}
.contact-form-wrapper {
    max-width: 560px;
}
.wpcf7-form p {
    margin: 0;
}
label.form-label {
    font-family: 'JetBrainsMono-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}
.btn.btn-theme,
button.wpcf7-submit.btn {
    background: #EDEAE3;
    min-width: 205px;
    height: 56px;
    font-family: 'JetBrainsMono-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding-left: 22px;
    padding-right: 8px;
}
.btn.btn-theme i.fa-solid,
button.wpcf7-submit.btn i.fa-solid {
    width: 36px;
    height: 36px;
    background-color: #1200FF;
}
.outline-icon {
    color: transparent;
  -webkit-text-stroke: 1px #000;
}

.contact-details-wrap .contact-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E5E2DC;
    padding-bottom: 22px;
    margin-bottom: 22px;
}
.contact-details-wrap .contact-item > img {
    width: 44px;
    flex-shrink: 0;
    margin-right: 16px;
}
.contact-details-wrap .contact-item strong {
    font-family: 'JetBrainsMono-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    color: #737B8C;
    display: inline-block;
    margin-bottom: 4px;
}
.contact-details-wrap .contact-item span,
.contact-details-wrap .contact-item a {
    color: #212631 !important;
}
.iframe_wrapper iframe {
    width: 100%;
    margin-top: 20px;
    border-radius: 16px;
}
.bootscore-footer-info p {
    margin: 0;
    font-size: 13px;
}
.bootscore-footer-info p a {
    color: inherit !important;
    border-bottom: 1px solid;
}
.col-lg-7.footer-contact-form label.form-label, .col-lg-7.footer-contact-form label.form-label + br {
    display: none;
}
.bootscore-footer-info .border-top.py-5 {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
}
ul.contact-details-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    max-width: 27rem;
    font-size: 0.9rem;
}

ul.contact-details-list li:nth-child(2) {
    margin-left: auto;
}
ul.contact-details-list img.contact-icon {
    width: 1.1rem;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-right: 4px;
}
ul.contact-details-list li {
    margin-bottom: 1rem;
}
.footer-copy {
    max-width: 25rem;
    font-size: 0.9rem;
}
section.footer-contact-form-section {
    margin-block: 70px 90px;
}

.contact-details-wrap, .contact-map {
    max-width: 600px;
}
a.text-dark {
    color: inherit;
}

/*** 
 * Mega Menu
 ***/
#bootscore-navbar ul.dropdown-menu {
    background: transparent;
    position: fixed;
    left: 0;
    width: 100%;
    top: 220px;
    border: 0;
    margin: 0;
    padding: 0;
    padding-inline: 15px;
    border-radius: 0 !important;
    z-index: 1040;
}
.header-is-sticky #bootscore-navbar ul.dropdown-menu {
    top: 110px;
}
#bootscore-navbar ul.dropdown-menu > li, #bootscore-navbar ul.dropdown-menu > li > a {
    display: none;
}
#bootscore-navbar ul.dropdown-menu > li:first-child {
    display: block;
    margin: 0;
}
#mega_menu_content_2 h3 {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}
.mega-menu-post {
    margin-left: auto;
}
.mega-menu-post-card {
    background: #F5F5F5;
    border: 1px solid #DFDFDF;
    padding: 30px;
    border-radius: 10px;
    max-width: 440px;
    animation: slideDownWithoutOpacity 0.45s;
}
.mega-menu-content {
    animation: slideDown 0.3s;
}
.mega-menu-content > .container {
    background: #F4F2EB;
    padding: 40px 30px;
    border-radius: 16px;
}
@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes slideDownWithoutOpacity {
    from {
        transform: translateY(-30px);
    }
    to {
        transform: translateY(0px);
    }
}
.mega-menu-post-card img {
    border-radius: 10px;
}
p.mega-menu-title {
    font-size: var(--bodyFontSize);
    font-weight: 250;
}
p.mega-menu-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: currentColor;
    margin-block: 10px 25px;
}

ul.mega-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 2;
}
ul#bootscore-navbar ul.mega-menu-list li {
    margin-left: 0;
    margin-right: 25px;
    animation: slideDown 0.3s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(2) {
    animation-duration: 0.35s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(3) {
    animation-duration: 0.4s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(4) {
    animation-duration: 0.45s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(5) {
    animation-duration: 0.5s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(6) {
    animation-duration: 0.55s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(7) {
    animation-duration: 0.6s;
}

ul#bootscore-navbar ul.mega-menu-list li a.btn.btn-theme {
    margin-bottom: 0.6rem;
}
ul#bootscore-navbar ul.mega-menu-list li a.mega-menu-link {
    margin-bottom: 30px;
    clear: left;
    break-inside: avoid;
    width: 100%;
    text-decoration: none;
    color: #000;
    line-height: 1.35;
    font-size: 18px;
    font-weight: 250;
}
i.mega-menu-icon {
    background: #F5F5F5;
    border: 1px solid #DFDFDF;
    padding: 10px;
    border-radius: 10px;
    width: 54px;
    height: 54px;
    margin-right: 15px;
}
ul#bootscore-navbar ul.mega-menu-list li a.mega-menu-link span.mega-menu-caption {
    font-size: 14px;
    color: #A2A2A2;
}

.mega-menu a.btn.btn-theme,
ul.mega-menu-list a.btn.btn-theme {
    width: fit-content;
    min-width: 0;
    padding-inline: 15px;
    text-transform: uppercase;
    color: #4C5567 !important;
    height: 42px;
    margin-bottom: 6px;
    text-align: left;
    font-size: 0.8rem;
    letter-spacing: 0;
    white-space: nowrap;
}

#mega_menu_content_2 .container {max-width: 1700px;}
.dynamic-mega-menu-suppliers ul.mega-menu-list {
    column-count: 4;
    width: 100%;
}
.dynamic-mega-menu-suppliers ul.mega-menu-list li a {
    margin-bottom: 20px;
}
a.view-all-suppliers {
    color: #4C5567 !important;
    font-family: 'JetBrainsMono-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 20px;
    display: inline-block;
}

a.view-all-suppliers i {
    font-style: normal;
    font-size: 1.3em;
}

h3.mega-menu-title {
    font-size: 30px;
    margin-bottom: 35px;
}
a.btn-external-link {
    font-family: 'JetBrainsMono-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #737B8C !important;
}

a.btn-external-link span {
    display: inline-block;
    border-bottom: 1px solid;
    letter-spacing: 0.5px;
}

a.btn-external-link svg {
    width: 1.5em;
}
a.btn.btn-light.rounded-pill {
    border: 0;
}
div#page {
    overflow: hidden;
}
.page-category-details .table-responsive a {
    pointer-events: none;
}


/*** 
 * Hover and Pointer Fine Media Queries
 ***/
@media (hover: hover) and (pointer: fine) {
    a, .product-thumbnail-link .h6 {
        transition: 0.36s;
    }
    a.btn.btn-primary:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--dark-color);
    }
    .back-link span {
        position: relative;
        display: inline-block;
    }
    .back-link span::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: currentColor;
        transform: scaleX(0);
        transition: 0.36s;
    }
    .back-link:hover span::after {
        transform: scaleX(1);
    }
    a.text-dark:hover,
    .contact-details-wrap .contact-item a:hover,
    a.btn-external-link:hover,
    .product-thumbnail-link:hover .h6,
    a.view-all-suppliers:hover {
        color: #1200FF !important;
    }
    a.btn-external-link path {
        transition: 0.36s;
        stroke: currentColor;
    }
    .btn.btn-theme:hover {
        background: #E5E2DC !important;
    }
    .dynamic-mega-menu-products a.badge.rounded-pill:hover,
    .hero-carousel-wrapper .swiper-button-next:hover, 
    .hero-carousel-wrapper .swiper-button-prev:hover {
        background: #E5E2DC !important;
    }
    .bootscore-footer-info p a:hover,
    ul#bootscore-navbar > li > a:hover {
        color: #1200FF !important;
    }
    ul#bootscore-navbar li.link-contact a.nav-link:hover, .btn-contact:hover {
        background-color: #30B9FF !important;
        color: #ffffff !important;
    }
}
@media only screen and (max-width: 1024px) {
    body [data-aos^=fade][data-aos^=fade] {
        opacity: 1;
        transform: none;
    }
}
.col-lg-7.ps-xl-5 h4 {
    font-size: 1.65rem;
    font-family: 'Inter-Light', 'Segoe UI', system-ui, -apple-system, sans-serif;
}
.col-lg-7.ps-xl-5 h2 {
    line-height: 1.1;
}


/*** 
 * 993px and above Media Queries
 ***/
@media only screen and (min-width: 1440px) {
    .col-lg-7.ps-xl-5 {
        padding-left: 4rem !important;
    }
}
@media only screen and (min-width: 993px) {
    .collaboration-thumb {
        max-width: 260px;
    }
}
@media only screen and (min-width: 993px) and (max-width: 1380px) {
    .section-contact .col-md-12.col-lg-4 {
        min-width: 360px;
    }
    .section-contact .col-md-12.col-lg-8 {
        width: 50%;
        flex-grow: 1;
        flex-shrink: 0;
    }
}

/*** 
 * 1460px and below Media Queries
 ***/

@media only screen and (max-width: 1738px) {
    html {
        font-size: 16px;
    }
}
@media only screen and (max-width: 1460px) {
    .section-contact h3 {
        font-size: 1.66rem;
    }
    .section-contact .box h6 {
        font-size: 0.85rem;
    }
    .section-contact .box p {
        font-size: 1.1rem;
    }
    .faq-section-desc {
        font-size: 1.65rem;
    }
}

/*** 
 * 1380px and below Media Queries
 ***/
@media only screen and (max-width: 1380px) {
    :root {
        --padding-large: 90px;
    }
    html {
        font-size: 16px;
    }
    div.container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 100%;
        padding-inline: 18px;
    }
    .navbar-brand img {
        width: 200px;
    }
    .hero-carousel-wrapper h1 {
        font-size: 3.2rem;
    }
}

/*** 
 * 993px and below Media Queries
 ***/
@media only screen and (max-width: 993px) {
    :root {
        --padding-large: 90px;
    }
    html {
        font-size: 16px;
    }
    div.container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 100%;
        padding-inline: 18px;
    }
    .navbar-brand img {
        width: 200px;
    }
    button.btn.btn-nav {
        font-size: 24px;
        padding-right: 0;
        margin-left: 2px;
        font-weight: lighter;
    }
    button.btn.btn-nav .fa-solid {
        transform: scaleX(1.25);
    }
    .hero-slide-item img.rounded {
        height: auto !important;
        margin-bottom: 30px;
        min-height: 260px;
    }
    section.hero-section {
        margin-top: 20px;
        margin-bottom: 60px;
    }
    .alert-notice {
        padding-right: 20px;
    }
    .hero-carousel-wrapper .swiper-button-next {
    right: 100%;
    margin-right: -90px;
    }

    .hero-slide-item {
    padding-bottom: 40px;
    }

    .hero-carousel-wrapper .swiper-button-prev {
    left: 0;
    margin-left: 0;
    }
    .offcanvas {
        background: #f4f2eb;
    }

    .offcanvas ul#bootscore-navbar {
        background: no-repeat;
        border: 0;
        padding: 0;
    }

    .offcanvas ul#bootscore-navbar > li > a {
        font-size: 20px;
        padding-left: 0;
        margin-bottom: 10px;
        box-shadow: none !important;
        outline: 0 !important;
    }

    ul#bootscore-navbar li.link-contact a.nav-link {
        margin-top: 50px;
        text-align: center;
    }
    .dynamic-mega-menu-suppliers ul.mega-menu-list {
        column-count: auto;
    }

    #bootscore-navbar ul.dropdown-menu {
        position: relative;
        top: 0;
    }

    .mega-menu-content {
        padding: 10px 0 40px;
    }

    .mega-menu-content .container {
        padding: 0;
    }

    .hero-carousel-wrapper h1 {
        font-size: 3rem;
    }
}


@media only screen and (max-width: 767px) {
    .top-notification {
        font-size: 11px;
        height: 40px;
    }
    nav#nav-main {
        padding-block: 15px;
    }
    .navbar-brand img {
        width: 95px;
    }
    .alert-notice {
        padding-inline: 20px;
    }
    .alert-notice h3 {
        font-size: 22px;
    }
    .bootscore-footer-info .border-top.py-5 {
    display: block !important;
    }

    .footer-credits {
        margin-top: 8px;
    }
    section.footer-contact-form-section {
        margin-block: 10px 0;
    }
    section.partners-section {
        margin-top: 40px;
    }
    section.hero-section.pb-5 {
        margin-top: -20px;
    }
    h2 {
        font-size: 1.75rem;
    }
    section.novacyt-section {
        padding-top: 0 !important;
        margin-top: -2rem;
    }

    section.responsibility-section.py-5 {
        padding-top: 0 !important;
        margin-top: -3rem !important;
    }
    .col-lg-5.mb-5.mb-lg-0 {
        margin-bottom: 0.5rem !important;
    }

    ul.contact-details-list li {
        width: 100%;
        font-size: 13px;
    }

    ul.contact-details-list img.contact-icon {
        width: 1.1em;
    }

    .sub-heading {
        font-size: 0.9rem;
        margin-bottom: 0.5rem !important;
    }
    .category-hero-card h1 {
        font-size: 2rem;
    }
    .hero-carousel-wrapper h1 {
        font-size: 2.2rem;
        margin-bottom: 0.4em !important;
    }
    section.hero-section {
        margin-top: 8px;
    }
    h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    .page-single-brand h1 {
        font-size: 2.8rem !important;
    }
    #mega_menu_content_2 h3 {
        margin-bottom: 0rem !important;
        font-size: 1.1rem !important;
    }
    #mega_menu_content_1 h3.mega-menu-title { 
        margin-bottom: 0.5rem !important;
        font-size: 1.1rem !important;
    }

    .mega-menu a.btn.btn-theme, ul.mega-menu-list a.btn.btn-theme {
        margin-bottom: 0.2rem;
    }
    #mega_menu_content_1 a.rounded-pill.btn.btn-theme {
        margin-bottom: 0.6rem;
    }
    .theme-card {
        padding: 20px;
    }

    .theme-card.category-hero-card h1, .theme-card.category-hero-card p {
        text-align: left;
    }

    .theme-card.category-hero-card .border-top {
        margin-top: 12px;
        padding-top: 18px;
    }
}
