* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    width: 100%;
  height: 100%;
  background: #000;
  position: relative;
}

body::after {
  content: "";
  background: url("/images/background.jpg") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  opacity: 0.6;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}

.top {
    width: 100%;
    height: 100px;
    background-color: #fff;
    border-bottom: 3px solid #122772;
    margin-bottom: 80px;
    opacity: 0.9;
}

.container {
    max-width: 1000px;
    margin: auto;
}

.top-left {
    float: left;
    line-height: 100px;
    margin-left: 15px;
}

.top-left img {
    margin-top: 10px;
}

.top-right {
    float: right;
    line-height: 100px;
    margin-right: 15px;
}

.top-right h2 {
    font-size: 26px;
    font-style: italic;
    color: #122772;
    text-transform: uppercase;
    
}

.container2 {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    margin-bottom: 80px;
}

.box-left {
    width: 45%;
    float: left;
    background-color: #fff;
    padding: 20px;
    border-bottom: 3px solid #122772;
    opacity: 0.9;
    margin-left: 20px;
    margin-right: 20px;
}

.box-left p {
    font-size: 18px;
    margin-top: 20px;
}

.box-left h2 {
    font-size: 24px;
    color: #122772;
}

.box-right {
    width: 45%;
    float: right;
    background-color: #fff;
    padding: 20px;
    border-bottom: 3px solid #122772;
    opacity: 0.9;
    margin-left: 20px;
    margin-right: 20px;
}

@media screen and (max-width:700px){
    .container2 {
        display: block;
        width: 90%;
        margin: auto;
    }
    .box-left {
        width: 100%;
        float: none;
        margin: auto;
    }
    .box-right {
        width: 100%;
        float: none;
        margin: auto;
        margin-top: 30px;
    }
    footer
    {
        margin-top: 80px;
    }
}

.contact-section{
  
}

.contact-section h2{
  font-size: 24px;
  color: #122772;
  margin-bottom: 20px;
}

.name,.email,.message{
  background: #F9FAFD;
  border-radius: 3px;
  border: none;
  outline: none;
  border-bottom: 3px solid #122772;
  color: #444;
  padding: 10px 7px;
  font-size: 14px;
  margin-bottom: 20px;
}

.name{
  width: 100%;
}

.email{
  width: 100%;
}

.message{
  width: 100%;
  height: 150px;
}


.contact-section button{
  background: #122772;
  color: #fff;
  border: 1px solid #122772;
  padding: 12px 40px;
  text-transform: uppercase;
  font-size: 12px;
  transition: 0.4s linear;
  cursor: pointer;
  letter-spacing: 1px;
}

.contact-section button:hover{
  background-color: #000;
  border: 1px solid #000;
}

a[href^="tel"] {
  color: inherit;
}
a[href^="mailto"] {
  color: inherit;
}

.area {
    
}

@media screen and (max-width:1000px){

  .name,.email,.message{
    width: 100%;
    float: left;
  }
}

footer {
    background-color: #122772;
    width: 100%;
    text-align: center;
    padding: 40px;
    color: #fff;
    opacity: 0.9;
}