@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin-right: 90px;
    margin-left: 90px;
    /*For animation dark mode*/
    transition: .4s;
    top:0 !important;
    font-family: 'Noto Sans KR', sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

section {
    width: 100%;
}

/* ================================== */
.header {
    max-width: 1320px;
    height: 130px;
    margin: 0 auto;
    background: transparent;
    /*For animation dark mode*/
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1002;
}

.nav_logo {
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    width: 190px;
}

.nav_logo img {
    width: 140px;
    margin-left: -23px;
}

.nav_logo-icon {
    font-size: 1.25rem;
}

.nav_btns {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.nav_toggle, 
.nav_shop {
    font-size: 1.25rem;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .nav_menu {
        position: fixed;
        background-color: var(--body-color);
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        padding: 6rem 2rem 3.5rem;
        transition: .3s;
    }

    .section {
        padding: 3.5rem 0 1rem;
    }

}

.nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
    z-index: 1;
    cursor: pointer;
}

.nav_link {
    font-weight: bold;
    text-transform: uppercase;
    transition: .3s;
}

.nav_link:hover {
    color: #0d4bde;
}

.nav_close {
    font-size: 2rem;
    position: absolute;
    top: .9rem;
    right: 1.25rem;
    cursor: pointer;
}

.nav_search {
    width: 145px;
    height: 175px;
    background-color: #0d4bde;
    color: #fff;
    font-weight: bold;
    margin-left: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav_search div {
    text-align: center;
    font-weight: bold;
}

/* ================================ */

.home_top {
    width: 100%;
    height: 700px;
    background-color: #272727;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home_text {
    color: #fff;
    text-align: center;
}

.home_text h1 {
    font-size: 50px;
}

.home_text h2 {
    font-size: 50px;
    font-weight: 300;
}

.home_text h2 span {
    font-family: 'Gochi Hand', cursive;
}

.home_btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 190px;
    height: 90px;
    display: flex;
}
.home_btn button{
    width: 100%;
    height: 100%;
}
.home_btn button:nth-child(2) {
    background-color: rgb(250, 250, 250);
}

.home_bottom {
    width: 100%;
    height: 750px;
    background-color: #0d4bde;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.home_bottom_text {
    color: #fff;
    font-size: 25px;
    position: relative;
    margin-left: 200px;
    margin-bottom: 50px;
}

.home_bottom_text img {
    position: absolute;
    top: -20px;
    left: 30px;
    opacity: .2;
}

.home_bottom_text2 {
    color: #fff;
    width: 330px;
    position: relative;
    margin-left: 150px;
    margin-bottom: -70px;
    z-index: 2;
}

.home_bottom_text2 p {
    margin-bottom: 20px;
}

.home_bottom_btn {
    width: 200px;
    height: 70px;
    color: #fff;
    z-index: 10;
    background-color: black;
    margin-top: 20px;
}

.home_bottom_text2_img {
    position: absolute;
    top: -30px;
    left: -50px;
    opacity: .2;
    z-index: -1;
}

/* =================================== */

.services_title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.services_title_r {
    width: 300px;
    margin-left: 100px;
}

.services_title_l h1 {
    font-size: 35px;
}

.title_bottom {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 300px;
    margin-top: 15px;
}

.title_bottom_line {
    width: 100%;
    height: 2px;
    background-color: #bbb;
    margin-left: 50px;
}
.title_bottom_box {
    width: 30%;
    height: 5px;
    background-color: #0d4bde;
    margin-right: 40px;
}

.services_card {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.services_card2 {
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 100px;
}

.services_box {
    width: 440px;
    height: 450px;
    border: 1px solid #ddd;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    z-index: 1;
}

.services_box2 {
    width: 480px;
    height: 500px;
    box-shadow: 10px 20px 30px 10px rgb(150, 150, 150, .2);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    z-index: 1;
}

.services_box_text {
    width: 300px;
    margin: 0 auto;
}

.services_box_title {
    margin: 20px 0;
    width: 100%;
}

.services_btn {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.services_btn button {
    width: 220px;
    height: 70px;
    background-color: #272727;
    color: #fff;
}

/* =========================================== */

.growth {
    position: relative;
    height: 940px;
}

.growth_bac {
    width: 870px;
    height: 795px;
    background-color: #ccc4c2;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -20;
}

.growth_title {
    display: flex;
    justify-content: center;
    margin-left: 380px;
    padding-top: 130px;
}

.growth_title_l {
    text-align: end;
    width: 260px;
    margin-right: 150px;
}

.growth_title_r {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 300px;
    row-gap: 50px;
    column-gap: 50px;
}

.growth_grid_box h1 {
    font-size: 30px;
}

.growth_vid {
    width: 870px;
    height: 530px;
    margin-top: 100px;
    position: absolute;
    right: 280px;
}

.growth_bac2 {
    position: absolute;
    right: 270px;
    top: -300px;
    z-index: -1;
}

.growth_bac3 {
    position: absolute;
    left: 400px;
    bottom: -300px;
    z-index: -1;
}

/* =========================== */

.more {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-top: 130px;
    position: relative;
}


.more h1 {
    font-size: 31px;
}

.more_btn {
    width: 220px;
    height: 70px;
    background-color: #272727;
    color: #fff;
    margin-top: 100px;
    font-weight: bold;
}

.growth_bac4 {
    position: absolute;
    right: -300px;
    top: -250px;
    z-index: -1;
}

/* ==================================== */

.humans {
    position: relative;
}

.humans_title {
    color: #fff;
    padding-top: 120px;
}

.humans_bac {
    width: 100%;
    height: 600px;
    background-color: #2c2c2c;
    position: absolute;
    top: 0;
    z-index: -2;
}

.humans_card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 80px;
}

.humans_box {
    width: 400px;
    height: 460px;
    background-color: #555555;
}

/* ============================ */

.projects {
    display: flex;
    align-items: center;
    gap: 200px;
    justify-content: center;
    margin-top: 150px;
    position: relative;
}

.projects_img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
}

.growth_bac5 {
    position: absolute;
    left: 350px;
    bottom: -530px;
    z-index: -1;
}

/* ======================== */

.fr_logo_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.fr_logo {
    width: 280px;
    height: 150px;
    overflow: hidden;
    box-shadow: 1px 1px 20px 5px rgb(150, 150, 150, .2);
}

.fr_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====================================== */

.news_bac {
    position: absolute;
    width: 100%;
    height: 660px;
    background-color: #000;
    top: 0;
    z-index: -1;
}

.news_box {
    width: 1200px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    margin-top: 100px;
}

.news_box_bac {
    width: 870px;
    height: 520px;
    background-color: #555555;
    position: absolute;
    top: 0;
    left: 0;
}

.news_box_bac2 {
    width: 470px;
    height: 480px;
    background-color: #fff;
    box-shadow: 1px 1px 20px 5px rgb(150, 150, 150, .2);
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 70px;
}

.news_btn {
    text-align: end;
    margin-right: 130px;
    padding-top: 30px;
}

.news_btn button {
    color: #fff;
    background-color: transparent;
    font-size: 35px;
}

.news_in {
    display: flex;
    gap: 10px;
}

.news_in_box {
    padding: 10px;
    background-color: #0d4bde;
    color: #fff;
}
.news_in_box2 {
    padding: 10px;
    background-color: #12de0d;
    color: #fff;
}

.news_box_bac2 h1 {
    margin: 30px 0;
}

.news_btns {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.growth_bac6 {
    position: absolute;
    right: -20px;
    bottom: -300px;
    z-index: -1;
}

/* ========================= */

.footer {
    width: 100%;
    height: 210px;
    background-color: #0d4bde;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
}

.footer_logo {
    display: flex;
    align-items: center;
    margin-left: 150px;
    color: #fff;
}

.reserved {
    text-align: end;
    color: #fff;
    margin-right: 150px;
}

/* ============================ */
.about_us {
    position: relative;
}

.about_us_title {
    width: 100%;
    height: 250px;
    background-color: #000;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    color: #fff;
}

.about_us_title h1 {
    width: 100%;
    text-align: center;
    font-size: 40px;
}

.about_us_text {
    position: relative;
}

.about_us_text_bac {
    position: absolute;
    width: 100%;
    height: 1980px;
    background-color: #f0ebe7;
    background:linear-gradient(-10deg, transparent 1140px, #f0ebe7 0);
    z-index: -1;
}

.about_us_text_box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 100px;
    margin-bottom: 100px;
}

.about_us_text_box h1 {
    font-size: 35px;
}

.about_us_card {
    width: 940px;
    height: 750px;
    position: relative;
    margin: 0 auto;
}

.about_us_box {
    width: 470px;
    height: 630px;
    background-color: #0d4bde;
    position: absolute;
    top: 0;
    left: 0;
    padding: 80px 60px;
    color: #fff;
    text-align: end;
}
.about_us_box h1 {
    font-size: 30px;
}
.about_us_box p {
    padding-left: 90px;
}
.about_us_box2 {
    width: 470px;
    height: 630px;
    background-color: #081e53;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 80px 60px;
    color: #fff;
    text-align: end;
}
.about_us_box2 h1 {
    font-size: 30px;
}
.about_us_box2 p {
    padding-left: 90px;
}

.about_us_title2 {
    margin-left: 0;
    align-items: center;
    justify-content: center;
    margin-right: 200px;
}

.about_us_title_l {
    margin-right: 100px;
}

.about_us_title_r {
    grid-template-columns: repeat(4, 1fr);

}

.growth_bac7 {
    position: absolute;
    top: 0;
    left: 400px;
    z-index: -1;
}

/* ===================== */

.ser_detail_box {
    width: 1100px;
    height: 500px;
    position: relative;
    margin: 0 auto;
    margin-top: 150px;
    display: flex;
    align-items: center;
    
}

.ser_detail_card {
    position: absolute;
    width: 870px;
    height: 500px;
    left: 0;
    background-color: #555555;
}

.ser_detail_card2 {
    position: absolute;
    right: 0;
    background-color: #fff;
    width: 440px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 20px 10px rgb(150, 150, 150, .2);
}

.ser_detail_text {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 100px;
    position: relative;
}

.ser_detail_text div {
    width: 100%;
    margin-bottom: 80px;
}

.ser_detail_text div h1 {
    font-size: 35px;
}

.ser_detail_div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.ser_detail_div div {
    width: 500px;
    height: 340px;
    background-color: #555555;
}

.ser_detail_div_text {
    max-width: 700px;
    margin: 100px auto;
}

.ser_detail_div_text h1 {
    font-size: 35px;
}

.growth_bac8 {
    position: absolute;
    top: -200px;
    right: -100px;
    z-index: -1;
}
.growth_bac9 {
    position: absolute;
    bottom: -600px;
    left: -100px;
    z-index: -1;
}

.growth_bac10 {
    position: absolute;
    top: 250px;
    left: 300px;
    z-index: -1;
}

.growth_bac11 {
    position: absolute;
    top: 350px;
    left: 700px;
    z-index: -1;
}

.growth_bac12 {
    position: absolute;
    bottom: 900px;
    right: 250px;
    z-index: -1;
}

.growth_bac13 {
    position: absolute;
    top: -1050px;
    left: 480px;
    z-index: -1;
}

.team_grid {
    max-width: 1300px;
    margin: 100px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    justify-items: center;
    row-gap: 30px;
}

.team_grid div {
    width: 400px;
    height: 470px;
}

.Member_btn_l button {
    width: 80px;
    height: 150px;
    background-color: #0d4bde;
    color: #fff;
    font-size: 35px;
}

.Member_btn_r button {
    width: 80px;
    height: 150px;
    background-color: #272727;
    color: #fff;
    font-size: 35px;
}

.member_img_box {
    width: 340px;
    height: 460px;
    background-color: #555555;
    margin-bottom: 50px;
}

.member_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    gap: 10px;
}

.Member_text {
    max-width: 700px;
    padding-top: 50px;
}

.Member_div {
    display: flex;
    gap: 80px;
}

.Member {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 150px 0;
}

/* ============================ */

.project {
    max-width: 1200px;
    margin: 150px auto;
}

.project_menu {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.project_item:hover {
    color: #0d4bde;
    cursor: pointer;
}

.project_box_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.project_box_div2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
}

.project_box_img {
    width: 370px;
    height: 270px;
    background-color: #555555;
}

.project_box_img2 {
    width: 570px;
    height: 270px;
    background-color: #555555;
}

.project_mail {
    width: 100%;
    height: 700px;
    background-color: #f0ebe7;
}

.project_mail_inp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    row-gap: 30px;
    column-gap: 30px;
}

.project_mail_inp input {
    width: 400px;
    height: 70px;
    background-color: #fff;
    border: none;
    outline: none;
    font-weight: bold;
    padding: 10px 20px;
}

.project_mail {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.project_mail_div h1 {
    font-size: 35px;
}

.project_mail_div p {
    margin: 30px 0;
}

.project_mail_btn {
    width: 220px;
    height: 70px;
    background-color: #000;
    color: #fff;
    margin-top: 50px;
}

.pro_detail_box {
    width: 1100px;
    height: 450px;
    background-color: #555555;
    margin: 100px auto;
}

.pro_detail_text {
    max-width: 870px;
    margin: 0 auto ;
}

.blog_detail_box {
    width: 1170px;
    height: 520px;
    background-color: #555555;
    margin: 100px auto;
}

.blog_detail_text {
    max-width: 960px;
    margin: 0 auto;
}

.blog_detail_div {
    max-width: 970px;
    height: 70px;
    margin: 100px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background-color: #fafafa;
    font-size: 13px;
}

.blog_detail_post {
    max-width: 970px;
    margin: 0 auto;
}

.blog_detail_post_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

.blog_detail_post_div {
    width: 940px;
    height: 170px;
    box-shadow: 1px 1px 30px 5px rgb(150, 150, 150, .2);
    position: relative;
    margin: 50px 0;
    display: flex;
    align-items: center;
}

.blog_detail_post_div2 {
    width: 830px;
    height: 170px;
    box-shadow: 1px 1px 30px 5px rgb(150, 150, 150, .2);
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.blog_detail_post_div_box {
    width: 100px;
    height: 100px;
    background-color: #000;
    position: absolute;
    left: -50px;
    top: 35px;
}

.blog_detail_post_div_box2 {
    width: 100px;
    height: 170px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #000;
    color: #fff;
    text-align: center;
    line-height: 170px;
}

.blog_detail_post_div_box2-1 {
    width: 100px;
    height: 170px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #0d4bde;
    color: #fff;
    text-align: center;
    line-height: 170px;
}

.blog_detail_post_div_text {
    max-width: 560px;
    margin-left: 100px;
}

.blog_detail_comment {
    max-width: 970px;
    margin: 0 auto;
}

.blog_detail_comment_inp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0;
}

.blog_detail_comment_inp input {
    width: 49%;
    height: 60px;
    background-color: #fafafa;
    border: none;
    outline: none;
    padding: 0 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.blog_detail_comment_inp textarea {
    width: 100%;
    height: 160px;
    border: none;
    outline: none;
    background-color: #fafafa;
    resize: none;
    padding: 30px;
    font-weight: bold;
}

.blog_detail_comment button {
    width: 220px;
    height: 60px;
    background-color: #0d4bde;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
}

.map {
    position: relative;
}

.map_img {
    width: 100%;
    height: 700px;
}

.map_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -60px;
    left: 150px;
}

.contact_box {
    width: 480px;
    height: 200px;
    background-color: #fff;
    box-shadow: 1px 1px 30px 5px rgb(150, 150, 150, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact_box2 {
    width: 480px;
    height: 200px;
    background-color: #0d4bde;
    box-shadow: 1px 1px 30px 5px rgb(150, 150, 150, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 10px;
}
/* ====================== */


@media screen and (min-width: 767px) {
    .nav_menu {
        display: flex;
        align-items: center;
    }
    .nav_toggle, 
    .nav_close {
        display: none;
    }
    .nav_list_top {
        justify-content: end;
        margin-bottom: 15px;
    }
    .nav_link_top {
        font-weight: bold;
        font-size: 13px;
        color: rgb(150, 150, 150);

    }
    .nav_list {
        flex-direction: row;
        column-gap: 2.5rem;
    }
    .nav_link {
        text-transform: initial;
    }
    .nav_btns {
        margin-left: auto;
    }
    .nav_logo img {
        width: 185px;
    }
}