@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif !important;
    height: 100%;
}

/* General Loading Container */
.loading {
    z-index: 9999;
    /* Sit on top */
    overflow: visible;
    align-self: center;
    position: fixed;
    left: 0;
    top: 0;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgba(var(--bs-body-color), 0.85);
    background-image: url(../images/loading.gif);
    background-size: 34px 34px;
    background-repeat: no-repeat;
    background-position: center center;
}

.navbar {
    transition: .3s ease-out;
    height: 94px;
}

.scroll-navbar-bg {
    background-color: #ffffff;
}

.navbar-fixed-top ul.navbar-nav li>.nav-link {
    font-weight: 400;
    color: #ffffff;
}

.landing-wrapper {
    background-color: #fbf8f3;
    background-image: url("../images/hero-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: auto;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 200px;
    display: flex;
}

.slider-wrapper {
    margin-top: 200px;
    text-align: center;
}

.primary-wrapper {
    background-color: #028061;
    padding-top: 80px;
    padding-bottom: 80px;
}

.search-wrapper {
    max-width: 600px;
    margin: 20px auto;
}

.search-box {
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.search-input {
    border-radius: 50px;
    padding-left: 45px;
    padding-right: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 50px;
}

.search-input:focus {
    border-color: #028061;
    box-shadow: none;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 10;
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.underline {
    position: relative;
    z-index: 1;
}

.underline:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: .3em;
    background-image: url("../images/underline.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    left: 0;
    bottom: -.1em;
    z-index: -1;
}

.footer-wrapper {
    background-color: #028061;
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer-border {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-notice {
    display: none;
    position: fixed;
    width: 480px;
    left: 20px;
    bottom: 20px;
    padding: 10px;
    font-size: 12px;
    border-radius: 4px;
    color: #028061 !important;
    box-shadow: 0 0px 20px 0 rgba(44, 50, 131, 0.2);
    background: rgba(255, 255, 255, 0.9);
    z-index: 1028 !important;
}

.cookie-notice a {
    padding: 4px 10px 4px 10px;
    border: 2px solid #028061;
    font-size: 12px !important;
    color: #028061 !important;
}

/* Utils */

a {
    color: #028061 !important;
}

.btn-primary, .fc-button-primary {
    color: #fff !important;
    background-color: #028061 !important;
    border-color: #008060 !important;
}

.btn-primary:hover, .btn-outline-primary:hover, .btn-outline-primary:active, .dropdown-item.active, .fc-button-primary {
    color: #fff !important;
    background-color: #006d52 !important;
}

.btn-outline-primary {
    color: #028061 !important;
    border-color: #008060 !important;
}

.text-primary {
    color: #028061 !important;
}

.text-secondary {
    color: #efba80 !important;
}

.btn {
    font-size: 14px !important;
    padding: 10px 14px 10px 14px !important;
}

.form-control::placeholder {
    font-size: 14px;
    font-weight: 300;
}

.form-control:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 300;
}

.form-control::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 300;
}