@charset "UTF-8";

/* section_1 */
.section_1 {
    width: 100%;
    height: 24vw;
    background-color: #C2E8E7;
    display: grid;
    grid-template-columns: 10% 1fr 10%;
    grid-template-rows: 58% 30% 12%;
}

.section_1>h1 {
    font-size: 3vw;
    font-weight: 600;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    justify-self: center;
    letter-spacing: 0.2vw;
}

.section_1>p {
    font-size: 1.2vw;
    font-weight: 400;
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    letter-spacing: 0.1vw;
    color: #737373;
}

.section_1>div {
    grid-column: 1/4;
    grid-row: 3;
    width: 100%;
    height: 100%;
    background-color: #1D1D1D;
}

/* section_2 */
.section_2 {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 10% 1fr 10%;
    grid-template-rows: repeat(10, auto);
}

.section_2>div:first-of-type {
    width: 100%;
    grid-column: 1/4;
    grid-row: 1;
    background-image: linear-gradient(45deg, rgb(255, 255, 255), rgb(201, 201, 201));
    display: grid;
    grid-template-columns: 10% 1fr 10%;
    grid-template-rows: repeat(2, auto);
    padding-top: 4vw;
    padding-bottom: 4vw;
}

.section_2>div:first-of-type>img {
    width: 100%;
    grid-column: 2;
    grid-row: 1;
    filter: drop-shadow(0.5vw 0.5vw 0.5vw rgba(160, 160, 160, 0.6));
    justify-self: center;
}

.section_2>div:first-of-type>ul {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 2vw;
    margin-left: 5%;
    margin-top: 4vw;
}

.section_2>div:first-of-type>ul>li {
    font-size: 1vw;
    font-weight: 400;
    line-height: 2vw;
    letter-spacing: 0.1vw;
    padding: 0.1vw 0.4vw;
    border: solid 1px rgb(109, 109, 109);
}

.section_2>p:first-of-type {
    grid-column: 2;
    grid-row: 3;
    font-size: 1.2vw;
    font-weight: 200;
    color: #000000;
    line-height: 2.2vw;
    letter-spacing: 0.1vw;
    margin-top: 8vw;
}

.section_2>p:nth-of-type(2) {
    grid-column: 2;
    grid-row: 4;
    font-size: 1.2vw;
    font-weight: 200;
    color: #000000;
    line-height: 2.2vw;
    letter-spacing: 0.1vw;
    margin-top: 1vw;
}

.section_2>p:nth-of-type(3) {
    grid-column: 2;
    grid-row: 5;
    font-size: 1.2vw;
    font-weight: 200;
    color: #000000;
    line-height: 2.2vw;
    letter-spacing: 0.1vw;
    margin-top: 1vw;
}

.section_2>div:nth-of-type(2) {
    width: 100%;
    grid-column: 2;
    grid-row: 6;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    margin-top: 8vw;
}

.section_2>div:nth-of-type(2)>img {
    width: 80%;
    filter: drop-shadow(0.5vw 0.5vw 0.5vw rgba(160, 160, 160, 0.6));
    justify-self: center;
}

.section_2>div:nth-of-type(2)>img:nth-of-type(2),
.section_2>div:nth-of-type(2)>img:nth-of-type(3),
.section_2>div:nth-of-type(2)>img:nth-of-type(4) {
    margin-top: 10vw;
    filter: drop-shadow(0.5vw 0.5vw 0.5vw rgba(160, 160, 160, 0.6));
}

.section_2>div:nth-of-type(2)>img:nth-of-type(3),
.section_2>div:nth-of-type(2)>img:nth-of-type(4) {
    width: 80%;
}

.section_2>a:first-of-type {
    grid-column: 2;
    grid-row: 7;
    justify-self: center;
    font-size: 1.4vw;
    font-weight: 500;
    color: white;
    width: 30%;
    height: 4vw;
    background-color: #1780A0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2vw;
    box-shadow: 0.1vw 0.1vw 0.5vw 0 rgba(0, 0, 0, 0.14);
    transition: background-color 0.2s ease-in-out;
    margin-top: 8vw;
    margin-bottom: 8vw;
}

.section_2>a:first-of-type:hover {
    background-color: #238cac;
}

@media (max-width: 430px) {

    /* section_1 */
    .section_1 {
        width: 100%;
        height: 50vw;
        background-color: #C2E8E7;
        display: grid;
        grid-template-columns: 5% 1fr 5%;
        grid-template-rows: 50% 40% 10%;
    }

    .section_1>h1 {
        font-size: 5vw;
        grid-column: 2;
        grid-row: 1;
        letter-spacing: 0.2vw;
    }

    .section_1>p {
        font-size: 2.6vw;
        grid-column: 2;
        grid-row: 2;
        line-height: 5vw;
        letter-spacing: 0.2vw;
        width: 85%;
        text-align: center;
    }

    .section_1>div {
        grid-column: 1/4;
        grid-row: 3;
        width: 100%;
        height: 100%;
        background-color: #1D1D1D;
    }


    /* section_2 */
    .section_2 {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 10% 1fr 10%;
        grid-template-rows: repeat(10, auto);
    }

    .section_2>div:first-of-type {
        width: 100%;
        grid-column: 1/4;
        grid-row: 1;
        background-image: linear-gradient(45deg, rgb(255, 255, 255), rgb(201, 201, 201));
        display: grid;
        grid-template-columns: 5% 1fr 5%;
        grid-template-rows: repeat(2, auto);
        padding-top: 8vw;
        padding-bottom: 8vw;
    }

    .section_2>div:first-of-type>img {
        width: 100%;
        grid-column: 2;
        grid-row: 1;
        filter: drop-shadow(1vw 1vw 1vw rgba(160, 160, 160, 0.6));
        justify-self: center;
    }

    .section_2>div:first-of-type>ul {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        column-gap: 2vw;
        row-gap: 2vw;
        margin-left: 5%;
        margin-top: 4vw;
    }

    .section_2>div:first-of-type>ul>li {
        font-size: 2.8vw;
        font-weight: 400;
        line-height: 5vw;
        letter-spacing: 0.1vw;
        padding: 0.5vw 1vw;
        border: solid 1px rgb(109, 109, 109);
    }

    .section_2>p:first-of-type,
    .section_2>p:nth-of-type(2),
    .section_2>p:nth-of-type(3) {
        font-size: 3.2vw;
        font-weight: 200;
        color: #000000;
        line-height: 5.5vw;
        letter-spacing: 0.2vw;
        margin-top: 8vw;
    }

    .section_2>p:first-of-type {
        margin-top: 16vw;
    }

    .section_2>div:nth-of-type(2) {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        margin-top: 16vw;
    }

    .section_2>div:nth-of-type(2)>img {
        width: 90%;
        filter: drop-shadow(0.5vw 0.5vw 0.5vw rgba(160, 160, 160, 0.6));
        justify-self: center;
    }

    .section_2>div:nth-of-type(2)>img:nth-of-type(2),
    .section_2>div:nth-of-type(2)>img:nth-of-type(3),
    .section_2>div:nth-of-type(2)>img:nth-of-type(4) {
        margin-top: 16vw;
    }

    .section_2>div:nth-of-type(2)>img:first-of-type{
        width: 100%;
    }

    .section_2>div:nth-of-type(2)>img:nth-of-type(3),
    .section_2>div:nth-of-type(2)>img:nth-of-type(4) {
        width: 90%;
    }

    .section_2>a:first-of-type {
        justify-self: center;
        font-size: 3vw;
        font-weight: 500;
        color: white;
        width: 50%;
        height: 8vw;
        background-color: #1780A0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2vw;
        box-shadow: 0.1vw 0.1vw 0.5vw 0 rgba(0, 0, 0, 0.14);
        transition: background-color 0.2s ease-in-out;
        margin-top: 8vw;
        margin-bottom: 8vw;
    }

    .section_2>a:first-of-type:hover {
        background-color: #238cac;
    }
}