@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');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

/*========== Colors ==========*/
    --first-color: #bbb;
    --button-color: hsl(274, 28%, 59%);
    --button-color-alt: hsl(0, 0%, 21%);
    --title-color: #fff;
    --text-color: #000;
    --text-color-light: hsl(0, 0%, 55%);
    --body-color: hsl(0, 0%, 99%);
    --container-color: #fff;
    --border-color: hsl(0, 0%, 94%);
    --bd-color: #ededed;

/*========== Font and typography ==========*/
    --body-font: 'Roboto', sans-serif;
    --biggest-font-size: 2rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2.25rem;
    --h3-font-size: 2rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

/*========== Font weight ==========*/
    --font-medium: 500;
    --font-bold: 700;

/*========== Margenes Bottom ==========*/
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

/*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 2.5rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /* font-family: 'Lato', sans-serif; */
    font-family: 'Noto Sans KR', sans-serif;
}

pre {
    font-family: 'Noto Sans KR', sans-serif;
    white-space: pre-line;
}

body {
    margin: 0;
    /* background-color: var(--body-color); */
    color: var(--text-color);
    /*For animation dark mode*/
    transition: .4s;
    top:0 !important;
}

h1, h2, h3, h4 {
    font-weight: var(--font-medium);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.swiper-button-next {
    color: #fff !important;
}

.swiper-button-prev {
    color: #fff !important;
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1170px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
}

.main {
    overflow: hidden;
}

.section {
    padding: 3.5rem 0 1rem;
}

/*=============== SCROLL UP ===============*/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -30%;
    background-color: var(--container-color);
    box-shadow: 0 4px 12px hsla(0, 0%, 20%, .1);
    display: inline-flex;
    padding: .25rem;
    z-index: var(--z-tooltip);
    opacity: .8;
    transition: .4s;
}

.scrollup:hover {
    opacity: 1;
}

.scrollup_icon {
    font-size: 1.5rem;
    color: var(--first-color);
}

/* Show Scroll Up*/
.show-scroll {
    bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
    width: .6rem;
    background: hsl(0, 0%, 74%);
}

::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 17%);
}

/*=============== HEADER & NAV ===============*/
.header {
    width: 100%;
    background: transparent;
    /* position: fixed; */
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    /*For animation dark mode*/
    transition: .4s;
    background-color: #111111;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1002;
}

.nav_logo, 
.nav_toggle, 
.nav_shop, 
.nav_close {
    color: var(--title-color);
}

.nav_toggle i {
    color: var(--title-color);
}

.nav_logo {

    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}

.nav_logo img {
    width: 140px;
}

.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: #2d2d2d;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        padding: 6rem 2rem 3.5rem;
        transition: .3s;
    }
}

.nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
    z-index: 1;
    cursor: pointer;
}

.nav_item {
    padding: 5px 15px;
    border-radius: 15px;
}

.nav_link {
    color: var(--title-color);
    font-weight: var(--font-medium);
    text-transform: uppercase;
    font-size: var(--normal-font-size);
    transition: .3s;
}

.nav_link:hover {
    color: var(--first-color);
}

.nav_close {
    font-size: 2rem;
    position: absolute;
    top: .9rem;
    right: 1.25rem;
    cursor: pointer;
}

/* Show menu */
.show-menu {
    right: 0;
}

/* Change background header */
.scroll-header {
    background-color: #2d2d2d;
    box-shadow: 0 1px 4px hsla(0, 4%, 15%, .10);
}

/* Active link */
.active-link {
    color: var(--first-color);
}

.language_box {
    height: 100%;
}

.language_box select {
    width: 180px;
    height: 100%;
    background-color: #232425;
    color: #fff;
    margin-right: 50px;
}

.language_box button {
    background-color: transparent;
    color: #fff;
    font-size: 20px;
}

.logo_div {
    width: 100%;
    height: 140px;
    background-color: #fff;
}

.logo_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    flex-wrap: wrap;
}

.nav_top {
    width: 100%;
    height: 60px;
    background-color: #00285f;
    color: #fff;
}

.nav_top_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_top_list {
    height: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
}

.nav_top_icon {
    display: flex;
    align-items: center;
    color: #000;
    gap: 10px;
}

.top_icon_box {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.nav_item.on p {
    color: #f78b00;
}

.home {
    z-index: 0 !important;
}


.home_text {
    position: absolute;
    max-width: 520px;
    color: #fff;
    text-align: start !important;
    left: 20%;
}

.home_text_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    z-index: 1;
    top: 0;
    border-bottom: 1px solid #fff;
    padding: 10px 0;
}

.home_text_p h4 {
    margin: 10px 0;
}

.home_text_p p {
    font-weight: lighter;
}

.home_btn {
    width: 180px;
    height: 45px;
    font-weight: bold;
    color: #fff;
    background-color: #f78b00;
    margin: 20px 0;
}

.make_inp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.make_inp_box {
    border: 1px solid #ddd;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    width: 22%;
    overflow: hidden;
}

.make_inp_box input,
.make_inp_box select {
    border: none;
    outline: none;
}

.make_inp button {
    width: 70px;
    height: 45px;
    background-color: #00285f;
    color: #fff;
}

.make_div {
    margin: 30px 0;
}

.make_box {
    width: 100%;
    height: 380px;
    background-color: #f9f9f9;
    position: relative;
}

.make_img {
    width: 100%;
    height: 245px;
    background-color: #000;
    position: relative;
}

.make_img_for {
    position: absolute;
    width: 90px;
    height: 35px;
    background-color: #f78b00;
    color: #fff;
    text-align: center;
    line-height: 35px;
    right: 0;
    top: 15px;
}

.max_box_text {
    padding: 20px;
}

.max_box_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.make_wish {
    position: absolute;
    background-color: transparent;
    bottom: 20px;
    right: 30px;
    font-size: 35px;
    color: #e04f5f;
}

.make_box:hover {
    background-color: #fff;
    box-shadow: 1px 1px 20px 3px rgb(0, 0, 0, .2);
}

.popular {
    background-color: #f1f3f7;
}

.popular_img {
    width: 100%;
    height: 207px;
    background-color: #000;
}

.popular_icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popular_icon_box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
}

.popular_text_p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #bbb;
    font-size: 13px;
    margin: 10px 0;
}

.popular_box {
    max-width: 370px;
}

.popular_box:hover {
    box-shadow: 1px 1px 20px 3px rgb(0, 0, 0, .2);
}

.popular_text {
    background-color: #fff;
    padding: 30px;
}

.popular_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.popular_btn {
    width: 110px;
    height: 30px;
    background-color: #f78b00;
    border-radius: 20px;
    color: #fff;
}

.popular_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 100px;
}

.popular_section h1 {
    text-align: center;
}

.review {
    background-color: #000;
    color: #fff;
}

.review_img {
    min-width: 190px;
    height: 180px;
    border: 1px solid #fff;
}

.review_section {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    max-width: 1000px;
    flex-wrap: wrap;
}

.review_text {
    margin-bottom: 100px;
}

.review_btn {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 20px 0;
}

.review_btn button {
    width: 220px;
    height: 45px;
    background-color: #00285f;
    color: #fff;
}

.review_btn p {
    color: #f78b00;
}

.agents {
    text-align: center;
}

.agents_div {
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.agents_img {
    width: 100%;
    height: 270px;
    background-color: #000;
}

.agents_box {
    width: 370px;
}

.agents_box:hover {
    box-shadow: 1px 1px 20px 3px rgb(0, 0, 0, .2);
}

.agents_text {
    padding: 20px 30px;
    background-color: #f9f9f9;
}

.agents_text h3 {
    color: #00285f;
    margin-top: 10px;
}

.agents_text p {
    color: #bbb;
    font-size: 13px;
}

.agents_icon {
    margin-top: 20px;
    width: 100%;
    border-top: 1px solid #ddd;
    padding: 10px;
    font-size: 25px;
}

.agents_box:hover .agents_icon {
    border-top: 2px solid #f78b00;
    background-color: #fff;
}

.contact {
    background-color: #f9f9f9;
}

.contact_inp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact_inp input {
    width: 48%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    outline: none;
}

.contact_inp textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #eee;
    resize: none;
    padding: 10px 0;
    outline: none;
}

.contact_inp button {
    width: 140px;
    height: 45px;
    background-color: #00285f;
    color: #fff;
    margin: 0 auto;
    margin-top: 40px;
}

.contact_section h1 {
    color: #00285f;
    margin-bottom: 50px;
}

.faq_div h3 {
    color: #00285f;
    margin-top: 20px;
}
.faq_div p {
    color: #bbb;
    margin: 10px 0;
    font-size: 13px;
}

.faq_btn_box {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.faq_btn_box button {
    width: 140px;
    height: 45px;
    border: 2px solid #00285f;
    background-color: transparent;
    color: #00285f;
}

.faq_btn_box div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app {
    background-color: #000;
    color: #fff;
}

.app_text {
    margin-top: 130px;
    margin-bottom: 120px;
}

.app_text p {
    color: #bbb;
    font-size: 13px;
}

.app_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 100px;
    margin-bottom: 70px;
}

.app_btn_img {
    width: 100px;
    height: 30px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.app_text input {
    width: 100%;
    background-color: transparent;
    border: none;
    color: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.app_img {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.footer_section {
    max-width: 670px;
    margin: 0 auto;
    text-align: center;
}

.footer_inp {
    width: 100%;
    border: 2px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.footer_inp input {
    border: none;
    background-color: transparent;
    width: 80%;
}

.footer_inp i {
    color: #f78b00;
    font-size: 25px;
}

.footer_icon {
    width: 32px;
    height: 32px;
    border: 1px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_icon_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    margin-bottom: 50px;
}

.footer_section p {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 100px;
}

.footer_logo {
    margin-bottom: 50px;
}

.footer_bottom div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #bbb;
    font-size: 13px;
    border-top: 1px solid #eee;
    padding: 10px 0;
}



@media screen and (min-width: 767px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
    .section {
        padding: 5.5rem 0 1rem;
    }

    .nav {
        height: 70px;
        justify-content: space-between;
        column-gap: 6rem;
        margin: 0 auto;
    }
    .nav_toggle, 
    .nav_close {
        display: none;
    }
    .nav_list {
        flex-direction: row;
    }
    .nav_item {
        padding: 5px 15px;
        border-radius: 15px;
    }
    .nav_link {
        text-transform: initial;
        font-size: var(--normal-font-size);
    }
    .nav_btns {
        margin-left: auto;
    }
    .nav_logo img {
        width: 300px;
    }

    .make_div {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 20px;
    }
    .make_box {
        width: 370px;
        height: 380px;
    }

    .contact_section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .app_section {
        grid-template-columns: repeat(2, 1fr);
    }
    .app_btn_img {
        width: 190px;
        height: 60px;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }
    .popular_img {
        width: 370px;
        height: 207px;
        background-color: #000;
    }
    .agents_img {
        width: 370px;
        height: 270px;
        background-color: #000;
    }
    .review_section {
        display: flex;
        align-items: flex-start;
        gap: 50px;
        max-width: 1000px;
        flex-wrap: nowrap;
    }
}