@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

a {
    text-decoration: none !important;
    color: white;
}
a:hover {
    color: white;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.header-top {
    background-color: var(--primary-color);
    color: white;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}

.header-top a {
    color: white;
}

.header-top-section:not(.header-top-socials) {
    display: flex;
    gap: 14px;
    font-size: 14px;
}

.header-top-section:not(.header-top-socials) i {
    color: var(--secondary-color);
}

.header-top-socials {
    display: flex;
    gap: 10px;
}

.header-top-socials span {
    font-size: 12px;
    display: flex;
    align-items: center;
}

.header-top-socials a {
    background-color: #e9ebef;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
}

@media screen and (max-width: 600px) {
    .header-top-socials {
        display: none;
    }

    .header-top {
        justify-content: center;
    }
}


.header {
    background-color: #e6e6e6;
    color: var(--primary-color);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}

.header img {
    width: 100%;
    height: 70px;
}

.header .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.header .dropdown-content a {
    color: white !important;
    font-weight: normal;
    padding: 10px 16px 10px 10px;
    text-decoration: none;
    display: block;
    text-transform: none;
    transition: all 0.2s ease-in-out;
}

.header .dropdown-content a:before {
    content: "\F285";
    font-family: "bootstrap-icons";
    margin-right: 6px;
}

.header .dropdown-content a:hover {
    background-color: var(--primary-darken-color);
}

.header .dropdown:hover .dropdown-content {
    display: block;
}


nav.main-nav {
    height: 100%;
}

nav.main-nav ul {
    height: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

nav.main-nav ul>li a {
    height: 100%;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
}

nav.main-nav ul>li:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

nav.main-nav ul>li:hover a {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.nav-toggle-btn {
    display: none;
    font-weight: 700;
}

.nav-toggle-btn {
    display: none;
    font-weight: 700;
}

nav.mobile-nav {
    transform: scale(1, 0);
    height: 0;
}

@media screen and (max-width: 1024px) {
    nav.main-nav {
        display: none;
    }

    .nav-toggle-btn {
        display: block;
    }

    nav.mobile-nav.active {
        transform: scale(1, 1);
        height: auto;
    }
}

nav.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding-left: 10px;
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1, 0);
    transition: all 0.2s ease-in-out;
    transform-origin: top;
}

nav.mobile-nav.active ul {
    transform: scale(1, 1);
}

nav.mobile-nav ul li {
    min-height: 40px;
    display: grid;
    align-items: center;
    width: 100%;
}

nav.mobile-nav ul li a {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    color: #fff;
}

nav.mobile-nav ul li ul {
    padding-left: 30px;
}

nav.mobile-nav>ul>li>a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.carousel-header, .carousel-item, .carousel-item img {
    height: 350px;
}

@media screen and (max-width: 800px) {
    .carousel-header, .carousel-item, .carousel-item img {
        height: 250px;
    }
}

@media screen and (max-width: 500px) {
    .carousel-header, .carousel-item, .carousel-item img {
        height: 200px;
    }
}

@media screen and (max-width: 300px) {
    .carousel-header, .carousel-item, .carousel-item img {
        height: 150px;
    }
}

.featured-section {
    min-height: 72px;
    background-color: var(--primary-color);
    padding: 0 10%;
}

.featured-section ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
    padding: 0;
    margin: 0;
}

.featured-section ul li {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.2s ease-in-out;
    text-align: center;
}

.featured-section ul li:hover {
    background-color: var(--primary-darken-color) !important;
}

.featured-section ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 14px;
    padding: 20px 0;
    width: 100%;
}

.featured-section ul li a i {
    font-size: 26px;
}

.featured-section ul li:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.03);
}

@media screen and (max-width: 800px) {
    .featured-section ul {
        flex-wrap: wrap;
    }

    .featured-section ul li {
        flex-basis: 50%;
    }

    .featured-section ul li:nth-child(odd) {
        background-color: unset;
    }

    .featured-section ul li:first-child, .featured-section ul li:last-child {
        background-color: rgba(255, 255, 255, 0.03);
    }
}

@media screen and (max-width: 400px) {
    .featured-section {
        padding: 0;
    }
}

@media screen and (max-width: 300px) {
    .featured-section {
        display: none;
    }
}

.section-header {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #fff 0%, #eae8e8 100%);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-header i {
    font-size: 18px;
    margin-right: 4px;
}

section>.section-body {
    margin-bottom: 30px;
    padding: 0 16%;
}

@media screen and (max-width: 1200px) {
    section>.section-body {
        padding: 0 10%;
    }
}

@media screen and (max-width: 940px) {
    section>.section-body {
        padding: 0 4%;
    }
}

.section-body .cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section-body .cards.left {
    justify-content: left;
    gap: 10px;
}

.main-content .section-body .cards {
    justify-content: left;
    gap: 10px;
}

.section-body .cards .card {
    flex: 0 0 23%;
    margin-bottom: 10px;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .section-body .cards .card {
        flex: 0 0 48%;
    }
}

@media screen and (max-width: 300px) {
    .section-body .cards .card {
        flex: 0 0 100%;
    }
}

.card img {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.card .card-title {
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
}

.card .card-desc {
    font-size: 13px;
    color: #939393;
}

.card .card-footer-btn {
    background-color: var(--primary-color);
    color: #fff;
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    padding: 6px 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}

.product-category-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pcc-item {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pcc-item img {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    border: 5px solid var(--pcc-item-color);
}

.pcc-line {
    width: 1px;
    height: 20px;
    margin: auto;
    background-color: var(--pcc-item-color);
}

.pcc-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: auto;
    background-color: var(--pcc-item-color);
}

.pcc-item .pcc-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13.5px;
    margin-top: 4px;
    margin-bottom: 4px;
    color: var(--pcc-item-color);
}

.pcc-item .pcc-button {
    text-transform: uppercase;
    font-weight: 400;
    background-color: var(--pcc-item-color);
    padding: 6px 10px;
    font-size: 14px;
    color: white;
}

.pcc-item .pcc-button span {
    font-weight: 700;
}

@media screen and (max-width: 770px) {
    .product-category-cards .pcc-item {
        flex: 0 0 25%;
    }

    .product-category-cards .pcc-item:nth-child(5) {
        display: none;
    }
}

@media screen and (max-width: 620px) {
    .product-category-cards .pcc-item {
        flex: 0 0 33.3%;
    }

    .product-category-cards .pcc-item:nth-child(4) {
        display: none;
    }
}

@media screen and (max-width: 460px) {
    .product-category-cards .pcc-item {
        flex: 0 0 50%;
    }

    .product-category-cards .pcc-item:nth-child(3) {
        display: none;
    }
}

.footer {
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    color: white;
    min-height: 90px;
    margin-top: auto;
    position: relative;
}

.footer-section .header-top-socials {
    margin-top: 10px;
}


.footer .footer-section:last-child {
    text-align: right;
}

.footer .footer-section:last-child a {
    color: white;
    border-right: 1px solid #cccccc4b;
    padding-right: 6px;
}

.footer .footer-section:last-child a:last-child {
    border: none;
}

.footer-links {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    border-right: 1px solid #ffffff67;
    padding-right: 6px;
}

.footer-links a:last-child {
    border: none;
}

.footer-copyright {
    color: #d5d8df;
    text-align: right;
}

.footer-go-top {
    position: absolute;
    top: -40px;
    left: 50%;
    background-color: var(--primary-color);
    border: 6px solid #fff;
    width: 80px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transform: translateX(-50%);
}

@media screen and (max-width: 1120px) {
    .footer {
        padding-top: 60px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 720px) {
    .footer {
        padding-top: 60px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-copyright {
        text-align: center;
    }
}

main {
    margin-top: 30px;
}

.card {
    margin-bottom: 20px;
}

.card-header {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.sidebar .card, .content-bottom-actions .card {
    border: none;
}

.content-bottom-actions .product-categorys .section-body {
    padding: 0;
}

.content-bottom-actions .product-categorys .card {
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.sidebar .card-body, .content-bottom-actions .card-body {
    padding: 0;
    padding-top: 10px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li a {
    color: var(--primary-color);
    width: 100%;
    height: 100%;
    display: block;
    padding: 6px 6px 6px 0;
}

.sidebar ul li {
    list-style: none;
    background-color: #EBEBEC;
    margin-bottom: 2px;
    padding-left: 42px;
    font-size: 15px;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.sidebar ul li:hover {
    padding-left: 46px;
}

.sidebar ul li:before {
    content: "\F285";
    font-family: "bootstrap-icons";
    background-color: #DFDFE0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease-in-out;
    max-width: 35px;
}

.sidebar ul li:hover:before {
    background-color: #D3D3D4;
}

.content-thumbnail {
    width: auto;
    max-width: 50%;
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    max-height: 300px;
}

.right {
    float: right;
    margin-left: auto;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 0;
    padding: 6px 20px;
    transition: all 0.2s ease-in-out;
    border: none;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

@media screen and (max-width: 768px) {
    .main-content {
        flex-direction: column-reverse;
    }
}

.comment {
    display: flex;
    flex-direction: column;
    background-color: #d8d8d8;
    padding: 6px 12px;
    border-radius: 10px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    max-height: 40px;
    font-weight: 500;
}

.comment img {
    width: 100%;
    height: 40px;
    border-radius: 50%;
    aspect-ratio: 1;
}


.read-news-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.read-news-tags a, .read-news-tags a:hover {
    color: black;
}

.read-news-tag {
    background-color: #dedede;
    padding: 2px 8px;
    border-radius: 6px;
    color: black;
    font-size: 14px;
    margin-right: 2px;
}

.page-select nav {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-select nav a {
    color: var(--primary-color) !important;
    background-color: var(--secondary-color) !important;
}

.page-select nav a:hover {
    color: var(--secondary-color) !important;
    background-color: var(--primary-color) !important;
}


.image-gallery img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
    aspect-ratio: 1;
}

.vg-video {
    height: 240px;
    position: relative;
    margin-bottom: 20px;
}

.vg-video::before {
    content: '\F4F2';
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 48px;
    color: var(--primary-darken-color);
    filter: drop-shadow(0px 0px 25px #000);
    transition: all 0.2s ease-in-out;
    opacity: 0;
}

.vg-video:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.video-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000000a7;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: none;
}

.video-modal.show {
    display: flex;
}

.video-modal .video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.video-modal .video .btn {
    opacity: 0.5;
}

@media screen and (max-width: 600px) {
    .video-iframe {
        width: 400px;
    }
}

@media screen and (max-width: 440px) {
    .video-iframe {
        width: 300px;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
}

.contact-detail {
    display: flex;
    gap: 6px;
    align-items: center;
}

.contact-detail .contact-detail-icon {
    width: 50px;
    height: 50px;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}


.quick-contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 100;
}

.quick-contact-buttons .qcb-btn {
    border: 6px solid var(--primary-color);
    background-color: var(--primary-darken-color);
    margin-bottom: 4px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    color: #000;
    transition: all 0.2s ease-in-out;
    color: white;
}

.quick-contact-buttons .qcb-btn:hover {
    border: 6px solid var(--primary-darken-color);
    background-color: var(--primary-color);
}

.sn-item {
    background-color: #F2F2F3;
    margin-bottom: 10px;
    padding: 8px;
}

.sn-thumbnail {
    float: left;
    margin-right: 6px;
}

.sn-thumbnail img {
    width: 70px;
    aspect-ratio: 1;
}

.sn-details {
    line-height: 18px;
    height: 75px;
    overflow: hidden;
    font-size: 13px;
}

.sn-details .sn-title a {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary-color);
}


.sidebarSlider .carousel-header, .sidebarSlider .carousel-item, .sidebarSlider .carousel-item img {
    height: unset;
    aspect-ratio: 1;
}

.contact-card {
    background: rgba(0, 0, 14, 0.85) url("/content/images/contact-card.png");
    height: 90px;
    display: flex;
    color: white;
    padding: 8px;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.contact-card:hover {
    background: rgba(0, 0, 14, 0.95) url("/content/images/contact-card.png");
}

.contact-card-icon {
    flex: 0 0 25%;
    font-size: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-details {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.contact-card-details .ccd-title {
    font-weight: bold;
}

.contact-card-details span {
    font-size: 14px;
    line-height: 16px;
}

.read-news-purchase {
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.purchase-price {
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 24px;
}
