@charset "utf-8";
/* Container */
.services-container {
    width: 1700px;
    height: 1200px;
    padding-top: 90px;
    padding-right: 80px;
    padding-left: 80px;
    padding-bottom: 80px;
    box-sizing: border-box;
    margin-left: 70px;
}

/* Service Box */
.service-box {
  width: 1600px;              
  height: 1050px;           
  float: left;             
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #4D8EA2;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  color: #fff;
  transition: transform 0.3s ease;
  margin-right: 10px;
  margin-bottom: 20px;
}


/* Thumbnail images */
.service-box img {
  width: 707px;
  height: 1000px;        /* portrait, bigger */
  border-radius: 20px;
  object-fit: cover;
  margin-right: 20px;
  margin-left: 25px;
}

/* Service info */
.service-info {
  flex: 1;
}

.service-info h3 {
    font-size: 30px;
    margin-bottom: 10px;
    font-family: montserrat;
    font-style: normal;
    font-weight: 400;
}

.service-info p {
    font-size: 26px;
    color: #FFF;
    font-family: montserrat;
    font-style: normal;
    font-weight: 300;
    line-height: 38px;
}

.service-box.flyer-service .service-info h3 {
}
.service-box.flyer-service .service-info h3 {
    font-family: montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    padding-top: 1px;
    margin-top: -17px;
}
