@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "IBM Plex Sans", sans-serif;
}

/*------- style flow

// banner style
// form style

--------*/

/*---------- banner style start --------*/
.banner {
    background-image: url('../image/banner-two.webp');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    padding-bottom: 16px;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 7%);
    /* Black overlay with 50% opacity */
    z-index: 1;
}

@media (min-width:992px) {
    .banner {
        height: 60vh;
    }
}

.banner h1 {
    font-size: 32px;
    color: #EBEBEB;
    font-weight: 500;
    margin: 0;
    padding: 0;
    z-index: 2;
    position: relative;
}

@media (min-width:768px) {
    .banner h1 {
        font-size: 36px;
    }
}

@media (min-width:1200px) {
    .banner h1 {
        font-size: 55px;
    }
}
/*---------- banner style end --------*/

/*---------- form style start --------*/
.form-sec {
    background: #070707;
    padding: 36px 15px;
}

.form-sec .container {
    width: 100%;
    margin: auto;
}

@media (min-width:768px) {
    .form-sec .container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .form-sec .container {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .form-sec .container {
        max-width: 1140px;
    }
}

@media (min-width:1400px) {
    .form-sec .container {
        max-width: 1280px;
    }
}

.form-sec .form-heading {
    font-size: 24px;
    color: #EBEBEB;
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
}

@media (max-width:768px) {
    .form-sec .form-heading {
        font-size: 18px;
    }
}

.form-sec form {
    /*border: 1px solid #552e20;*/
    border:1px solid #FF6600;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width:768px) {
    .form-sec form {
        padding: 16px;
        gap: 16px;
    }
}

.form-sec form .form-input {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    gap: 12px;
}

@media (min-width:768px) {
    .form-sec form .form-input {
        display: flex;
        width: 60%;
        flex-direction: row;
    }
}

/* @media (min-width:1200px) {
    .form-sec form .form-input{
        display: flex;
        width: 60%;
        flex-direction: row;
    }
} */
.form-sec form .form-input label {
    color: #EBEBEB;
    width: 20%;
    font-size: 18px;
    font-weight: 400;
}

@media (max-width:768px) {
    .form-sec form .form-input label {
        width: 100%;
        font-size: 16px;
    }
}

.form-sec form .form-input label sup {
    color: #552e20;
}

.form-sec form .form-input input,
.form-sec form .form-input select{
    width: 100%;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid #552e20;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    color: #737373;
}

@media (min-width:768px) {
    .form-sec form .form-input input,
.form-sec form .form-input select {
        width: 80%;
        font-size: 16px;
    }
}

.form-sec form .form-input input:focus,
.form-sec form .form-input select:focus{
    outline: none;
}

.form-sec form .form-input button {
    border: 1px solid #552e20;
    font-size: 16px;
    color: #EBEBEB;
    background: #1e1c1d;
    border-radius: 10px;
    padding: 12px 24px;
    margin: auto;
    cursor: pointer;
    font-weight:300;
    text-transform: capitalize;
}
/*---------- form style end --------*/