

main {
    padding-top: 420px;
}


/* Main Copy Section */
.maincopy {
    background-color: #f8f8f8;
    padding: 52px 0;
    text-align: center;
    //margin-top:420px;
}

.maincopy h2 {
    font-size: 28px;
    font-weight: 350;
    margin-bottom: 20px;
}

.maincopy p {
    font-size: 18px;
    font-weight: 350;
    margin-bottom: 40px;
}

.contact-btn {
    display: inline-block;
    background-color: #59B494;
    color: #fff;
    padding: 12px 180px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}

.contact-btn:hover {
    opacity: 0.8;
}

p.note {
    font-size: 11px;
    color: #666;
    margin-top: 40px;
    margin-bottom: 0;
    letter-spacing: -0.33px;
    padding: 0 20%;
}

/* Works Section */
.works {
    //background-color: #f8f8f8;
    background-color: #e8e8e8;
    padding: 72px 0;
}

.works h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 40px;
}

.works a {
    text-decoration: underline;
    text-decoration-color: #999;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}

.works a:hover {
    opacity: 80%;
}

.works-grid {
    max-width: 1080px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding: 0 110px;
}

.work-item img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.work-content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.work-content p {
    font-size: 16px;
    font-weight: 350;
}

/* Services Section */
.about {
    background-color: #f8f8f8;
    padding: 72px 0;
}

.about h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 40px;
}

.services {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 110px;
}

.service-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.service-item img {
    border-radius: 10px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 11px;
}

.service-content p {
    font-size: 16px;
    font-weight: 350;
}

/* Company Section */
.company {
    //background-color: #f8f8f8;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 32px 0;
}

.company h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 40px;
}

.company-info {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}

.company-info dl {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 15px;
}

.company-info dt {
    font-size: 16px;
    font-weight: 500;
    text-align: right;
    padding-right: 10px;
}

.company-info dd {
    font-size: 16px;
    font-weight: 350;
}

.contact-area {
    text-align: center;
    margin: 50px 0 20px;
}


/* Responsive */
@media (max-width: 768px) {


main {
    padding-top: 300px;
}


    /* Main Copy Section */

.maincopy {
    padding: 40px 20px;
}


    .contact-btn {
        padding: 12px 80px;
    }


p.note {
    padding: 0;
}


    /* Works Grid */
    .works-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* Services Section */
    .services {
        padding: 0 20px;
    }

    .service-item {
        grid-template-columns: 40% 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .service-item img {
        width: 100%;
        height: 120px;
        //height: 100%;
        object-fit: cover;
    }

    /* Company Section */
    .company-info {
        margin: 0 20px 40px;
        padding: 20px;
    }

    .company-info dl {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: center;
    }

    .company-info dt {
        text-align: center;
        padding-right: 0;
        margin-top: 15px;
    }

    .company-info dd {
        text-align: center;
    }

}