.main{
    width: 100%;
    height: max-content;
    overflow: hidden;
    background-color: rgb(18,77,137,0.2);
    background-image: radial-gradient(rgba(255, 255, 255, 0.7) 30%, transparent 30%);
    background-size: 3px 3px;
}
.section.section_top{
    height: calc(100vh - 60px);
    grid-template-columns: 1fr;
    grid-template-rows: 120px 1fr;
}
.section_box{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.section_box.for_top.box_2{
    align-items: center;
    padding: 20px;
}
.section_top_box{
    width: 100%;
    max-width: 1400px;
    height: 70%;
    position: relative;
    align-items: flex-end;
    justify-content: flex-end;
}
.section_top_box::before,.section_top_box::after{
    content: "";
    position: absolute;
    backdrop-filter: grayscale(1);
    -webkit-backdrop-filter: grayscale(1);
}
.section_top_box::before{
    width: 40%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: rgb(18,77,137,0.3);
    background-image: radial-gradient(rgb(18,77,137,0.7) 30%, transparent 30%);
    background-size: 3px 3px;
}
.section_top_box::after{
    width: 60%;
    height: 100%;
    top: 0;
    left: 0;
}
.section_top_title_box{
    padding: 40px 60px;
    align-items: flex-start;
    gap: 10px;
    background: rgb(255, 255, 255);
    position: absolute;
    bottom: -100px;
    left: 20px;
    z-index: 1;
}
.section_top_title{
    font-size: 64px;
}
.section_top_title::first-letter{
    color: rgb(18,77,137);
}
.section_top_sub{
    font-size: 20px;
    font-weight: bold;
    padding: 2px 5px;
    position: relative;
}
.section_top_sub::before{
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: black;
    top: calc(50% - 1px);
    right: -105px;
}
.section_top_text_box{
    height: 100%;
    width: 40%;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.section_top_text{
    font-size: 32px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

.section.section_breadcrumb{
    width: 100%;
    height: max-content;
    padding: 10px;
    z-index: 2;
    justify-content: center;
}
.breadcrumb{
    width: 100%;
    max-width: 1400px;
    gap: 15px;
    padding: 5px 10px;
}
.bread_text{
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: bold;
}
.bread_divider{
    color: rgb(113, 113, 113);
    font-weight: bold;
}

@media all and (max-width:1200px){
    .section_top_title{
        font-size: 52px;
    }
    .section_top_sub{
        font-size: 18px;
    }
}
@media all and (max-width:900px){
    .section_top_title_box{
        padding: 30px 40px;
    }
    .section_top_title{
        font-size: 42px;
    }
    .section_top_sub{
        font-size: 16px;
    }
    .section_top_text{
        font-size: 24px;
    }
    .section_top_sub::before{
        width: 60px;
        right: -65px;
    }
}
@media all and (max-width:524px){
    .section.section_top{
        height: 70vh;
        grid-template-rows: 60px 1fr;
    }
    .section_box.for_top.box_2{
        padding: 10px;
    }
    .section_top_box::before{
        width: 50%;
    }
    .section_top_box::after{
        width: 50%;
    }
    .section_top_text_box{
        width: 50%;
    }
    .section_top_text{
        font-size: 16px;
    }
    .section_top_title_box{
        padding: 20px 30px;
    }
    .section_top_title{
        font-size: 32px;
    }
    .bread_text{
        font-size: 12px;
    }
}
