body{
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.banner {
    position: relative;
    width: 100%;
    height: 45.5rem;
    overflow: hidden;
}

.banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar {
    z-index: 1;
    position: fixed;
    top: 0;
    left: -20.625rem;
    width: 20.625rem;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    box-sizing: border-box;
    transition: left 0.3s ease;
}

.sidebar a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.625rem;
    font-size: 1.0625rem;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.sidebar-toggle {
    position: fixed;
    top: 1.25rem;
    left: 1.25rem;
    background-color: transparent;
    border: none;
    padding: 0.625rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3125rem;
}


.bar {
    width: 1.875rem;
    height: 0.1875rem;
    background-color: #fff;
    border-radius: 0.125rem;
}

.sidebar-open {
    left: 0;
}

.text-overlay {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    padding: 1.25rem;
    border-radius: 0.625rem;
    max-width: 80%;
}

.text-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.2;
}
.text2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-right: 3.75rem;
}
.text-overlay p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    margin-right: 21.875rem;
    margin-top: 0.625rem;
}

.text-area {
    position: relative;
    width: 100vw;
    height: 37.5rem;
    background-color: #868b93 !important;    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
.text-area h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
}

.text-area h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    margin-top: 0.03125rem;
}


.text-area p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    margin-top: 1rem;
    max-width: 53%;
}

.companies {
    text-align: center;
    position: relative;
    margin-top: 4.375rem;
}

.companies h1 {
    font-family: 'Lora', serif;
    font-size: 2.3rem;
    color: black;
}

.companies p {
    font-family: 'Noto Sans Hanunoo', sans-serif;
    font-size: 1.2rem;
    margin: 0;
    color: black;
}
.card {
    overflow: hidden;
    position: relative;
    height: 21.875rem;
}

.card-img-top {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.60);
    color: #fff;
    padding: 0.625rem;
    box-sizing: border-box;
}

.card-body h5 {
    margin: 0;
}
.send {
    background-color: #e9e9e9;
}

.send-text {
    max-width: 50%;
    padding-top: 9.375rem;
    padding-left: 3.0625rem !important;
}

.send-text h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    font-family: 'Baskervville SC', serif;
}

.send-text p {
    font-size: 1rem;
    margin-bottom: 0.9375rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.send-text .btn {
    background-color: #000000;
    color: #fff;
    border: none;
    padding: 0.375rem 1.1875rem;
    text-transform: uppercase;
    text-decoration: none;
}

.send-text .btn:hover {
    background-color: #3e3d3d;
}

.send-img {
    flex: 1;
    overflow: hidden;
}

.send-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bio {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.25rem;
    background-color: #d0d7e2;
    height: 43.75rem;
}

.bio-img {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36.875rem;
}

.bio-img img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 1.25rem;
    border: solid 1.1875rem white;
}

.bio-text {
    flex: 1;
    margin-left: 1.25rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.125rem;
    color: #000;
}

.bio-text p {
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.bio-text h1 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: black;
}

.price {
    text-align: center;
}

.price h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #000;
    margin-bottom: 1.25rem;
}
.divider {
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
    margin: 1.25rem 0;
}


.form-area {
    height: 40.625rem;
    background-color: #d0d7e2;
}

.text-center {
    margin-top: 6.875rem;
}

.text-center p {
    font-size: 1rem;
    margin-bottom: 0.9375rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    float: left;
    margin-left: 14.375rem;
}

.text-center h1 {
    font-family: 'Playfair Display', serif;
}

.text-center h2 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    margin-top: 4.375rem;
    float: left;
    margin-left: 14.375rem;
}

.contact-form {
    background-color: #d0d7e2;
    margin-top: 6.875rem;
}

.contact-form h1 {
    font-family: 'Playfair Display', serif;
}

.contact-form .form-group {
    margin-bottom: 0.9375rem;
}

.contact-form .form-control {
    background-color: #909cac;
    color: #000;
    border: 0.0625rem solid #ccc;
    padding: 0.625rem;
    border-radius: 0.25rem;
    width: 100%;
    max-width: 25rem;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #333;
    color: #ffffff;
    border: none;
    padding: 0.5625rem 1rem;
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: 0.625rem;
    margin-top: 0.625rem;
    max-width: 25rem;
}

.contact-form button:hover {
    background-color: black;
}
