/* global css */
* {
    box-sizing: border-box;
}

body {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
    padding: 0;
    margin: 0;
    color: #000;
}

section,
div,
span,
p,
a,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h5,
label,
input {
    padding: 0;
    margin: 0;
    outline: none;
    box-shadow: none;
    border: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
.btn,
.btn:focus,
.btn:active,
button,
button:focus {
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: none;
}
.form-control{
    height: auto;
}
.form-control:focus{
    border-color:#ced4da;
    box-shadow: none;
}
li {
    list-style-type: none;
}

a,
a:hover {
    text-decoration: none;
}
h1{
    font-weight: 900;
}
/* global css */
/* header code */
header{
    /* background-color: rgb(14, 16, 24); */
}
header .logo{
    display: block;
    max-width: 140px;
    width: 100%;
    margin: 0 auto;
}
header .logo img{
    width: 100%;
}
/* header code */
/* hero code */
.error{
    display: none;
    color: red;
}
.hero-wrap .hero-image{

    width: 100%;
}
.hero-wrap .hero-form-wrap{
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.30);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.30);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.30);
}
.hero-wrap .hero-form{
    padding: 0 30px;
}
.hero-wrap .hero-form-wrap h2{
    color: #6D7D91;
    font-weight: bold;
    padding-bottom: 30px;
}
.hero-wrap .hero-form-wrap{
    padding: 25px;
    background-color: #F5F8FB;
}
.hero-wrap .form-group{
    text-align: left !important;
}
.hero-wrap .form-control{
    font-weight: 600;
    padding: 15px;
    color: #000;
}
.hero-wrap .form-control::placeholder{
    color: #000;
}
.form-control.invalid{
    border-color: red;
}
.hero-form-wrap .hf-btn{
    font-size: 18px;
    padding: 10px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    background-color: #05D28D;
}
/* hero code */
@media only screen and (max-width: 991px){
    .container{
        max-width: 95%;
    }
    .hero-wrap .hero-form {
        padding: 0;
    }
}
@media only screen and (max-width: 575px){
    .container{
        max-width: 95%;
    }
    .hero-wrap .hero-form {
        padding: 0;
    }
}