/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 13 2025 | 22:10:40 */
//fix

.sgi-form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
	flex-wrap: wrap
}

.sgi-form-left, .sgi-form-right{
	width: calc(50% - 10px);
}

.sgi-form-field input {
    min-height: 43px;
    border: 1px solid #D2D2D2;
    outline: none;
    border-radius: 0px;
}

.sgi-form-field textarea {
    max-height: 122px;
    border: 1px solid #d2d2d2;
    border-radius: 0;
}

.sgi-form-field label {
    font-size: 14px;
    font-weight: 700;
    color: #888B8D;
    font-family: DIN;
    text-transform: uppercase;
    display: block;
    margin-top: 14px;
    margin-bottom: 8px;
}

.sgi-form-field br {
    display: none;
}

.sgi-form-caption{
	font-size: 20px ;
	line-height: 1.3em ;
	font-family: DIN;
	font-weight: 700 ;
	text-transform: uppercase ;
}

.sgi-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.sgi-form-submit input {
    font-size: 18px;
    font-weight: 700;
    font-family: DIN;
    text-transform: uppercase;
    padding: 20px 30px;
    background: #C20E1A;
    color: #fff;
    border-radius: 0;
    border: none;
}

.sgi-button-wrap {
    width: 138.67px;
    position: relative;
}

.sgi-button-wrap input{
	position: relative ;
	z-index: 2; 
	transition: all 0.3s ease ;
}

.sgi-button-wrap input:hover{
	background: #860000;
}

/*.sgi-button-wrap::before{
	content: "" ;
	position: absolute ;
	width: 0% ;
	height: 100% ;
	left: 0 ;
	top: 0 ;
	background: #860000 ;
	z-index:1;
	transition: all 0.3s ease ;
}

.sgi-button-wrap:hover::before{
	width: 100% ;
}*/


/*Mobile Responsive form*/
@media(max-width: 767px ){
	.sgi-form {
    flex-direction: column;
}
	
	.sgi-form-left, .sgi-form-right {
    width: 100%;
}
}