* {
    margin:0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'PT Sans', 'Arial', sans-serif;
  display: flex;
  flex-direction: column; 
}

.base-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 940px;
}

.header {
  background: #0a7abb;
}

.header-content {  
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
}


.header-content .header-text {
  width: 60%;
}

.header-text .header-text_main-text {
  color: #fff;
  font-size: 50pt;
  font-weight: 700;
  line-height: 1px;
  text-align: left;
  margin-top: 55px;
}

.header-content .header-text_add-text {
  color: #fff;
  font-size: 25pt;
  font-weight: 500;
  line-height: 1px;
  margin-top: 60px;
}

.content-wrapper {
  background: #ebecec;
  flex: 1 0 auto;
}

.content {
  background: #fff;
}

.services {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

.services .service-item {
  max-width: 46.68085%;
  min-height: 44.68085%;
  border: 1px #ccc solid;  
  margin-right: 10px;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}

.service-item_logo {  
  min-width: 100%;  
}

.service-item .service-item_logo {
  filter: opacity(50%);
  -webkit-filter: opacity(50%);
}

.service-item .service-item_logo:hover {
  filter: opacity(100%);
  -webkit-filter: opacity(100%);
  cursor: pointer;
}



.service-item-info {
    color: #fff;
    background: #000;
    position: absolute; 
    bottom: 0;
    min-height: 140px;
    width: 100%;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.service-item-info .service-item_title {
  padding-left: 10px;
}

.service-item-info .service-item_description {
  padding-left: 10px;
}


.service-item-info .service-controls {
  text-align: center;
  padding: 20px; 

}

.footer {
  background: #1d1d1d;
  flex-shrink: 0;
}

.footer-wrapper {
  background: #1d1d1d; 
  color: #fff;
  text-align: center;  
}

.footer-copyright {
  padding: 10px;
}

.btn {
  background: #3498db;
  background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  background-image: -o-linear-gradient(top, #3498db, #2980b9);
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  -webkit-border-radius: 5;
  -moz-border-radius: 5;
  border-radius: 5px;
  font-family: 'PT Sans', 'Arial', sans-serif;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 40px 10px 40px;
  text-decoration: none;
}

.btn:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}

@media screen and (max-width: 1000px) {
  
  .header-content {
    justify-content: center;
  }

  .header-content .header-text {
    display: none;
  }

  .services {
    flex-direction: column;
    justify-content: center;
    padding: 0; 
  }

  .services .service-item {
    min-width: 100%;
    margin-right: 30px;
  }

}

