@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;display=swap");

:root {
    --primary-solid: #9b825e;
    --bg-gray-color--: #f0f2f4;
    --bg-blue-color--: #001026;
    --border-blue--: #1a283c;
    --border-gray--: #e5e5e5;
}

body {
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    font-family: 'Jost';
    color: black;
}

li {
    list-style: none;
}

.all-margin {
    margin: 135px 0;
}

.top-margin {
    margin-top: 135px;
}

.bottom-margin {
    margin-bottom: 135px;
}

.all-padding {
    padding: 135px 0;
}

.top-padding {
    padding-top: 135px;
}

.bottom-padding {
    padding-bottom: 135px;
}

.color {
    color: var(--primary-solid) !important;
}

.bg-color {
    background-color: var(--primary-solid);
}

.bg-gray {
    background-color: var(--bg-gray-color--);
}

.bg-blue {
    background-color: var(--bg-blue-color--);
}

img {
    max-width: 100%;
    object-fit: cover;
}

.container {
    max-width: 1200px !important;
}

.header {
    position: sticky;
    top: 0;
    z-index: 9;
    background-color: var(--bg-gray-color--);
}

.navbar a {
    font-size: 13px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.home h2 {
    margin-bottom: 0px;
    text-align: center;
    font-size: 3rem;
    max-width: 25ch;
}

.home p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
}

.about h2 {
    margin-bottom: 0px;
}

.about p {
    color: white;
    font-size: 1.25rem;
    line-height: 2rem;
}