/********** Template CSS **********/
:root {
    --primary: #7A793A;
    --light-primary: #969542;
    --dark-primary: #B99943;
    --active-primary: #ACAB5F;
    --second-primary: #D0CFB7;
    --success: #00C745;
    --light: #FFFFFF;
    --light-yellow: #FFFDF7;
    --dark: #33312E;
    --black: #333333;
    --gray: #F8F8F8;
    --secondary: #C6C6C6;
    --light-secondary: #E5E5E5;
}

body {
    color: var(--dark);
    background-color: var(--light-yellow);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    overflow: auto;
}

body.modal-open {
    overflow: hidden;
    /* Disable body scroll when modal is open */
    height: 100vh;
    /* Prevent body from scrolling */
}

a {
    color: var(--primary);
    cursor: pointer;
}

.w-fit {
    min-width: fit-content;
}

.owl-carousel {
    touch-action: manipulation; 
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

.border-top {
    border-top: 1px solid #33312e80 !important;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.text-primary {
    color: var(--primary) !important;
}


/*** Background color ***/
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-active-primary {
    background-color: var(--active-primary) !important;
}

.bg-gray {
    background-color: var(--gray);
}

.rounded-md {
    border-radius: 10px;
}

.card {
    padding: 20px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    background-color: var(--light);
    transition: transform 0.2s;
}

.card-header:first-child {
    border-radius: 14px 14px 0 0;
}

.box-shadow {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}


/*** Heading ***/
.fw-medium {
    font-weight: 500 !important;
}

.fw-regular {
    font-weight: 400 !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: var(--dark);
    font-family: "Montserrat", sans-serif;
}


/*** Button ***/
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: .3s;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    outline: none;
    box-shadow: none;
}

.btn-md {
    width: 150px;
    border-radius: 20px;
}

.btn-lg {
    width: 220px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    padding: 11px 16px;
}

.btn-success {
    background-color: var(--success);
    border-color: var(--success);
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
}

.btn-primary:hover,
.btn-primary:focus {
    box-shadow: inset 0 0 0 0 var(--primary);
    background-color: var(--light-primary);
    color: var(--light);
}

.btn-secondary {
    background-color: var(--secondary);
    border: none;
}

.btn-secondary:hover,
.btn-secondary:focus {
    box-shadow: inset 0 0 0 0 var(--secondary);
    background-color: var(--primary);
    color: var(--light);
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(122, 121, 58, 0.5)
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
    background-color: var(--dark-primary);
    color: var(--light);
    border: 2px solid var(--dark-primary);
}

.btn-check:checked+.btn-outline-primary:focus,
.btn-check:active+.btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(122, 121, 58, 0.5)
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.btn-rounded {
    border-radius: 50%;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--active-primary);
}

.navbar-dark .navbar-brand h1 {
    color: var(--light);
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    font-size: 1.75rem;
}

.navbar-dark .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

@media (max-width: 769px) {
    .navbar {
        justify-content: center;
        padding-bottom: 10px;
    }

    .navbar-dark .navbar-toggler {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    #logo {
        width: 150px;
    }
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        background: var(--light);
    }

    .navbar-collapse {
        background-color: #DFDFD2;
        margin-left: 50px;
        height: 100vh;
        position: fixed;
        width: 100%;
        top: 60px;
        z-index: 99999;
        padding: 20px 40px;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 15px 0;
        margin-left: 0;
        color: var(--primary);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        width: 100%;
        top: 0;
        left: 0;
        border-top: 2px solid #A8A29E;
        z-index: 999;
        background-color: var(--light);
    }

    .sticky-top.navbar-dark {
        position: fixed;
        top: 45px;
        background-color: var(--light);
    }

    .sticky-top.topbar {
        position: fixed;
        top: 0;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

.form-control,
.form-select {
    padding: 8px 15px;
    border: 1px solid #E5E5E5;
    font-size: 14px;
    border-radius: 6px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.input-group-text {
    background-color: var(--light);
    border-right: none;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 40px;
    z-index: 1;
    width: fit-content;
}

.owl-nav .owl-prev {
    left: -50px;
}

.owl-nav .owl-next {
    right: -50px;
}

@media (max-width: 769px) {
    .owl-nav .owl-prev {
        left: 0;
        display: none;
    }

    .owl-nav .owl-next {
        right: 0;
        display: none;
    }

    .sticky-top {
        top: auto;
    }
}

/*** Service ***/
.service-item {
    position: relative;
    padding: 20px 40px 30px;
    transition: .5s;
    line-height: 1.75;
    background-color: var(--light);
    border-radius: 14px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    margin-top: 20px;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    /*padding-left: 40px;
    padding-right: 40px;*/
}

.service-item:hover a.btn {
    background-color: var(--active-primary);
}


/*** Testimonial ***/
#testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background-color: #E1E1D0;
    border-radius: 50%;
    transition: .5s;
}

#testimonial-carousel .owl-dot.active {
    background-color: #9AA178;
}

#testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

#testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
    border-radius: 10px;
    background-color: var(--light);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

#testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

.testimonial-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

.testimonial-description .left-quote {
    position: absolute;
    left: 30px;
    top: 90px;
    z-index: 10;
    width: 60px !important;
}

@media (max-width: 769px) {
    .testimonial-description {
        line-clamp: 15;
        -webkit-line-clamp: 15;
    }
}

#advice {
    background-color: #F7F7F7;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    margin-top: 100px;
    border-radius: 10px;
}

#advice .btn-md {
    height: 42px;
    color: #F4EBE7;
}

#advice img {
    max-height: 500px;
    max-width: 100%;
}

/*** Team ***/
.team-item {
    border-radius: 0 0 20px 20px;
    background-color: #E7E7E7;
}

.team-description {
    border-radius: 0 0 20px 20px;
    background-color: #F6F6F6;
}

.team-item img {
    max-height: 200px;
    object-fit: cover;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.about-img-container {
    min-height: 500px;
}

@media (max-width: 769px) {
    .about-img-container {
        min-height: 300px;
    }
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.sticky-column {
    position: sticky;
    top: 150px;
    align-self: flex-start;
    overflow-y: auto;
}

@media (max-width: 769px) {
    .sticky-column {
        position: relative;
        top: 0;
    }
}

.whatsapp-sticker {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45%;
    z-index: 99;
    width: 60px;
    height: 60px;
}

.whatsapp-sticker i {
    font-size: 40px;
    margin-top: 3px;
}

@media (max-width: 769px) {
    .whatsapp-sticker {
        position: fixed;
        right: 20px;
        width: 40px;
        height: 40px;
        display: none !important;
    }

    .whatsapp-sticker i {
        font-size: 20px;
        margin-top: 5px;
    }
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.png) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

.circle-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.circle-icon:hover {
    color: var(--light);
}

.circle-icon i {
    font-size: 10px;
}

#header-carousel .carousel-item {
    max-height: 500px;
}

.carousel-indicators {
    bottom: -70px;
    gap: 8px;
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #E1E1D0;
}

.carousel-indicators .active {
    background-color: var(--primary);
}

.follow-up {
    margin-left: 70px;
    width: 170px;
}

.mobile-menu {
    display: none;
}

@media (max-width: 769px) {
    #header-carousel .carousel-item img {
        height: 450px;
        object-fit: cover;
    }

    .mobile-menu {
        display: block;
        margin-top: 50px;
    }

    .circle-icon2 {
        width: 45px;
        height: 45px;
    }

    .circle-icon2 i {
        font-size: 24px;
    }

    .follow-up {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

#testimonial {
    background-color: rgba(98, 99, 33, 0.3);
}

#footer {
    background-image: url("../img/footer-background.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
    padding: 40px;
}

.checkout-container {
    min-height: 55px;
}

@media (max-width: 769px) {
    .checkout-text {
        font-size: 10px;
    }
}

.filter-section {
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.filter-group {
    margin-bottom: 15px;
}

.doc-card {
    text-align: center;
    line-height: 1.75;
}

.doc-card img {
    width: 82px;
    height: 82px;
    margin: 10px auto;
}

.accordion-body {
    padding: 0;
}

.accordion-item {
    border: none;
}

.accordion-button {
    color: var(--dark);
    border-bottom: 1px solid #33312e80;
    padding: 1rem 0;
}

.accordion-button:not(.collapsed) {
    color: var(--dark);
    background-color: var(--light);
    box-shadow: none;
    border-bottom: none;
}

.accordion-button:focus {
    border-color: #33312e80;
    box-shadow: none;
}

.no-results {
    text-align: center;
    padding: 20px;
    color: var(--dark);
}

.form-check {
    margin-bottom: 8px;
}

.card-grid.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card-grid.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 769px) {

    .card-grid.grid-3,
    .card-grid.grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.card-list {
    display: flex;
    flex-direction: column;
}

.doc-card-list {
    transition: all 0.3s;
}

.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#clearFilters {
    position: absolute;
    right: 5px;
    top: 6px;
    cursor: pointer;
    cursor: pointer;
    font-size: 1.2rem;
    color: #6c757d;
    margin-right: 10px;
}

#uploadBtn {
    font-size: 14px;
    font-weight: 500;
    padding: 11px 16px;
}

#uploadDescription {
    background-color: rgb(185, 153, 67, 0.2);
    border-radius: 10px;
    padding: 10px;
    font-size: 10px;
    color: var(--dark-primary);
}

.btn-check:checked+.btn-outline-secondary,
.btn-check:active+.btn-outline-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
    color: var(--black);
    background-color: var(--light);
    border: none;
}

.view-mode {
    border: none;
    color: #BBBBBB;
}

.view-mode.active {
    color: var(--dark);
}

.view-mode:hover {
    color: var(--dark);
}

.view-mode i {
    font-size: 18px;
    margin: 3px;
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.items-per-page {
    font-size: 12px;
    font-weight: bold;
    color: #939393;
    margin: 0 5px;
    text-align: center;
}

.items-per-page.active,
.items-per-page:hover {
    color: var(--dark);
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 800px;
    }
}

.modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.upload-area {
    min-height: 400px;
    border: 2px dashed #ced4da;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 10px;
}

.upload-area.highlight {
    background-color: #e9ecef;
    border-color: #0d6efd;
}

.preview-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    gap: 20px;
    min-height: 400px;
    border: 2px dashed #ced4da;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-close {
    border: 1px solid var(--secondary);
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    right: 35px;
    top: 35px;
}

#mobile-filter {
    display: none;
    border-radius: 14px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    background-color: var(--light);
    padding: 15px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 16px;
    font-weight: 500;
    width: fit-content;
}

@media (max-width: 769px) {
    .filter-card {
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }

    #mobile-filter {
        display: flex;
    }

    .view-mode {
        display: none;
    }

    #filter-accordion {
        display: none;
        position: absolute;
        width: 100%;
        background-color: var(--light);
        z-index: 10000;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
        padding: 20px;
        border-top: none !important;
    }

    .document-sticky-column {
        overflow-y: visible;
    }
}

.page-title {
    @media (max-width: 769px) {
        font-size: 13px;
    }
}

.order-1 {
    order: 0 !important;
    @media (max-width: 769px) {
        order: 1 !important;
    }
}

.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;

    @media (max-width: 769px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 80px;
    }
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;

    @media (max-width: 769px) {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
    }
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--active-primary);
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;

    @media (max-width: 769px) {
        border-bottom: none;
        border-left: 2px solid var(--active-primary);
        height: 100%;
        width: auto;
        top: -40px;
        left: 20px;
    }
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--active-primary);
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;

    @media (max-width: 769px) {
        border-bottom: none;
        border-left: 2px solid var(--active-primary);
        height: 100%;
        width: auto;
        top: 40px;
        left: 20px;
    }
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--active-primary);
    margin-bottom: 6px;
    font-size: 24px;
    color: var(--light);

    @media (max-width: 769px) {
        flex-shrink: 0;
        margin-right: 10px;
        margin-bottom: 0;
    }
}

.stepper-item.active .step-counter {
    background-color: var(--active-primary);
}

.stepper-item.completed .step-counter {
    background-color: var(--primary);
}

.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--primary);
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;

    @media (max-width: 769px) {
        top: 40px;
        left: 20px;
        border-bottom: none;
        border-left: 2px solid var(--primary);
    }
}

.stepper-item.completed::before {
    @media (max-width: 769px) {
        top: -40px;
        border-left: 2px solid var(--primary);
    }
}

.stepper-item:first-child::before {
    content: none;
}

.stepper-item:last-child::after {
    content: none;
}

.step-name {
    font-weight: bold;
    text-align: center;

    @media (max-width: 769px) {
        margin-left: 10px;
        text-align: start;
    }
}

.step-description {
    font-size: 8px;
    width: 50%;
    margin: auto;
    text-align: center;

    @media (max-width: 769px) {
        margin-left: 10px;
        width: 100%;
        text-align: start;
        font-size: 10px;
    }
}

.stepper-item.active::after {
    border-bottom: 2px solid var(--active-primary);
    @media (max-width: 769px) {
        top: 40px;
        border-left: 2px solid var(--active-primary);
    }
}

.stepper-item.active::before {
    @media (max-width: 769px) {
        border-left: 2px solid var(--primary);
    }
}

.stepper-item:first-child {
    @media (max-width: 769px) {
        padding-top: 0;
    }
}

.stepper-item:last-child {
    @media (max-width: 769px) {
        padding-bottom: 0;
    }
}

.check-email-container {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed var(--primary);
    border-radius: 6px;
    color: var(--primary);
    text-align: center;
    padding: 30px 50px;

    @media (max-width: 769px) {
        font-size: 10px;
        color: var(--dark);
    }
}

.download-text {
    min-width: 300px;
}

#team {
    background-color: var(--second-primary);
}

#contact-form {
    background-color: var(--light);
}

#search-container img {
    height: 450px;
    object-fit: cover;

    @media (max-width: 769px) {
        height: 150px;
    }
}

#search-container .container {
    position: absolute;
    width: 100%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    background-color: var(--light);
    border-radius: 14px;
    left: 50%;
    padding: 40px;

    @media (max-width: 769px) {
        width: 90%;
        left: 40%;
        padding: 30px;
        top: 30%;
        margin: 10%;
    }
}

#search-container .container h2 {
    @media (max-width: 769px) {
        font-size: 18px;
    }
}

#search-container .container h6 {
    @media (max-width: 769px) {
        font-size: 14px;
    }
}

#search-container input {
    border: 1px solid var(--primary);
    padding: 15px;

    @media (max-width: 769px) {
        padding: 8px 15px;
    }
}

#search-black-container {
    width: 100%;
    height: 400px;

    @media (max-width: 769px) {
        height: 200px;
    }
}