.page_wrap {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 50px;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.logo {
    width: 200px;
    height: auto;
}

.logo img {
    width: 100%;
}

.flex-container {
    display: flex;
}

.flex-space-btween {

}

.nav-wrap {
    width: calc(100% - 250px);
}

.nav-wrap ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-wrap ul li {
    margin: 0 10px;
}

.nav-wrap ul li a {
    color: #333;
    text-decoration: none;
    padding: 0 10px;
    border: solid 1px transparent;
    height: 40px;
    line-height: 40px;
    display: block;
    border-radius: 5px;
    transition: all 0.3 linear;
}

.nav-wrap ul li a:hover {
    border: solid 1px #ddd;
    background-color: #eee;
    padding: 0 10px;
}

.header_section {
    width: 100%;
    min-height: 90vh;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 140px 0 50px;
    margin-top: 50px;
    background: url(../images/valuation-bg.jpeg) no-repeat center center;
}

.container {
    height: 100%;
    position: relative;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_content {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 450px;
    padding: 40px;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 10px;
}

.content-left {
    width: 50%;
}

.content-left h1 {
    font-size: 2.2rem;
}

.content-right {
    width: 45%;
}


.form_wrap {
    width: 100%;
    height: auto;
}

.form_section {
    width: 100%;
    padding: 50px 0;
}

.content_section {
    width: 100%;
    padding-bottom: 50px;
}

.list-itm-wrap {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.list-itm {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


.text-itm:nth-of-type(even) {
    background-color: #eee;
}

.list-itm-title {
    width: 25%;
}

.p50 {
    padding: 50px 0;
}



