@charset "utf-8";
/* CSS Document */

/*********************
Main
*********************/

.page-margin {
    max-width: 1350px;
    margin: 0 auto;
}

.hero-section {
    height: 420px;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-section {
    position: relative;
    background-color: #ffffff;
}

.main-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;        
    background-color: #E8E8EC;
    z-index: 1;  
}

.main-container {
    padding-top: 3em;
    position: relative;
    z-index: 2;
}

.main-container h1 {
    margin: 0;
}

.main-container .page-margin > p {
    color: #8A8A8A;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 1%;
    width: 90%;
    margin: 1em 0 0;
}

.grid-box a {
    text-decoration: none;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1.5em;
    margin: 3em 0;
}

.grid-box {
    background: #fff;
    border-radius: 6px;
    padding: 2em;
}

.grid-box h2 {
    margin: 0;
    color: #3A3A3A;
    font-size: 18px;
    letter-spacing: 1%;
}

.grid-box p {
    color: #8A8A8A;
    font-size: 16px;
    line-height: 24px;
    margin: .5em 0 1em;
    letter-spacing: 1%;
    min-height: 140px;
}

.grid-box span {
    border: 2px solid #000;
    display: inline-block;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    color: #000;
}

.grid-layout .grid-box:nth-of-type(1) {
    grid-column: 1 / span 3;
}

.grid-layout .grid-box:nth-of-type(2) {
    grid-column: 4 / span 3;
}

.grid-layout .grid-box:nth-of-type(3) {
    grid-column: 1 / span 2;
}

.grid-layout .grid-box:nth-of-type(4) {
    grid-column: 3 / span 2;
}

.grid-layout .grid-box:nth-of-type(5) {
    grid-column: 5 / span 2;
}

.grid-layout .grid-box:nth-of-type(3) p,
.grid-layout .grid-box:nth-of-type(4) p,
.grid-layout .grid-box:nth-of-type(5) p {
    min-height: 250px;
}

.banner-inner {
    position: relative;
    height: 700px;
}

.banner-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-inner::before {
    z-index: 1;
    content: "";
    width: 100%;
    height: 30%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.banner-content {
    position: absolute;
    width: 100%;
    top: 0;
    text-align: left;
    color: #fff;
    padding: 3em;
    z-index: 2;
}

.banner-content p {
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 2%;
    width: 50%;
    margin: 0;
    line-height: 30px;
}

.split-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 8em;
    margin-top: 6em;
}

.split-column h3 {
    margin: 0;
    font-size: 30px;
    font-weight: normal;
    line-height: 44px;
    letter-spacing: 1%;
}

.split-column p {
    margin: 7px 0;
    font-size: 18px;
    letter-spacing: 1%;
    line-height: 24px;
}

.card-deck {
    background: #F5F5F7;
    padding: 4em 0;
}

.card-deck-wrap {
    display: flex;
    justify-content: space-between;
}

.card-deck-wrap > p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.card-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5em;
}

.card-inner {
    background: #fff;
    padding: 1em;
}

.card-inner h4 {
    margin: 0;
}

.card-deck-wrap .card {
    width: 300px;
}

.card-deck-wrap .card img {
    width: 100%;
}





















