@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,600&display=swap');
@import "cssreset.css";
@import "landing-page/top-section.css";
@import "landing-page/introduction-section.css";
@import "landing-page/product-section.css";
@import "landing-page/symptom-section.css";
@import "landing-page/symptom2-section.css";
@import "landing-page/summary-section.css";
@import "landing-page/success-section.css";


html {
    height: 100%;
  }
body{
    position:absolute; 
    top:0; 
    bottom:0; right:0; left:0; }

/*전체 팜플렛의 위치 모니터 크기를 고려한 스펙*/
.container{
    max-width: 1150px;
    margin: 0 auto;
}

header{
    margin:0px;
    padding:0px;
    width: 100%;
    float:right;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    display: fixed;
}

header nav{
    width: 100%;
    float:right;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    background-color:#fff;
    display: flex;
    justify-content: space-between;
    align-items: right;
    position:fixed;
    z-index:3;
    border-bottom: 1px solid rgba(128, 128, 128, 0.43);
}

header .signature{
    display: flex;
    flex-direction: row;
    align-items: center;
}
header .logo a img{
    display: flex;
    width: 120px;
    padding:5px 10px;

}

header .text{
    display: flex;
    flex-direction: row;
}
header .text1{
    font-size:1rem;
    text-align: left;
    color:grey;
    float:left;
    margin:10px;
    padding:0;
}
header .text2{
    font-size:1rem;
    text-align: left;
    font-weight: 300;
    margin:10px;
}
header .text3{
    font-size:1rem;
    text-align: left;
    margin:10px;
}
header .navigation{
    text-align: center;
    padding-right: 12px;
}

header .menu{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    z-index:1;
    transition: 0.5s;
    text-align: center;
}

header .menu span{
    display: inline-block;
    vertical-align: bottom;
    line-height: normal;
}


header .menu li{
    list-style-type:none;
}

header .menu li a{
    color:grey;
    font-size: 1.6rem;
    text-decoration: none;
    display: block;
    padding: 0px 40px;
    line-height: 1;
    font-weight: 600;
    transition: 0.3s;

}

header .menu li a:hover{
    color:black;
    font-weight: 605;
}

/*Hamburger symbol*/
header .hamburger{
    position:relative;
    width: 25px;
    height: 4px;
    background-color: grey;
    border-radius: 10px;
    z-index:4;
}

header .hamburger:before, .hamburger:after{
    content:"";
    position:absolute;
    height: 4px;
    right: 0;
    background-color: grey;
    border-radius: 10px;
    transition: 0.3s;
    z-index: 2;
}

header .hamburger:before{
    top:-10px;
    width: 25px;
}

header .hamburger:after{
    top:10px;
    width: 25px;
}

/*toggle menu*/
header .toggle-menu{
    position: absolute;
    width: 30px;
    height: 100%;
    z-index:3;
    cursor: pointer;
    opacity: 0;
}

/*webstie 안보임*/
header .hamburger,.toggle-menu{
    display: none;
}


/*check 하면 가운데 반응*/
header .navigation input:checked ~ .hamburger{
    background-color: transparent;
    display: none;
    position: absolute;
    left: 339px;
    display: flex;
    cursor: pointer;
}
/*check 하면 위에 반응*/
header .navigation input:checked ~ .hamburger:before{
    top:0;
    transform: rotate(-45deg);
    width: 30px;
}
/*check 하면 아래 반응*/
header .navigation input:checked ~ .hamburger:after{
    top:0;
    transform: rotate(45deg);
    width: 30px;
}
/*check 하면 메뉴 반응*/
header .navigation input:checked ~.menu {
    right: 0;
    box-shadow: -20px 0 40px rgb(106, 97, 97);
}

/*tablet*/
@media only screen and (max-width: 1024px){
    header .signature .text{
        display: flex;
        flex-direction: column;
    }
    header .signature .text1 {
        font-size: 0.8rem;
        padding:0;
        margin:0;
    }
    header .signature .text2 {
        font-size: 0.8rem;
        padding:0;
        margin:0;
    }
    header .signature .text3 {
        font-size: 0.8rem;
        padding:0;
        margin:0;
    }
    header .logo a img{
        width: 100px;
    }

    header .menu li a {
        color: grey;
        font-size: 1.2rem;
        padding: 15px 16px;
    }
    header .menu li a:hover{
        font-weight: 1000;
    }

    header .signature .text {
        display: none;
    }
}

/*Phones*/
@media only screen and (max-width: 767px){
    html {
        height: 100%;
      }
    body{
        position:absolute; 
        top:0; 
        bottom:0; right:0; left:0; 
    }
    header .signature .text1 {
        display: none;
    }
    header .signature .text2 {
        display: none;
    }
    header .signature .text3 {
        display: none;
    }
    header .navigation{
        align-content: left;
    }
    header .hamburger,.toggle-menu{
        display: block;
    }
    header .menu{
        justify-content: start;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top:0;
        right: -300px; /*뒤에 숨겻음*/
        width: 180px;
        height: 100%;
        padding-top: 70px;
        background-color:rgba(255, 255, 255, 0.954);
        z-index: 2;
    }

    /*menu 영역 표시하기*/
    header .menu li {
        width: 100%;
    }
    header .menu li a{
        padding:20px; /*글자 간격*/
        border-bottom: 0.5px solid grey;
    }
    header .menu li a:hover{
        color:#c70851;
    }
    header

}
