/*=

Top Section

=*/
body,
html {
  margin:0;
  height: 100%;
}
.container {
    width: 100%;
    height:100%;
    margin:0;

    background-repeat: no-repeat;
    background-repeat:no-repeat;
/*=	background-image: url(https://api.vectahosting.eu/bg-2); =*/
    background-image: url(https://cdn.vectahosting.eu/img/taylor-vick-M5tzZtFCOfs-unsplash-nrz-c.jpg);
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position:center;
    position: relative;
    z-index: 2;
}
.container:before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: -1;
}
.container:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.51) 10%, rgba(0, 0, 0, 0.17) 30%);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.51) 10%, rgba(0, 0, 0, 0.17) 30%);
    background-image: linear-gradient(top, rgba(0, 0, 0, 0.51) 10%, rgba(0, 0, 0, 0.17) 30%);
}
.logo-wrapper {
    text-align: center;
}
.logo-wrapper img {
    max-height: 120px;
    margin: 40px 0px;
}
/*=

Services Section

=*/
.services-content {
    max-width: 1140px;
    width:100%;
    margin: auto;
    transition: max-width 0.5s ease-in-out, width 0.5s ease-in-out;
}
.service {
    flex-grow: 2;
    text-align: center;
    position: relative;
}
.service-icon {
    max-width: 70px;
    margin-bottom: -41px;
}
.service h2 {
   color:#fff;
   font-family: 'Aldrich', sans-serif;
   font-size:36px;
   padding: 30px;
   font-weight: 300;
}
.service:nth-child(2) h2 {
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
}
.service a {
    color: #fff;
    background-color: #f7941d;
    padding: 10px 23px;
    border-radius: 5px;
    text-decoration: none;
    transition:color 0.3s,background-color 0.3s;
    font-family: 'Roboto', sans-serif;
}
.service a:hover {
    color:#000;
    background-color: #e0871e;
}
/*=

Footer Section

=*/
.footer {
    position: absolute;
    bottom: 30px;
    text-align:center;
    width:100%;
}
.footer h3 {
    color: #fff;
    font-family: 'Aldrich', sans-serif;
    font-size:14px;
    margin-bottom: 20px;
}
.footer h4 {
    color: #fff;
    font-family: 'Aldrich', sans-serif;
    font-size:14px;
    margin-top: 20px;
}
.footer img {
    margin-right: 20px;
}
/*=

Media Queries

=*/
@media screen and (max-width:768px){
  .service {
      width:100%;
      margin-bottom:30px;
  }
  .service-icon {
    display:block;
    margin:auto;
  }
  .service a {
    display: -webkit-inline-box;
  }
  .service h2 {
      margin:0px;
  }
  .container {
    background-position: 45%;
    height:auto;
  }
  body .services-content {
    width: 100%;
  }
  .service:nth-child(2) h2 {
      border:none;
  }
  .footer {
    position:relative;
    margin-top:110px;
  }
  .logo-wrapper img {
    max-width: 60%;
  }
  body {
      background-position: 50%;
      display:block;
  }
  .service a {
    font-size: 14px;
  }
  /*
  .service:nth-child(2) {
    margin: 30px auto;
    border-bottom: 2px solid #fff;
    border-top: 2px solid #fff;
    padding: 30px;
    max-width: 50%;
  }
  */
  .footer img {
    margin-top: 10px;
  }
}
@media screen and (min-width:769px){
  .services-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
  }
}
@media screen and (max-width:1140px){
  .services-content {
    max-width:900px;
  }
}
@media screen and (max-width:900px){
  .services-content {
    max-width:700px;
  }
}
