html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
}


:focus {
    outline: 0;
}
body {
    line-height: 1;
    color: #707070;
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    text-shadow: 0;
}
ol,
ul {
    list-style: none;
}


table {
    border-collapse: separate;
    border-spacing: 0;
}
input,
textarea,
select {
    width: 100%;
}
caption,
th,
td {
    text-align: left;
    font-weight: normal;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}
blockquote,
q {
    quotes: "" "";
}
a:hover,
a:visited,
a {
    text-decoration: none;
}
p {
    line-height: 1.2;
}
h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: #2b96cc;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}
.btn {
    border-radius: 0;
}


#header {
    background: #fff;
    min-height: 50px;
}
.navbar-fixed-top {
    border: 0;
}
.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.9s ease 0s;
    -webkit-transition: all 0.9s ease 0s;
    -moz-transition: all 0.9s ease 0s;
    -ms-transition: all 0.9s ease 0s;
    -o-transition: all 0.9s ease 0s;
    height: 80px;
}

#logo a img {
    padding: 10px 0;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
ul.nav li.dropdown:hover ul.dropdown-menu {
    display: block;
}
.navbar {
    margin-bottom: 0;
}
.navbar-default {
    border: 0;
    background: #fff;
}
.navbar-nav>li>a {
    padding-top: 29px;
    padding-bottom: 29px;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.navbar-default .navbar-nav>li>a {
    color: #707070;
    text-transform: uppercase;
    font-size: 14px;
}
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a.active {
    color: #fff;
    background-color: #2B96CC;
}
.dropdown-menu>li>a {
    color: #707070;
    font-size: 14px;
    text-transform: capitalize;
}
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    color: #2b96cc;
}
.navbar-default .navbar-toggle {
    border-color: #2b96cc;
}
.navbar-toggle .icon-bar {
    width: 27px;
    height: 3px;
    border-radius: 0px;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #fff;
}


.background-image-dva {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    /*top: 0;*/
    z-index: 10;
}

.contact-body-size {
    text-align: center;
}

.background-image-tri {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 10;
    opacity: 0.4;
}

.contact-body-div {
    padding: 310px;

}



@import url('https://fonts.googleapis.com/css?family=Roboto');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: 'Roboto', sans-serif;
}

body{
  background: url('bg.jpg') no-repeat top center;
  background-size: cover;
  height: 100vh;
}

.wrapper{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 550px;
  background: rgba(0,0,0,0.8);
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.wrapper .title h1{
  color: #c5ecfd;
  text-align: center;
  margin-bottom: 25px;
}

.contact-form{
  display: flex;
}

.input-fields{
  display: flex;
  flex-direction: column;
  margin-right: 4%;
}

.input-fields,
.msg{
  width: 48%;
}

.input-fields .input,
.msg textarea{
  margin: 10px 0;
  background: transparent;
  border: 0px;
  border-bottom: 2px solid #c5ecfd;
  padding: 10px;
  color: #c5ecfd;
  width: 100%;
}

.msg textarea{
  height: 212px;
}

::-webkit-input-placeholder {
  color: #c5ecfd;
}
::-moz-placeholder {
  color: #c5ecfd;
}
:-ms-input-placeholder {
  color: #c5ecfd;
}

.btn {
    background: #39b7dd;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
}

@media screen and (max-width: 600px){
  .contact-form{
    flex-direction: column;
  }
  .msg textarea{
    height: 80px;
  }
  .input-fields,
  .msg{
    width: 100%;
  }
}

.contact-h1-size{
    font-size: 30px;
}

.contact-body-text{
    text-align: center;
    font-size: 30px;
   /* margin-left: auto;
    margin-right: auto;
    width: 70em*/
    letter-spacing: 1.5px;
    margin-left: auto;
    margin-right: auto;
    width: 90%
}