body {
  font-family: 'Titillium Web';
}

.wrap {
  display: flex;
  flex-wrap: wrap;
  /*border: 3px solid orange;*/
  padding: 20px;
}

.content-left, .content-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service {
  display: flex;
  align-items: stretch;
  margin-bottom: 15px;
  flex-direction: row;
}

@media (max-width: 479px) {
  .service {
    display: flex;
    align-items: stretch;
    margin-bottom: 15px;
    flex-direction: column;
  }
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 80px;
}

.service-icon img {
  max-height: 100%;
  width: auto;
  margin-right: 20px;
}

.service-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-evenly;
}

@media (max-width: 768px) {
  .wrap {
    flex-direction: column;
  }
}

.heading1-homepage {
  color: #051687;
  font-weight: bold;
}

.container.home-container {
  /*min-height: 60vh;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  width: 100%;
  padding-right: 10%;
  padding-left: 10%;
  padding-top:30px;
  padding-bottom:20px;
}

.home-link {
  font-size: 26px;
  color: #051687;
}

@media (max-width: 767px) {
  .container.home-container {
    padding: 0 5%;
  }
}

@media (max-width: 992px) {
  .content-left, .content-right {
    margin-top: 40px;
  }
}

