/* banner */
.desc-title {
    font-size: calc(1.22031vw + 19.78635px);
    font-weight: bold;
}

.desc-text {
    line-height: calc(-0.07143vw + 2.05714em);
    color: #454849;
    font-size: 18px;
}

.desc-text a {
    font-weight: bold;
    color: #DB8925;
}

.desc-text a:hover {
    color: #DB8925;
}

.submenu-menu {
    padding: 1vw 1rem;
}

.submenu-title {
    color: #fff !important;
    background-color: #101010;
    font-size: 20px;
    box-shadow: 0 5px 10px 0 #f4f4f4;
    padding: 3.25rem 1.5rem;
}

.submenu-title:hover {
    margin-left: -9px;
    transition: margin-left ease-in-out 0.35s;
    background: linear-gradient(to right, #F16F1B 0%, #DB8925 100%);
}

.active {
    margin-left: -9px;
    transition: margin-left ease-in-out 0.35s;
    background: linear-gradient(to right, #F16F1B 0%, #DB8925 100%);
}

/* form */
.forms {
    max-width: 800px;
    margin: 30px auto;
}

.forms-title {
    text-align: center;
    font-weight: bold;
    margin-top: 100px;
}

.form-input {
    width: 100%;
    font-size: 2rem;
    background-color: #f4f4f4;
    border: 1px solid #d1d9db;
    border-bottom: 3px solid #022E3D;
    outline: none;
    transition: padding 0.05s ease-out;
    height: 50px;
}

.form-input:focus {
    padding: 3rem 0.5rem !important;
    border-bottom-color: #F16F1B;
}

.form-input:hover {
    border-bottom-color: #F16F1B;
}
.form-select{
    padding: 12px;
    width: 100%;
    font-size: 2rem;
    background-color: #f4f4f4;
    border: 1px solid #d1d9db;
    border-bottom: 3px solid #022E3D;
    outline: none;
    transition: padding 0.05s ease-out;
    }
    .form-select:focus {
        padding: 1.5rem 0.5rem !important;
        border-bottom-color: #F16F1B;
    }
    
    .form-select:hover {
        border-bottom-color: #F16F1B;
    }
.area:focus {
    min-height: 200px;
}

.form-title {
    margin-bottom: 0.5rem;
    margin-top: 2.5rem;
    font-size: 2rem;
}
.form-title span{
    color: red;
}
.form-sub {
    border: none;
    width: 10%;
    height: 40px;
    color: #fff;
    background: #000;
    font-size: 18px;
}

.button-text {
    background: #000;
    color: #fff;
}


.forms-btn {
    margin-top: 30px;
}







@media(max-width:768px) {
    .submenu {
        display: none;
    }

    .forms {
        margin: 15px;
    }

    .forms-title {
        margin-top: 50px;
    }

    .form-sub {
        width: 50%;
        height: 40px;
    }

  
}