@font-face {
    font-family: 'Helvetica';
    src: url('/html/font/Helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    font-family: 'Helvetica', sans-serif;
    font-style: normal;
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
    text-decoration: none;
    margin: 0;
    padding: 0;
}
body {
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    transition: all 1ms ease 0s;
    background-color: #F7F4F4;
    color: #333;
    font-family: 'Helvetica', sans-serif;
}
*, :before, ::after {
    background-repeat: no-repeat;
    box-sizing: inherit;
}
div {
    margin: 0px;
    padding: 0px;
}
ul {
    list-style-type: none;
}
ol {
    list-style-type: decimal;
    margin-left: 30px;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    width: 100%;
    vertical-align: top;
}

/* SCROLL */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

::selection {
    background-color: #381a22;
    color: #fefefe;
}

/* LAYOUT */
.section {
    width: 100%;
    margin: 0 auto;
}

.section {
    max-width: 1920px;
}

/* DISPLAY */
.display {
    display: flex;
    align-items: center;
}
.df {
    display: flex;
}
.ai-e {
    align-items: end;
}
.ai-s {
    align-items: start;
}
.m-0a {
    margin: 0 auto;
}
.jc-c {
    justify-content: center;
}
.jc-sa {
    justify-content: space-around;
}
.jc-sb {
    justify-content: space-between;
}
.jc-e {
    justify-content: end;
}
.jc-s {
    justify-content: start;
}
.fd-col {
    flex-direction: column;
}
.ta-c {
    text-align: center;
}
.ta-s {
    text-align: start;
}
.ta-e {
    text-align: end;
}
.reverse {
    flex-direction: row-reverse;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}

/* --------------------------------------------------- PAGE PROPERTIES --------------------------------------------------- */

/* HEADER */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999999;
}
.header__content {
    padding: 20px;
}
.logo-link img {
    max-width: 138px;
    height: auto;
}

/*OPACITY FILTERS*/
.logo-link, .btn-submit, .btn-clear {
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.logo-link:hover, .btn-submit:hover, .btn-clear:hover {
    filter: brightness(1);
    opacity: 0.7;
}

/* FONT */
.light {
    color: #FEFEFE;
}

.f-16 {
    font-size: 16px;
}
.f-20 {
    font-size: 20px;
}
.f-24 {
    font-size: 24px;
}
.f-36sb {
    font-size: 36px;
}
.f-40 {
    font-size: 40px;
}

.f-16, .f-20, .f-24, .f-40 {
    font-weight: 400;
}
.f-36sb {
    font-weight: 600;
}

/* GAPS */
.g-5 {
    gap: 5px;
}
.g-10 {
    gap: 10px;
}
.g-15 {
    gap: 15px;
}
.g-20 {
    gap: 20px;
}
.g-30 {
    gap: 30px;
}
.g-50 {
    gap: 50px;
}
.g-60 {
    gap: 60px;
}
.g-100 {
    gap: 100px;
}

/* SEARCH */
.search__content {
    height: 550px;
    background-image: url(../assets/mv.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
input[type="text"], .dropdown-toggle {
    padding: 10px 20px;
    font-size: 20px;
    font-family: 'Helvetica', sans-serif;
    border: none;
    background-color: #FEFEFE;
}
input[type="text"] {
    width: 360px;
}
input::placeholder, .dropdown-toggle {
    color: #6b6a6a;
}

.dropdown {
    position: relative;
}
.dropdown-toggle {
    cursor: pointer;
}
.dropdown-toggle, .dropdown-menu {
    width: 300px;
    display: flex;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 110%; 
    left: 0;
    background: #FEFEFE;
    border: 1px solid #ccc;
    padding: 10px 20px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.dropdown-menu {
    display: none;
}
.dropdown.active .dropdown-menu {
    display: flex;
}

.btn-submit, .btn-clear {
    width: fit-content;
    padding: 10px;
    border: none;
    cursor: pointer;
}
.btn-submit {
    background-color: #381a22;
}
.btn-clear {
    background-color: #333;
}

/* MARQUEE */
.marquee__text {
    overflow: hidden; 
    position: relative; 
    width: 100%; 
    height: 20px; 
    padding: 10px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.marquee__text .df {
    position: absolute; 
    white-space: nowrap; 
    animation: marquee 10s linear infinite; 
}
@keyframes marquee {
    0% { left: 0; }
    100% { left: -50%; }
}
.marquee__text p {
    display: inline-block; 
    padding-right: 10px;
}

/* WRAPPER */  
.page-wrapper {
    padding: 100px 0;
    margin: 0 auto;
}

/* BUSINESS LIST */
.business__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: fit-content;
    margin: 0 auto;
}
.business__list .cat {
    border: 1px solid #381a22;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* optional */
}
.business__list .cat:hover {
    transform: translate(-2px, -5px);
    box-shadow: 5px 5px 0 rgba(56, 26, 34, 1);
}

.business__list li,
.business__list li .content {
    width: fit-content;
}
.business__list .cat .content img {
    max-width: 300px;
    max-height: 365px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 20px;
}
.business__list .cat .content .desc {
    max-width: 500px;
    padding: 20px;
    border-left: 1px dashed #381a22;
}

/* INDUSTRY */  
.industry-list {
    flex-wrap: wrap;
}
.industry-list li {
    width: fit-content;
    padding: 5px;
    border: 1px dashed #381a22;
    text-transform: uppercase;
}

/* PAGINATION */
.pagination {
    /* margin: 20px auto; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-numbers {
    display: inline-block;
    margin: 0 1vw;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    cursor: pointer;
    color: #381a22;
    transition: background-color 0.3s, border 0.3s ease;
    /* font-size: clamp(14px, 0.83vw, 16px); */
    font-size: 16px;
    font-family: 'Helvetica', sans-serif;
}

.page-numbers:not(.arrow):hover, 
.page-numbers:not(.arrow).current {
    background-color: #381a22;
    color: #FEFEFE;
}

/* FOOTER */
.footer__content {
    border-top: 1px solid #333;
    padding: 60px 0 30px 0;
}

/* --------------------------------------------------- RESPONSIVE PROPERTIES --------------------------------------------------- */

/*LARGE SCREENS*/
@media screen and (max-width: 1600px) {

    .search__layout {
        justify-content: center;
        align-items: center;
    }

    .search__layout, .business__content {
        width: 90%;
        margin: 0 auto;
    }

}

/*MEDIUM SCREENS*/
@media screen and (max-width: 1400px) {

    .business__list {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media screen and (max-width: 1100px) {

    .search-form {
        flex-wrap: wrap;
    }

}

/*TABLET*/
@media screen and (max-width: 790px) {

    .g-60 {
        gap: 30px;
    }
    .g-100 {
        gap: 60px
    }

    .business__list li, .business__list li .content {
        flex-direction: column;
    }
    .business__list .cat .content .desc {
        border-left: none;
    }

}

/*MOBILE*/
@media screen and (max-width: 500px) {

    .search__content {
        height: 95vh;
    }

    input[type="text"], .dropdown-toggle, .dropdown-menu {
        width: 75vw;
    }
}