.center {
    position: absolute;
    top: 10%;
    width: 100%;
    text-align: center;
    font-size: 18px;
}
    body {
    margin: 0;
    padding: 0;
    height: 100%;
}
.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    overflow-x: hidden;
}
.top-image img
{
    width: 100%;
    height: 800px;
    display: block;
}
.bottom-image img {
    width: 100%;
    height: 460px;
    display: block;
    
}

.content {
    text-align: center;
    padding: 20px;
}

.logo{
    width: 150px;
    height: 150px;
}

.btn1{
    color: #FFF;
    background: linear-gradient(to right, #9a8224, rgb(204, 170, 76) 45.38%, #494325);
    border-color: #b08e00;
}

.btn2{
    color: #FFF;
    background: linear-gradient(90deg, #1CB5E0 0%, #000851 100%);
}
.top-section{
    margin: 0;
    padding: 0;
    background: url('/image/banner.jpg') no-repeat center center fixed;
    background-size: cover;
    height:700px;
    width: 100%;
    overflow-x: hidden;
}

textarea::placeholder {
    color: #A3B0B8 !important;
}

input::placeholder {
    color: #A3B0B8 !important;
}

/* Optional: Support for older browsers */
input:-ms-input-placeholder {
    color: #C99C33;
}

input::-ms-input-placeholder {
    color: #C99C33;
}

.placeholder-select {
    color: #A3B0B8;
}

.placeholder-select.valid {
    color: #000;
}

input.form-control{
    background: #F3F6F8; color: #000;
    padding:14px 20px;
}
select.form-control{
    padding:14px 20px;
}
select:invalid {
    color: #A3B0B8; /* grey placeholder color */
}
option {
    color: #000; /* all options black by default */
}
select option[value=""] {
    color: #A3B0B8; /* placeholder color */
}