* {
    box-sizing: border-box;
}

.rc-anchor {
    border-style: solid !important;
    border-color:rgba(170, 121, 3, 1) !important;
    border-width: 2px !important;
}
.g-recaptcha-response {
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    position: absolute !important;
    top: 0px !important;
    

}
.formMainContainer{
	width: 100%;
	height: auto;
	background: red;
}
.form {
    display:block;
    height:auto;
    width:100%;
    margin-left:auto;
    margin-right:auto;
    margin-top:0%;
}
.form .form-row {
    margin-bottom:5px;
    float:left;
   

}
.bigField{
	width: 100%;
}
.smallField {
	width: 45%;
	float: left;
}
.topicMessage, .companyName{
    width:100% !important;
}
.form .form-row:last-child {
    margin-bottom: 0;
}
.form input[type=text],
.form input[type=email],
.form input [type=tel],
.form textarea,
.form .checkbox-cnt .state {
    box-shadow:inset 0 1px 5px rgba(0,0,0,0.07);
}


.form input[type=text], 
.form input[type=email],
.form input [type=tel],
.form textarea {
    display:block;
    border-radius:10px !important;
    font-family: 'Arimo', sans-serif !important;
    font-size:15px !important;
    padding-top:5px !important;
    padding-bottom:5px !important;
    padding-left: 5px !important;
    border: 4px solid #fff !important;
    display: block !important;
    width: 100% ;
    color: #000 !important;
    background: #dedede !important;
}
.topicInput{
    padding-top:9px !important;
    padding-bottom:9px !important;
}
.form input[type=text]:focus,
.form input[type=email]:focus,
.form input[type=tel]:focus,
.form textarea:focus {
    border-color:rgba(217,155,44,1) !important;
    box-shadow: 0px 5px 31px -5px rgba(217,155,44,0.8) !important;
    outline:none !important;
    transition:0.3s !important;
}
.form-row:hover label{
    color:rgba(217,155,44,1) !important;
}
.message{
    width: 100% !important;
}
.form textarea {
    height:210px;
}
.form label {
    display: block;
    font-size:18px;
    font-weight: 500;
    margin-bottom:0px;
    font-family: 'Roboto', sans-serif;
    color:#464646;
}
.form label:first-letter{
    font-size:20px;
}
.form .submit-btn {
    width:285px;
    font-family:'Roboto', sans-serif !important;
    padding:2px 30px ;
    background: rgba(170, 121, 3, 0.4) !important;
    border-style:solid !important;
    border-radius:5px !important;
    color:#fff !important;
    font-size:25px !important;
    font-weight: bold !important;
    transition: 0.3s !important;
    cursor: pointer !important;
    margin-left: auto;
    margin-right:1px;
}
.form .submit-btn:hover {
    background: #ffffff;
    border-color:rgba(170, 121, 3, 0.4);
    border-style:solid;
    border-radius: 20px;
    color:rgba(170, 121, 3, 1);
    box-shadow: 0px 15px 31px -5px rgba(170, 121, 3, 0.4);
}
.checkbox-cnt span {
    font-family:'Roboto', sans-serif;
    color: #ffffff;
    font-size:20px;
    margin-left:auto;
    margin-right:1px;
}
.form .checkbox-cnt {
    padding-left:2vw;
    position: relative;
    font-weight: normal;
    font-size:20px;
    line-height: 25px;
    color:rgba(217,155,44,1);
    cursor: pointer;
}
.form .checkbox-cnt .state {
    width:30px;
    height: 30px;
    display: block;
    position: absolute;
    left:0;
    top:0;
    border:2px solid rgba(176,120,23,1);
    border-radius:0.2vw;
}
.form .checkbox-cnt .state:before {
    width:18px;
    height: 18px;
    border-radius:0.2vw;
    background: rgba(217,155,44,1);
    display: block;
    position: absolute;
    left:50%;
    top:50%;
    content:'';
    transform:translate(-50%, -50%) scale(1);
    opacity:0;
}
.form .checkbox-cnt input:checked ~ .state:before {
    animation: checkboxShowAnim 0.5s 1;
    opacity: 1;
}
.form .checkbox-cnt input {
    position:absolute;
    top:0; left:0;
    width:2vw;
    height: 2vw;
    z-index: 2;
    cursor:pointer;
    padding:0;
    margin:0;
    opacity: 0;
}
.form input[type=text].error,
.form input[type=email].error,
 .form input[type=tel].error,
.form textarea.error,
.form .checkbox-cnt input.error ~ .state {
    border-color:#E01546;
}
.field-error {
    color:#E01546;
    padding:0.5vw 0;
    font-size:0.8vw;
}
@keyframes checkboxShowAnim {
    0%  { border-radius:50%; transform:translate(-50%, -50%) scale(0.2); }
    50% { transform:translate(-50%, -50%) scale(1.2); }
    100% { transform:translate(-50%, -50%) scale(1); }
}

.element-is-busy {
    position: relative;
    pointer-events: none;
    opacity:0.5;
}
.element-is-busy::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-right-color: rgba(0,0,0,0.7);
    transform: translate(-50%, -50%) rotate(0deg);
    content:'';
    animation: rotateSingleLoading 0.3s infinite linear;
    z-index: 100;
}
@keyframes rotateSingleLoading {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.form .send-error {
    display:inline-block;
    font-family: 'Roboto', sans-serif;
    font-size:20px;
    padding:1vw 1.5vw;
    color:rgba(240,2,0,1);
}
.form-send-success {
    font-family:'Roboto', sans-serif;
    text-align:center;
    font-size:23px;
    font-weight:bold;
    color:rgba(217,155,44,1);
    margin-left:auto;
    margin-right:auto;
    margin-top:0%;
    max-width:500px;
    border-style:solid;
    border-radius:20px;
    border-color:rgba(217,155,44,1);
}
.form-send-success strong {
    display:block;
    margin-bottom:0.5vw;
}
.form-send-success span {
    font-size:25px;
    color:rgba(217,155,44,1);
    font-weight:normal;
    display: block;
}
@media screen and (max-width:1200px) {
    .form .form-row{
      width:100%;
    }
    .form .checkbox-cnt {
        padding-left: 4vw;
     }
 }
  @media screen and (max-width:991px) {
    .form .form-row{
      width:100%;
      margin-right: 15px;
    }
 }
 @media screen and (max-width:767px){
    .form .submit-btn {
        margin-top:50px;
    }
    .form .checkbox-cnt{
        padding-left:10vw;
    }
 }