@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');
@import url('https://fonts.googleapis.com/css?family=Comme:400,700');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-size: 17px;*/
    font-family: 'Comme';
    /*font-family:  Georgia, sans-serif;*/
    /*font-family: Arial, Helvetica, sans-serif;*/
    /*font-family: 'Times New Roman', serif;*/
}
body{
    min-height: 100vh;
    display: flex;
    max-height: 100%;
    align-items: center;
    color: #4B4453;
    justify-content: center;
    /*background: #4070f4;*/
    /*background: linear-gradient(90deg, #97ccec, #199797);*/
    /*background: linear-gradient(-135deg, #3DED97, #199797);*/
    /*background-image: url('images/footer.jpg');*/
    /*background: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%,rgba(255,255,255,0.7) 100%), url(images/Waterjets Register.png) repeat 0 0;*/
    background: url('../images/bg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;  
    background-size: cover;
    /*backface-visibility: hidden;*/
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 100%), url('../images/bg.jpg');
}
.wrapper{
    position: relative;
    max-width: 430px;
    width: 100%;
    background: white;
    padding: 34px;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.wrapper h2{
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}
.wrapper h2::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 28px;
    border-radius: 12px;
    background: #0b6fb6;
}
.wrapper form{
    margin-top: 30px;
}
.wrapper form .input-box{
    height: 52px;
    max-height: 100px;
    margin: 18px 0;
}
form .input-box input{
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    border: 1.5px solid #0b6fb6;
    border-bottom-width: 2.5px;
    border-radius: 6px;
    /*background-color: whitesmoke;*/
    transition: all 0.3s ease;
}

form .input-box textarea{
    /*height: 100%;*/
    height: 100px;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    border: 1.5px solid #0b6fb6;
    border-bottom-width: 2.5px;
    border-radius: 6px;
    /*background-color: whitesmoke;*/
    transition: all 0.3s ease;
}

form .input-box select{
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    border: 1.5px solid #0b6fb6;
    border-bottom-width: 2.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.input-box select:focus,
.input-box select:valid{
    border-color: #0b6fb6;
}

.input-box textarea:focus,
.input-box textarea:valid{
    border-color: #0b6fb6;
}

.input-box input:focus,
.input-box input:valid{
    border-color: #0b6fb6;
}
form .policy{
    display: flex;
    align-items: center;
}
form h3{
    color: #737373;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}

button {
    color: #fff;
    letter-spacing: 1px;
    border: none;
    /*background: linear-gradient(-135deg, #199797, #3DED97);*/
    background: #0b6fb6;
    cursor: pointer;
}

button:hover{
    /*background: linear-gradient(-135deg, #3DED97, #199797);*/
    background: #42a1d3;
}

.input-box.button input{
    color: #fff;
    letter-spacing: 1px;
    border: none;
    background: #0b6fb6;
    /*background: linear-gradient(-135deg, #199797, #3DED97);*/
    cursor: pointer;
}
.input-box.button input:hover{
    /*background: #;*/
    background: #42a1d3;
    /*color: whitesmoke;*/
    /*background: linear-gradient(-135deg, #3DED97, #199797);*/
}
form .text h3{
    color: #333;
    width: 100%;
    text-align: center;
}
form .text h3 a{
    color: #199797;
    text-decoration: none;
}
form .text h3 a:hover{
    text-decoration: underline;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #ffffff;
}

li {
    float: left;
    height: 50px;
}

header{
    width: 100%;
    position: absolute;
    top: 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

li a:hover {
    background-color: #0b6fb6;
}

.active{
    border-bottom: 3px solid #333;
}

h3{
    text-align: center;
    color: #0b6fb6;
    padding: 15px;
}

sup {
    color: red;
}

form .input-box1 input{
    height: 100%;
    width: 100%;
    outline: none;
    /*padding: 0 15px;*/
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    border: 1.5px solid #0b6fb6;
    border-bottom-width: 2.5px;
    border-radius: 6px;
    /*background-color: whitesmoke;*/
    transition: all 0.3s ease;
}