@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
    font-family: "Noto Sans", sans-serif;
}

select:required:invalid {
    color: red !important;
}

.text-55xl {
    font-size: 3.5rem;
    line-height: 1;
}

.text-45xl {
    font-size: 2.75rem;
    line-height: 1;
}

nav {
    padding: 1rem 1.5rem;
    border-bottom-width: 1px;
    border-color: rgb(209 213 219);
    user-select: none;
}

.min-text {
    color: #4b5563;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
}

.sub-menu-item {
    color: #111827;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    position: relative;
    min-height: 0;
    max-height: none;
    max-width: 278px;
    width: 100%;
    margin: 0;
    border-radius: 0;
    border: 0;
    outline: 0;
    color: var(--color-text, #1a1a1a);
    background-color: transparent;
    line-height: 22px;
    letter-spacing: normal;
    text-align: left;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.container-logo {
    display: flex;
    align-items: center;
}

.container-logo img {
    margin-right: 1.5rem;
    width: 160px;
    height: 34px;
}

.menu-item a,
.menu-item button {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    color: #111827;
}

/*.menu-item a:hover,
.menu-item button:hover {
    background-color: #e6e6e6;
}*/

.dash-item a,
.dash-item button {
    position: relative;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
}

.dash-item a:hover,
.dash-item button:hover {
    background-color: #e5e7eb;
}

.navbar {
    overflow: hidden;
    display: flex;
}

.navbar a {
    float: left;
    text-align: center;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    border: none;
    outline: none;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    margin-left: -10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #e6e6e6;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.transition-entrance {
    animation: transitionIn 0.1s;
}

.menu-item .toggle::before {
    content: "";
    pointer-events: none;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #e6e6e6;
    border-radius: 0.25rem;
    opacity: 0;
    transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 100ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0);
}

.menu-item .isOpen.toggle::before {
    opacity: 1;
    transform: scale(1);
}

.menu-item .toggle > .toggle {
    position: relative;
}

#home {
    /*background-image: url(../img/bg/overlay-1.png);
  background-position: center;
  background-size: cover;
  height: 100vh;*/
}

.hover\:arrow-lr {
    animation: jumpInfinite 1.5s infinite;
}

.w-85 {
    width: 350px;
}

@keyframes transitionIn {
    from {
        margin-top: -3px;
    }

    to {
        margin-top: 0px;
    }
}

@keyframes jumpInfinite {
    0% {
        margin-left: 0.25rem;
    }
    50% {
        margin-left: 0.625rem;
    }
    100% {
        margin-left: 0.25rem;
    }
}

/* footer section */
footer {
    background-color: #111827;
    /*padding: 3.5rem 10rem;*/
}

footer > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    user-select: none;
}

footer > div > div {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    grid-column: span 1 / span 1;
}

footer > div > div > .category-title {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    grid-column: span 1 / span 1;
}

.category-title > span {
    font-size: 16px;
    color: #94a3b8;
    white-space: nowrap;
}

.category-title > i {
    font-size: 14px;
    color: #94a3b8;
    white-space: nowrap;
    margin: 0rem 0rem 0rem 0.25rem;
}

.category-item {
    line-height: 2rem;
}

.copyright {
    margin-top: 4rem;
    padding: 1.25rem 0rem;
    display: flex;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: #94a3b8;
    border-top: 1px solid #94a3b8;
    border-bottom: 1px solid #94a3b8;
}

.copyright > div > span {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.brands {
    display: flex;
    float: right;
    right: 0;
    position: absolute;
    font-size: 16px;
    margin-bottom: 0.25rem;
    gap: 1.25rem;
    color: #fff;
}

.button-segment {
    background-color: #e5e7eb !important;
}

.button-segment:hover {
    background-color: #fff !important;
}

.h-100 {
    height: 38rem;
}

.transition-fade {
    animation: transitionIn 0.75s, transitionOpacity 0.75s;
}

@keyframes transitionIn {
    from {
        transform: rotateX(-10deg);
    }

    to {
        transform: rotateX(0);
    }
}

@keyframes transitionOpacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
