@font-face {
    font-family: 'Onest';
    src: url("../fonts/Onest-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: 'Onest';
    src: url("../fonts/Onest-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: 'Onest';
    src: url("../fonts/Onest-SemiBold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: 'Onest';
    src: url("../fonts/Onest-Bold.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: 'Onest';
    src: url("../fonts/Onest-ExtraBold.ttf") format("truetype");
    font-weight: 800;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --border-clr: #e5e9df;
    --brand-primary: #f2edeb;
}

body {
    font-family: "Onest", sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: #000;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
    transition: 0.2s linear;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

.outer-gap {
    margin-block: 100px;
}

.padding-outer {
    padding: 100px;
}

/*--------------------------------------------------------------
# Custom CSS
--------------------------------------------------------------*/
.thm-btn {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding: 18px 28px;
    color: #000;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    transition: all 0.2s linear;
    z-index: 1;
    text-transform: capitalize;
}

.thm-btn:active,
button:focus:not(:focus-visible), :not(.btn-check) + .btn:active,
.thm-btn:hover {
    background-color: #fff;
    color: #000;
}

.thm-btn img {
    transition: all 0.2s linear;
}

.thm-btn:hover img {
    transform: translateX(5px);
}

.section-title {
    position: relative;
    display: block;
    margin-top: -10px;
    margin-bottom: 50px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.what-we-do-image figure {
    display: block;
    height: 100%;
}

.image-anime::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover::after {
    height: 250%;
    background-color: transparent;
    transition: 600ms linear;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    /* Background color */
    color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 80px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side, #0085cd 90%, #000000);
    background: var(--_g) 0% 50%,
    var(--_g) 50% 50%,
    var(--_g) 100% 50%;
    background-size: calc(100% / 4) 50%;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    20% {
        background-position: 0% 0%, 50% 50%, 100% 50%
    }

    40% {
        background-position: 0% 100%, 50% 0%, 100% 50%
    }

    60% {
        background-position: 0% 50%, 50% 100%, 100% 0%
    }

    80% {
        background-position: 0% 50%, 50% 50%, 100% 100%
    }
}

/*--------------------------------------------------------------
# Home Page CSS
--------------------------------------------------------------*/
.banner {
    position: relative;
}

.brand-logo-banner {
    position: absolute;
    width: 220px;
    height: 220px;
    /*background-color: #fff;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    z-index: 9;
}

.banner-left {
    position: relative;
    padding-inline: 150px 140px;
    padding-block: 205px;
    height: 100%;
}

.banner-left-bg,
.banner-right-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-right {
    position: relative;
    padding-inline: 150px 140px;
    padding-block: 205px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-right-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(0, 0, 0, 0.9);
}

.img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-left h1 {
    font-size: 62px;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
}

.banner-left p {
    font-size: 16px;
    line-height: 26px;
    color: rgb(255, 255, 255, 0.8);
    margin-block: 22px 50px;
}

.banner-menu li ~ li {
    margin-top: 30px;
}

.banner-menu li a {
    display: block;
    text-align: center;
    width: 302px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    padding: 23px;
    border: 1px solid #FFFFFF;
}

.banner-menu li a:hover {
    background-color: #fff;
    color: #000;
}

.banner-swiper .swiper-slide {
    height: auto;
}

.banner-swiper .swiper-pagination-bullet {
    background: #fff;
}

/*  */
.counter {
    background-color: #F5F5F5;
    padding-block: 50px;
}

.counter-card {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-detail h5 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.counter-detail p {
    font-size: 16px;
    color: #808080;
}

.visionaries {
    padding-block: 100px;
}

.visionaries-swiper .visionaries-card {
    padding-inline: 84px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 64px;
    height: 64px;
    background-color: #EDEDED;
    color: #000;
    background-image: none;
    transition: 0.3s linear;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #000;
    color: #EDEDED;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: '\f061';
    font-family: 'font awesome 6 free';
    font-weight: 600;
    font-size: 20px;
}

.swiper-button-prev::after {
    transform: rotateY(180deg);
}

.visionaries-content p {
    font-size: 18px;
    line-height: 30px;
    color: #373737;
}

.visionaries-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 22px;
}

/*  */
.brand-intro {
    margin-bottom: 100px;
}

.brand-intro p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #373737;
}

.brand-intro .container {
    max-width: 880px;
    text-align: center;
}

.map {
    margin-bottom: 100px;
}

.map img {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.product-content {
    height: 100%;
    padding: 30px;
    border: 1px solid #DEDEDE;
}

.product-content h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.product-img, .product-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product-content p {
    line-height: 26px;
    font-weight: 500;
    color: #373737;
}

.swiper.img-swiper .swiper-slide {
    height: auto;
}

.swipe-img {
    height: 100%;
}

.marquee {
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
    width: 100%;
    overflow: hidden;
    background: white;
    white-space: nowrap;
}

.marquee--inner {
    display: block;
    width: 300%;
    position: absolute;
    animation: marquee 20s linear infinite;

    &:hover {
        animation-play-state: paused;
        color: red;
    }
}

@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

/*  */
footer {
    padding-block: 80px 50px;
    background-color: #000;
}

footer h2 {
    font-size: 57px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 24px;
}

.footer-form {
    width: 182px;
    border: 1px solid #FFFFFF;
    display: flex;
    border-radius: 30px;
    padding: 5px;
}

.footer-form .form-control {
    background: transparent;
    color: #fff;
    border: 0;
    box-shadow: none;
    padding: 0 5px;
    height: auto;
}

.footer-form .form-control::placeholder {
    color: #fff;
}

.footer-form .btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    font-size: 30px;
    transform: rotate(-30deg);
    display: grid;
    place-content: center;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
}

.gallery-card {
    aspect-ratio: 1/1;
    background-color: #d9d9d9;
}

.footer-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 30px;
}

.footer-links li ~ li {
    margin-top: 22px;
}

.footer-links li a {
    line-height: 26px;
    color: #000;
}

.footer-bottom {
    margin-top: 78px;
}

.footer-bottom p {
    font-size: 15px;
    color: #FFFFFFCC;
}

.footer-bottom a {
    display: inline-block;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    color: #fff;
    position: relative;
    padding-right: 16px;
    margin-right: 10px;
    text-transform: capitalize;
}

.footer-bottom a:last-child {
    padding-right: 0;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #fff;
}

.footer-bottom a:last-child:after {
    display: none;
}

/*--------------------------------------------------------------
# category Page CSS
--------------------------------------------------------------*/
.header-logo-container {
    position: relative;
    z-index: 1;
}

.header-logo-container::before {
    content: '';
    position: absolute;
    height: calc(100% - 40px);
    width: 100%;
    background-color: #e5e5e5;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -01 !important;
}

.header-logo {
    display: block;
    text-align: center;
    height: 100px;
    width: 100px;
    /*padding: 5px;*/
    margin-inline: auto;
    background-color: #fff;
    border-radius: 50%;
}

.header-logo img {
    width: 100%;
    height: 100%;
}

.category-wrapper {
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    gap: 10px;
}

.category-btn {
    width: 180px;
    flex-shrink: 0;
    border: 1px solid #000;
    background-color: #fff;
    padding: 8px 16px;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s;
}

.category-btn.active {
    background-color: #000 !important;
    color: #fff !important;
}

.scroll-btn {
    border: none;
    background-color: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 0;
    border: 1px solid #000;
}

.scroll-btn:hover,
.scroll-btn:focus:not(:focus-visible), .scroll-btn:not(.btn-check) + .btn:active {
    border-color: #000;
}

.category-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 50px;
}

.category-scroll {
    max-width: calc(100% - 100px);
    overflow-x: auto;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-img {
    height: 100%;
    width: 100%;
}

.gap-30 {
    row-gap: 30px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pt-15 {
    padding-top: 15px;
}

/*--------------------------------------------------------------
# Inquiry Page CSS
--------------------------------------------------------------*/
.inquiry-title {
    font-weight: 700;
    font-size: 34px;
    color: #000;
    margin-bottom: 20px;
}

.form-select,
.form-control {
    border-radius: 0;
    padding: 16px 20px;
    height: 60px;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.select-product-img img,
.select-product-img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.product-list {
    padding: 20px;
    border: 1px solid #ddd;
}

.product-list h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.product-item-ip {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ddd;
}

.product-item-ip input {
    display: none;
}

.product-name-ip {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

.product-item-ip:has(input:checked) {
    border-color: #000;
}

.btn-outline-dark,
.inquiry-form .btn-outline {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #000;
    border: 1px solid #000;
    border-radius: 0;
    text-transform: uppercase;
    padding: 22px 80px;
    margin-top: 50px;
}

.btn-outline-dark,
.inquiry-form .btn-outline-dark {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #FFFFFF;
    border: 1px solid #fff;
    border-radius: 0;
    text-transform: uppercase;
    padding: 22px 80px;
    margin-top: 50px;
}

.inquiry-form .btn-outline:hover {
    background-color: #000;
    color: #fff;
}

.cart-title-cp {
    font-weight: 700;
    margin-bottom: 30px;
}

.cart-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-block: 20px;
    border-bottom: 1px solid #ddd;
    gap: 10px;
}

.cart-product-detail {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.cart-product-detail h6 {
    font-weight: 700;
    font-size: 28px;
    color: #000;
    margin-bottom: 2px;
}

.cart-product-detail p {
    font-size: 16px;
    font-weight: 400;
    color: #000;

}

.cart-product-img {
    flex-shrink: 0;
}

.cart-product-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.counter-box {
    display: inline-flex;
    border: 1px solid #000;
    flex-shrink: 0;
}

.counter-box .btn {
    width: 50px;
    height: 50px;
    border: none;
    border-right: 1px solid #000;
    background: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0;
}

.counter-box input {
    width: 80px;
    text-align: center;
    font-weight: bold;
    border: none;
    border-right: 1px solid #000;
}

.counter-box .btn:last-child {
    border-right: none;
}

.mt-100 {
    margin-top: 100px;
}

.mb-0 {
    margin-bottom: 0px;
}

/*--------------------------------------------------------------
# product-detail-exp Page CSS
--------------------------------------------------------------*/
.product-card-exp {
    padding: 30px;
    /* background-color: #000; */
    background-color: #FFFFFF;
    transition: 0.3s linear;
}

.gx-50 {
    --bs-gutter-x: 50px;
    --bs-gutter-y: 50px;
}

.product-img-exp {
    margin-bottom: 25px;
}

.product-detail-exp {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.product-detail-exp h6 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #000000;
    text-transform: capitalize;
}

.product-detail-exp p {
    font-size: 16px;
    color: #000;
}

.product-detail-exp .btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
    flex-shrink: 0;
    background-color: #000;
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 5px;
}

.product-detail-exp .btn svg {
    width: 32px;
}

.rotate3 {
    transform: rotate(3deg);
}

.rotate-3 {
    transform: rotate(-3deg);
}

.product-card-exp:hover {
    transform: rotate(0deg);
}

/*--------------------------------------------------------------
# masonry CSS
--------------------------------------------------------------*/
.masonry {
    column-count: 4;
    column-gap: 15px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s linear;
    position: relative;
}

.masonry-item:hover {
    transform: scale(1.03);
}

.masonry-item img {
    width: 100%;
    display: block;
}

.masonry-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px;
    position: absolute;
    background: rgb(204 204 204 / 50%);
    width: 100%;
    backdrop-filter: blur(10px);
    transition: 0.2s linear;
    bottom: -30%;
}

.masonry-item-content h6 {
    font-weight: 700;
}

.masonry-item-content a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 4px;
}

.masonry-item-img:hover .masonry-item-content {
    bottom: 0;
}

.background-dark {
    background: #000000;
    opacity: 1 !important;
}

@media (max-width: 1200px) {
    .masonry {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry {
        column-count: 1;
    }
}