body {
    padding: 0;
    margin: 0;
    /* font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; */
    font-family: 'Segoe UI', sans-serif;
    width: 100%;
    height: 100%;
    position: relative;
  }
  
a {
    color: inherit;
    text-decoration: none;
}

.bolder {
  font-weight: 600;
}

.container {
    padding-top: 11vh;
}

.container > .sub_title{
    width: 100%;
    background-image: url("/images/background/esg.png");
    background-size: cover;
    background-position: center;
    height: 30vh;
    display: grid;
    align-items: center;
    justify-content: center;
    color: #FFF;
}

.sub_title > h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.container > .main_contents{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 60vh;
    padding: 2rem 0 2rem 0; 
}

.masking div {
    background-image: url("/images/background/forest.png");
    background-repeat: no-repeat;
    background-size: 70% 70%;
    background-position: center;

    font-size: 25rem;
    text-align: center;
    font-weight: bolder;

    background-clip: text;
    color: transparent;
}

.esg_msg {
    width: 60%;
    text-align: center;
    margin-bottom: 3rem;
}

.esg_icon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.icons {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 1rem;
    transition: all 0.5s;
    overflow: hidden;
    color: #FFF;
    box-shadow: 1px 7px 8px 1px rgba(0, 0, 0, 0.1);
}

.icons:hover {
    transform: translateY(-5px);
}

.icons i {
    font-size: 8rem;
    align-self: end;
    color: rgba(255, 255, 255, 0.5);
}

.icons_title {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: left;
    gap: 0.5rem;
    align-items: center;
    padding: 1rem;
}

.icons_title h1 {
    font-size: 1.4rem;
    margin: 0;
}

.icons_title p {
    font-size: 1.2rem;
    margin: 0;
}

.icons_header {
    grid-column: 1/3;
    display: flex;
    justify-content: left;
    gap: 0.5rem;
    align-items: end;
}

.icons_msg {
    grid-column: 1/3;
    font-size: 0.8rem;
}

.esgE {
    background-color: #82eb58;
}

.esgS {
    background-color: #1fb8ff;
}

.esgG {
    background-color: #0c9b30;
}

.report_board {
    text-align: center;
    display: grid;
    gap: 1rem;
}

.report_title {
    font-size: 2.5rem;
    font-weight: 600;
}

.download_board {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}

.reports {
    display: grid;
    border: 1px solid #CCCCCC;
    border-radius: 1rem;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.reports p {
    padding: 1rem 0 1rem 0;
    margin: 0;
    width: 100%;
    border-bottom: 1px solid #CCC;
}

.btn {
    background-color: #1fb8ff;
    margin: 0 4rem 1rem 4rem;
    padding: 1rem 0 1rem 0;
    border-radius: 0.5rem;
    color: #FFF;
    transition: all 0.5s;
}

.btn:hover {
    background-color: #1989bd;
}

@media(max-width:768px){
    .container > .main_contents{
        width: 90vw;
        padding: 0 5vw;
    }
    .masking div{
        font-size: 9rem;
    }
    .esg_msg{
        width: 80vw;
    }
    .esg_icon{
        grid-template-columns: 1fr;
    }
    .report_board{
        width: 90vw;
        margin-bottom: 4vh;
    }
    .report_title{
        text-align: center;
    }
    .download_board{
        grid-template-columns: 1fr;
        gap: 1vh;
    }
}