/* banner */
#banner {
    width: 100%;
    height: 550px;
    background-color: rgb(34, 40, 52);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 200px;
}

#banner h1 {
    font-size: 36px;
    color: white;
    margin: 0 0 20px;
}

#banner p {
    font-size: 18px;
    color: #788498;
    margin: 0 0 60px;
}

#banner a {
    display: inline-block;
    width: 100px;
    height: 34px;
    color: white;
    background-color: rgb(87, 182, 141);
    text-align: center;
    line-height: 34px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

/* sections */
.section-title {
    font-size: 36px;
    color: #2b333e;
    text-align: center;
    margin: 80px 0 0;
}

.section-title > .dash-line {
    height: 2px;
    width: 80px;
    background-color: rgb(199, 205, 208);
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px;
}

.section-subtitle {
    font-size: 14px;
    color: #b6c1cd;
    margin: 10px 0 16px;
    display: inline-block;
}

.section-description {
    font-size: 14px;
    color: #9ca4ad;
    margin: 0;
}

/* service */
#service {
    background-color: white;
    height: 670px;
    padding: 0 200px;
    text-align: center;
    overflow: hidden;
}

#service-methods {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: 140px 0 0;
}

#service-methods > figure {
    width: 300px;
}

#service-methods > figure > figcaption > h3 {
    font-size: 18px;
    color: #2b333e;
    margin: 18px 0;
}

#service-methods > figure > figcaption > p {
    font-size: 14px;
    color: #788493;
}

/* products */
#products {
    background-color: rgb(236, 239, 243);
    height: 726px;
    overflow: hidden;
    text-align: center;
    padding: 0 200px;
}

#product-display {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: center;
    margin: 60px 0 0;
}

#product-display > figure {
    flex: 0 0 400px;
    margin: 0 40px;
    position: relative;
    transition: all ease .3s;
}

#product-display > figure:hover {
    box-shadow: 2px 2px 50px #a2bece;
    -webkit-box-shadow: 2px 2px 50px #a2bece;
    -moz-box-shadow: 2px 2px 50px #a2bece;
    transform: translateY(-10px);
}

#product-display > figure > img {
    width: 100%;
    height: auto;
}

#product-display > figure > figcaption {
    background-color: white;
    padding: 20px 10px;
    height: 140px;
}

#product-display > figure > figcaption > p {
    margin: 0;
    font-size: 14px;
    color: #788493;
}

#product-display > figure:hover > .gradient-bar {
    /*height: 10px;*/
    /*width: 100%;*/
    /*position: absolute;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*margin: auto;*/
}

#product-display > figure > .gradient-bar {
    /*height: 0;*/
    /*width: 0;*/
    /*background: linear-gradient(to right, rgb(106, 203, 156), rgb(73, 151, 126));*/
    /*transition: all ease .3s;*/
}

/* partners */
#partners {
    text-align: center;
    overflow: hidden;
    height: 400px;
    background-color: white;
    padding: 0 200px;
}

#partner-logo {
    margin: 40px 0 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}


