:root, .light{
    --bg-color: #f6f6f6;
    --b-g-color: #fff;
    --color-text: #282828;
    --header-color: rgba(255, 255, 255, 0.9);
    --button-color: #282828;
    --tx-color: #fff;
    --active-color: #f6f6f6;
    --scrollbar-color: #cccccc;
    --disabled-button: #d3d3d3;
    --disabled-button-text: #8f8f8f;
    --error-message-color: #ff0000;
    --error-message-bg: #ffe8e8;
}
.dark{
    --bg-color: #0f0f0f;
    --b-g-color: #1a1a1a;
    --color-text: #fff;
    --header-color: rgb(26, 26, 26, 0.9);
    --button-color: #fff;
    --tx-color: #282828;
    --active-color: #242526;
    --scrollbar-color: #242526;
    --disabled-button: #303030;
    --disabled-button-text: #8f8f8f;
    --error-message-color: #ffffff;
    --error-message-bg: #4a0106;
}
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    border: 0;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border-spacing: 0;
}
.is_not_mac > ::-webkit-scrollbar{
    width: 7px;
    height: 7px;
}
.is_not_mac > ::-webkit-scrollbar-track{
    border-radius: 6px;
}
.is_not_mac > ::-webkit-scrollbar-thumb{
    border-radius: 5px;
    background-color: var(--scrollbar-color);
}
html {
    scroll-behavior: smooth;
}
body{
    font-family: Raleway;
    overflow-x: hidden;
    background-color: var(--bg-color);
}
.nav-open{
    overflow: hidden;
}
.search-mobile{
    margin: 0;
    position: relative;
    overflow: auto !important;
    height: 100% !important;
}
html.search-mobile{
    margin-top: 0!important;
    overscroll-behavior: none;
}
header{
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    padding-left: 50px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
    height: 60px;
    z-index: 10;
    transition: .3s ease-in-out;
}
header.active{
    background-color: var(--header-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.menu-toggle-section{
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.menu-toggle{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    height: 28px;
    width: 28px;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
span.menu,
span.menu::after,
span.menu::before{
    position: absolute;
    content: '';
    width: 23px;
    height: 1.5px;
    background-color: #fff;
    border-radius: 20px;
    transition: 500ms cubic-bezier(0.77,0,0.175, 1);
}
header.active span.menu,
header.active span.menu::after,
header.active span.menu::before{
    background-color: var(--color-text);
}
span.menu::before{
    margin-top: -8px;
}
span.menu::after{
    margin-top: 8px;
}
.menu-toggle.active > span.menu{
    background: transparent;
}
.menu-toggle.active > span.menu::after,
.menu-toggle.active > span.menu::before{
    margin-top: 0px;
}
.menu-toggle.active > span.menu::before{
    transform: rotate(-225deg);
}
.menu-toggle.active > span.menu::after{
    transform: rotate(225deg);
}
.bi-logo-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.bi-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
    -webkit-tap-highlight-color: transparent;
}
.bi-logo:hover{
    opacity: 0.9;
}
header nav{
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    flex-grow: 1;
}
header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
nav ul li {
    list-style: none;
    height: 100%;
    margin: 0px 2px;
    position: relative;
}
nav ul li::after{
    position: absolute;
    bottom: 1px;
    content: "";
    display: block;
    background-color: #fff;
    height: 2px;
    width: 0%;
    border-radius: 20px;
    transition: width 0.3s, opacity 0.3s;
    opacity: 0;
}
header.active nav ul li::after{
    background-color: var(--color-text);
}
/*nav ul li:nth-child(1)::after{
    content: "";
    display: none;
}*/
nav ul li:hover::after{
    width: 100%;
    opacity: 1;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
    padding: 0px 20px;
    font-size: 14px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}
header.active > nav ul li a{
    color: var(--color-text);
}
.active-line{
    position: absolute;
    bottom: 1px;
    background-color: #fff;
    height: 2px;
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s;
}
header.active .active-line{
    background-color: var(--color-text);
}
.active-line.move{
    width: 114%;
    transform: translateX(282px);
}
.list-company-button-section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 15px;
}
.list-company-button{
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    background-color: #282828;
    border-radius: 99999px;
    padding: 11px 25px;
    transition: .3s ease-in-out;
}
header.active .list-company-button{
    color: var(--tx-color);
    background-color: var(--button-color);
}
.options-wrapper{
    display: flex;
}
.dots{
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    padding: 0px 10px;
    -webkit-tap-highlight-color: transparent;
}
header.active .dots{
    color: var(--color-text);
}
.main-background-wrapper{
    position: relative;
    height: 95vh;
    background-color: #000;
    border-radius: 0px 0px 35px 35px;
    overflow: hidden;
}
.main-background-section{
    height: 100%;
    opacity: .7;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}
.bg-1{
    background-image: url('https://bi-cdn-images.bonaireinfo.org/background-image-1.webp');
    background-position: center;
}
.bg-2{
    background-image: url('https://bi-cdn-images.bonaireinfo.org/background-image-2.webp');
    background-position: center;
}
.bg-3{
    background-image: url('https://bi-cdn-images.bonaireinfo.org/background-image-5.webp');
    background-position: center;
}
.bg-4{
    background-image: url('https://bi-cdn-images.bonaireinfo.org/background-image-4.webp');
    background-position: center;
}
.bg-5{
    background-image: url('https://bi-cdn-images.bonaireinfo.org/background-image-6.webp');
    background-position: center;
}
.bg-6{
    background-image: url('https://bi-cdn-images.bonaireinfo.org/background-image-3.webp');
    background-position: center;
}
.bg-7{
    background-image: url('https://bi-cdn-images.bonaireinfo.org/background-image-7.webp');
    background-position: center;
}
.bg-8{
    background-image: url('https://bi-cdn-images.bonaireinfo.org/background-6.webp');
    background-position: center;
}
.background-gradient{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30.73%, rgba(0, 0, 0, 0.38) 88.02%);
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100%;
}
.search-bar-wrapper{
    position: absolute;
    top: 0px;
    height: 95vh;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 25px;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.search-bar-wrapper h1{
    color: #fff;
    font-size: 55px;
    font-weight: 500;
    margin-bottom: 55px;
    text-align: center;
}
.search-bar-section{
    background-color: #fff;
    border-radius: 25px;
    width: 100%;
    max-width: 600px;
}
.search-bar form {
    padding: 0px 15px;
    display: flex;
}
.close-search-bar-button-section{
    display: flex;
    justify-content: center;
    align-items: center;
}
.close-search-bar-button{
    height: 24px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.search-button{
    background: none;
    border: 0;
    outline: none;
    box-sizing: content-box;
    color: inherit;
    cursor: pointer;
    font: inherit;
    line-height: inherit;
    overflow: visible;
    padding: 0;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}
.search-icon{
    display: block;
    height: 22px;
    width: 22px;
}
.icon {
    fill: #282828;
}
.search-form-control{
    border: none;
    outline: none;
    padding: 10px;
    height: 28px;
    font-size: 15px;
    background-color: transparent;
    font-family: Raleway;
    color: #282828;
    width: 100%;
    display: inline-block;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}
.clear-button-section{
    display: flex;
    justify-content: center;
    align-items: center;
}
.clear-button{
    height: 22px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.search-suggestions-wrapper{
    position: absolute;
    max-width: 600px;
    width: calc(100% - 50px);
}
.search-suggestions-section{
    background-color: #fff;
    padding: 15px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.04)
}
.search-suggestions-section.hidden{
    display: none;
}
.search-bar-wrapper.mobile{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 0px;
    z-index: 10;
    padding: 0px;
    display: flex;
}
.search-bar-wrapper.mobile .search-bar-section{
    height: 100%;
    width: 100%;
    border-radius: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: unset;
    background-color: var(--b-g-color);
}
.search-bar-wrapper.mobile .search-suggestions-wrapper{
    height: 100%;
    width: 100%;
    position: unset;
    overflow-y: scroll;
    max-width: unset;
}
.search-bar-wrapper.mobile .search-suggestions-section{
    box-shadow: unset;
    position: unset;
    background-color: transparent;
    padding: 0px 20px;
    margin-top: 15px;
}
.search-bar-wrapper.mobile .search-bar{
    margin: 10px;
    background-color: var(--active-color);
    border-radius: 999px;
}
.search-bar-wrapper.mobile .search-form-control{
    color: var(--color-text);
}
.search-bar-wrapper.mobile .icon-color{
    fill: var(--color-text);
}
.companies {
    list-style: none;
    display: flex;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}
.companies:hover{
    background-color: #f6f6f6;
}
.search-bar-wrapper.mobile .companies:hover{
    background-color: var(--active-color);
}
.search-icon-suggestions {
    width: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.search-icon-suggestions > .icon {
    height: 20px;
    width: 20px;
}
.building-icon{
    color: #929292;
}
.items {
    color: #282828;
    padding-left: 10px;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
}
.search-bar-wrapper.mobile .items{
    color: var(--color-text);
}
.items-text {
    font-weight: 600;
}
.category{
    font-size: 12px;
    color: #929292;
}
.ligt-text{
    font-weight: normal;
}
.sunrise-sunset-wrapper{
    padding-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px 25px;
}
.sunrise-sunset-section{
    max-width: 1025px;
    background-color: var(--b-g-color);
    border-radius: 30px;
    width: 100%;
}
.todays-date{
    text-align: center;
    padding-top: 30px;
    margin-bottom: 10px;
}
.loading-todays-date{
    max-width: 220px;
    height: 30px;
    margin: auto;
    background: var(--active-color);
    border-radius: 8px;
    animation: loading 1.5s ease-in-out infinite;
    -webkit-animation: loading 1.5s ease-in-out infinite;
}
.todays-text {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-text);
}
.arrow-color, .check-color{
    fill: var(--color-text);
}
.sunrise-sunset{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}
.sunrise-wrapper, .sunset-wrapper{
    padding: 0px 50px;
}
.sunrise-time, .sunset-time {
    padding-top: 10px;
    color: var(--color-text);
    display: flex;
    justify-content: center;
    align-items: center;
}
.loading-sunrise-time, .loading-sunset-time{
    height: 20px;
    margin: auto;
    background: var(--active-color);
    border-radius: 8px;
    animation: loading 1.5s ease-in-out infinite;
    -webkit-animation: loading 1.5s ease-in-out infinite;
}
.info-column-wrapper{
    padding-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px 25px;
}
.info-column-section{
    max-width: 1025px;
    background-color: var(--b-g-color);
    border-radius: 30px;
    width: 100%;
}
.info-column {
    padding: 35px;
}
.info-column.list-company{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.info-column p{
    padding-top: 20px;
    color: var(--color-text);
    max-width: 850px;
    line-height: 1.5rem;
}
.info-column h2{
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
}
.page-link-wrapper{
    margin-top: 60px;
}
.page-link{
    color: var(--tx-color);
    background-color: var(--button-color);
    border-radius: 99999px;
    padding: 10px 0px;
    width: 170px;
    text-align: center;
    font-size: 15px;
    display: inline-block;
    font-weight: 600;
    animation: jelly 6s ease-in-out infinite;
    -webkit-animation: jelly 6s ease-in-out infinite;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}
.company-info-content-wrapper{
    position: relative;
    margin-top: 20px;
}
.company-info-content{
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    grid-template-columns: repeat(4,1fr);
    padding: 0;
    grid-gap: 20px;
    margin: auto;
    scroll-snap-type: x mandatory;
}
.company-info-wrapper, .loading-company-info-wrapper{
    display: inline-flex;
    vertical-align: top;
    scroll-snap-align: start;
}
.loading-company-info{
    width: 255px;
    height: 290px;
    border-radius: 20px;
    background-color: var(--active-color);
    animation: loading 1.5s ease-in-out infinite;
    -webkit-animation: loading 1.5s ease-in-out infinite;
}
.company-info-content::-webkit-scrollbar{
    display: none;
}
.company-info-section{
    border-radius: 20px;
    background-color: var(--active-color);
    position: relative;
}
.company-profile-image{
    object-fit: cover;
    -webkit-touch-callout: none;
}
.loading-photo{
    position: absolute;
    top: 0px;
}
.no-profile-image-section{
    background-color: var(--b-g-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    color: var(--active-color);
}
.company-profile-image, .loading-photo, .no-profile-image-section{
    width: 250px;
    height: 150px;
    border: 2px solid var(--active-color);
    border-radius: 20px 20px 0px 0px;
}
.company-info{
    padding: 15px 25px;
    text-align: left;
}
.company-profile-image-section{
    -webkit-tap-highlight-color: transparent;
}
.company-name{
    font-size: 18px;
    color: var(--color-text);
    margin: 0px;
    font-weight: 700;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.company-category{
    color: #929292;
    font-size: 15px;
}
.content-wrapper{
    margin-top: 10px;
}
.visit-profile-wrapper{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.visit-profile{
    color: var(--tx-color);
    background-color: var(--button-color);
    border-radius: 999px;
    padding: 8px 15px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    width: unset;
    -webkit-tap-highlight-color: transparent;
}
.left-button{
    position: absolute;
    left: -35px;
    top: 35%;
    padding: 0px;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.right-button{
    position: absolute;
    right: -35px;
    top: 35%;
    padding: 0px;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease-in-out;
}
.contact-us-wrapper{
    margin-top: 25px;
}
.contact-us-section{
    background-color: var(--b-g-color);
    border-radius: 40px 40px 0px 0px;
    padding-top: 50px;
}
.contact-us-section h2{
    font-weight: 700;
    text-align: center;
    font-size: 45px;
    color: var(--color-text);
    padding-bottom: 50px;
}
.contact-us{
    display: flex;
    align-items: center;
    margin: auto;
    max-width: 1450px;
    padding: 0px 80px;
}
.contact-information-section{
    flex: 0 0 50%;
}
.contact-information{
    display: flex;
    flex-direction: column;
    font-size: 22px;
    color: var(--color-text);
    line-height: 1.5em;
}
.contact-information-url{
    text-decoration: none;
    color: var(--color-text);
}
.contact-information-url:hover{
    text-decoration: underline;
}
.contact-form-section{
    width: 100%;
    position: relative;
}
.contact-form-section form {
    float: right;
    position: relative;
}
.form-textbox {
    display: flex;
    flex-direction: column;
}
.form-control{
    font-family: Raleway;
    border: 2.5px solid var(--active-color);
    background: transparent;
    color: var(--color-text) !important;
    outline: none;
    border-radius: 12px;
    padding: 16px;
    margin: 5px 0px;
    width: 340px;
    font-size: 15px;
    -webkit-appearance: none;
}
.empty-field {
    border: 2px solid red;
}
.empty-text {
    color: red;
    font-size: 14px;
    text-align: left;
}
.send-button{
    color: var(--tx-color);
    background-color: var(--button-color);
    border-radius: 9999px;
    padding: 12px 0px;
    margin-top: 15px;
    width: 140px;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    font-family: Raleway;
}
.send-button:disabled {
    background-color: var(--disabled-button);
    color: var(--disabled-button-text);
    cursor: unset;
}
@keyframes loading-content {
    0%{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes loading-content {
    0%{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
.submitting-form{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--header-color);
}
.loading-icon{
    height: 40px;
    width: 40px;
    animation: loading-content .75s linear infinite;
    -webkit-animation: loading-content .75s linear infinite;
}
.error-message-text{
    display: block;
    max-width: 345px;
    font-size: 14px;
    color: var(--error-message-color);
    font-weight: 500;
    margin-bottom: 10px;
    background: var(--error-message-bg);
    padding: 12px 15px;
    border-radius: 10px;
}
.message{
    padding: 10px;
    color: #188038;
    font-weight: 500;
}
.loading-icon-color{
    fill: var(--color-text);
}
.location-map{
    margin-top: 30px;
}
.theme-switch-wrapper{
    position: fixed;
    top: 75px;
    width: 300px;
    border-radius: 20px;
    right: 0px;
    margin-right: 10px;
    background-color: var(--b-g-color);
    box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.04);
    transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1), 0.3s transform cubic-bezier(0.4, 0, 0.2, 1), 0.3s visibility cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.6);
    transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
.theme-switch-section{
    padding-top: 25px;
    margin-bottom: 15px;
}
.theme-switch-section h3{
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-text);
}
.theme-switch{
    padding-top: 10px;
}
.appearance-wrapper{
    cursor: pointer;
    padding: 12px 0px;
    margin: 0px 12px;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
}
.appearance-wrapper:hover{
    background-color: var(--active-color);
}
.appearance-section{
    display: flex;
    margin-left: 12px;
}
.check-arrow-section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
}
.appearance-text{
    margin-left: 12px;
    color: var(--color-text);
}
.backdrop-background{
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
    z-index: 2;
}
@keyframes loading {
    0%{
        opacity: .5;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: .5;
    }
}
@-webkit-keyframes loading {
    0%{
        opacity: .5;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: .5;
    }
}
@media(max-width: 920px) {
    .contact-us {
        flex-direction: column;
        padding: 0px 25px;
    }
    .contact-form-section {
        margin-top: 25px;
    }
    .contact-form-section form{
        float: unset;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact-information{
        text-align: center;
    }
}
@media(max-width: 700px) {
    .list-company-button-section{
        display: none;
    }
}
@media(max-width: 600px) {
    header{
        height: 50px;
        padding: 0px 20px;
    }
    .menu-toggle-section{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menu-toggle.active > span.menu::after,
    .menu-toggle.active > span.menu::before{
        background: var(--color-text);
    }
    .bi-logo-wrapper{
        margin-left: 5px;
    }
    .logo{
        height: 42px;
        width: 42px;
    }
    header nav{
        display: block;
        position: absolute;
        width: 60%;
        height: calc(100vh - 0px);
        background: var(--b-g-color);
        top: 0px;
        left: -45%;
        transition: 0.5s;
        text-align: left;
        opacity: 0;
        visibility: hidden;
    }
    header nav.active{
        transform: translateX(75%);
        -webkit-transform: translateX(75%);
        opacity: 1;
        visibility: visible;
    }
    header nav ul{
        display: block;
        padding-top: 70px;
        padding-left: 10px;
        padding-right: 10px;
        transform: translateY(80px);
        -webkit-transform: translateY(80px);
        opacity: 0;
    }
    header nav.active ul{
        transform: translate(0px);
        -webkit-transform: translateY(0px);
        transition: transform 1s, opacity 1s;
        opacity: 1;
        transition-delay: 0.2s;
    }
    header nav ul li::after{
        display: none;
        content: "";
    }
    header nav ul li a{
        padding: 15px 20px;
        justify-content: left;
        font-size: 16px;
        color: var(--color-text);
    }
    header nav ul li a.active{
        background-color: var(--active-color);
        border-radius: 10px;
    }
    .active-line{
        display: none;
    }
    .list-company-button-section{
        display: flex;
        padding: 0px 20px;
    }
    .list-company-button{
        width: 100%;
        text-align: center;
    }
    .options-wrapper {
        display: flex;
        -webkit-box-pack: end;
        justify-content: flex-end;
        -webkit-box-flex: 1;
        flex-grow: 1;
    }
    .search-bar-wrapper h1{
        font-size: 40px;
    }
    .info-column-wrapper{
        margin: 0px 20px;
    }
    .info-column{
        padding: 30px;
    }
    .info-column h2{
        font-size: 20px;
    }
    .company-info-wrapper, .loading-company-info-wrapper{
        scroll-snap-align: unset;
    }
    .left-button, .right-button {
        display: none;
    }
    .contact-us-section{
        padding-top: 40px;
    }
    .contact-us-section h2{
        font-size: 35px;
        padding-bottom: 40px;
    }
    .contact-information {
        font-size: 18px;
    }
    .form-control {
        width: 280px;
    }
    .theme-switch-wrapper{
        top: 60px;
        width: 250px;
    }
    .theme-switch-section{
        padding-top: 20px;
        margin-bottom: 10px;
    }
    .appearance-text{
        margin-left: 15px;
    }
    .appearance-wrapper:hover{
        background-color: transparent;
    }
}
@media(max-width: 450px) {
    .info-column{
        padding: 30px 0px;
    }
    .info-column h2{
        padding: 0px 30px;
    }
    .info-column p{
        margin: 0px 30px;
    }
    .company-info-wrapper:first-child, .loading-company-info-wrapper:first-child{
        padding-left: 30px;
    }
    .company-info-wrapper:last-child, .loading-company-info-wrapper:last-child{
        padding-right: 30px;
    }
}
@media (max-width: 350px) {
    .form-control {
        width: 240px;
    }
}