.serviceDetailSection .contentContainer,
.serviceDetailSection .titleContainer {
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
}

.serviceDetailSection .titleContainer + .contentContainer {
    margin-top: 40px;
}

.serviceDetailSection .bannerWideSection + .titleContainer {
    margin-top: 60px;
}

@media (max-width: 1199px) {

    .serviceDetailSection .bannerWideSection + .titleContainer {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .serviceDetailSection .titleContainer + .contentContainer {
        margin-top: 14px;
    }

    .serviceDetailSection .bannerWideSection + .titleContainer {
        margin-top: 14px;
    }
}


.bannerWideSection {
    padding-bottom: 40%;
    background-color:  #F9FAFB;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /*opacity: 0;*/
    transition: opacity .3s ease;
}

.bannerWideSection.loaded {
    opacity: 1;
}

@media (max-width: 479px) {
    .bannerWideSection {
        padding-bottom: 62%;
    }
}




.moreServiceSection.mainSection {
    overflow: visible;
}

.moreServiceSection .titleContainer + .wrapper {
    margin-top: 40px;
}

.moreServiceList {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}

.moreServiceItem {
    width: 33.33%;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;

}

.moreServiceItem .link {
    display: block;
        padding: 36px 20px 110px;
    height: 100%;
    width: 100%;
    background: #F9FAFB;
    position: relative;
}

.moreServiceItem .info {
    position: relative;
    z-index: 1;
}

.moreServiceItem .text {
    font-family: "Open Sans";
    font-size: 15px;
    line-height: 24px;
    color: #232323;
}

.moreServiceItem .subtitleCap + .text {
    margin-top: 20px;
}

.moreServiceItem .more {
    position: absolute;
    left: 20px;
    bottom: 40px;
    width: calc(100% - 40px);
    font-size: 15px;
    line-height: 24px;
    color: #026EF9;
    text-decoration: underline;
    text-decoration-color: inherit;
    -webkit-transition: text-decoration-color 0.3s;
    -moz-transition: text-decoration-color 0.3s;
    -o-transition: text-decoration-color 0.3s;
    transition: text-decoration-color 0.3s;
}

.moreServiceItem .link:before {
    content: "";
    /* width: 100%; */
    height: 100%;
    width: calc(100% + 0px);
    height: calc(100% + 0px);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F9FAFB;
    transition: .1s ease;
}

.moreServiceItem .link:hover:before {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -10px;
    left: -10px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1023px) {
    .moreServiceSection .titleContainer + .wrapper {
        margin-top: 25px;
    }

    .moreServiceItem {
        width: 50%;
    }

    .moreServiceList {
        margin-left: -16px;
        margin-right: -16px;
    }

    .moreServiceItem {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 767px) {
    .moreServiceSection .titleContainer + .wrapper {
        margin-top: 14px;
    }

    .moreServiceList {
    	margin-left: 0;
    	margin-right: 0;
    }

    .moreServiceItem {
        width: 100%;
        margin-bottom: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .moreServiceItem .link {
        padding: 20px 18px 88px;
    }

    .moreServiceItem .more {
        left: 18px;
        width: calc(100% - 36px);
        font-size: 14px;
    }

    .moreServiceItem .link:before {
        display: none;
    }
}