@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Oswald:wght@200..700&display=swap');

:root {
    --main-color: #e47974;
    --drk-text: #293745;
} 

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #254D70;
}

.bottom-border {
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}


.fa-brands {
    font-weight: 400;
    font-size: 32px;
    margin: 0px 2px 0px 2px;
}

.fa-solid, .fas {
    font-weight: 900;
    font-size: 28px;
}

.full-height {
    height: 100vh; /* Set height to 100% of viewport height */
}

.image-container {
    padding-bottom: 0;
    margin-bottom: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.text-container {
    height: 100%;
}

.card {
    border-color: transparent;
}

.card-text {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Replace <weight> with the desired value */
    font-style: normal;
    color: var(--drk-text);
}

.card-title {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Replace <weight> with the desired value */
    font-style: normal;
}

.title {
    padding-bottom: 20px;
    color: var(--main-color);
}


h4 {
    margin: 0;
    padding: 0;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Replace <weight> with the desired value */
    font-style: normal;
    color: var(--main-color);
}


p {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Replace <weight> with the desired value */
    font-style: normal;
}

p.foot-text {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Replace <weight> with the desired value */
    font-style: normal;
    color: lightgray;
}

.form-control {
    display: block;
    width: 50%;
    padding: 4px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 0;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 2px solid var(--main-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

form.form {
    padding-top: 20px;
    padding-bottom: 40px
}

.btn.btn-outline-success {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
    padding-top: 0;
    padding-bottom: 0;
}

.btn.btn-outline-success:hover {
    background-color: var(--drk-text);
    color: #fff;
    border-color: var(--main-color);
}

li.nav-item::marker {
    display: none;
    color: transparent;
}

li.nav-item {
    padding: 0px 8px 0px 8px;
}

@media (max-width: 767.98px) {
    .col-sm-12 {
        flex-basis: 100% !important;
        max-width: 100% !important;
    }

    .full-height {
        height: auto; /* Revert height to auto to allow content to fit without scrolling */
    }

    .row.full-height {
        display: flex;
        flex-direction: column;
    }

    .col-md-6.col-sm-12 {
        flex: 1;
    }
}