@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic+Coding&display=swap');
/* font-family: 'Playfair Display', serif;
font-family: 'Poppins', sans-serif; */
/* font-family: 'Nanum Gothic Coding', monospace; */



@media screen and (max-width:750px){
    #wrap{
        width: 100%;
        height: auto;
    }
    header{
        width:100%;
        height:90px ;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: 'Poppins', sans-serif;
        color: #000;
    }
    .hidden{
        height: 100%;
        min-height: 100%;
        overflow: hidden;
        touch-action: none;
    }
    #clickmenu{
        width: 0%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background-color: #000;
        z-index: 99;
        overflow: hidden;
        transition: all 0.5s ease-out;
        font-family: 'Poppins', sans-serif;
        /* opacity: 0; */
       
    }
    #clickmenu ul{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* position: ; */

    }
    #clickmenu li{
        width: 100%;
        margin: 30px 0;
        text-align: center;
    }
    #clickmenu li a{
        width: 100%;
        /* text-align: center; */
        /* display: block; */
        padding: 10px 0;

    }
 
    #clickmenu button{
        position: absolute;
        right: 20px;
        top: 40px;
        cursor: pointer;
        border: none;
        background-color: #000;
        color: #fff;
        outline: none;
        font-size: 25px;
    }
    #logo{
        width: 75px;
        height: 55px;
        /* background-color: #272727; */
        margin-left: 5px;
    
    }
    #logo img{
        width: 100%;
    }
    nav>ul{
        display: none;
    }
    #menu{
        width: 35px;
        height: 40px;
        margin-right: 5px;
        /* display: none; */
        cursor: pointer;
    }
    #menu img{
        width: 100%;
        height: 100%;
    }
    .under{
        padding: 33px 15px;
        color: #333;
        position: relative;
    
    }
    
    .under::after{
        content: "";
        display: block;
        height: 3px;
        background-color: #fad091;
        position: absolute;
        bottom:0;
        left:50%;
        width: 0;
    }
    .under:hover{
        color: #fad091;;
    }
    .under:hover::after{
        width: 100%;
        left:0%;
        transition: all 0.5s ease;
    }
    .under_home{
        color: #fad091;
    }
    .under_home::after{
        width: 100%;
        left: 0%;
    }
    
    footer{
        width: 100%;
        height: 1300px;
        background-color: #272727;
        /* transform: translate(0, 50px); */
        /* transition: 0.8s ease-out; */
        font-family: 'Poppins';
        font-size: 14px;
    
    }
    #foot{
        width: 100%;
        height: 100%;
        /* background-color: aqua; */
        display:  flex;
        padding: 0 20px;
        flex-direction: column;
        justify-content: space-around;
    }
    #footlogo{
        width: 100px;
        height: 55px;
        border-radius: 5px;
        background-color: rgba(170, 170, 170,0.2);
        background-image: url(../img/main/logo.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 75%;
        margin-bottom: 20px;
    }
    
    #foot>div{
        width:100%;
        /* background-color: aqua; */
        display: flex;
        flex-direction: column;
        color: #fff;
    }
    
    #foot h3{
        height: 75px;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
    }
    #foot li{
        width: 90%;
        padding: 5px 0;
        /* background-color: #fad091 ; */
    
    }
    #foot ul li>a{
        color: #fff;
    }
    #foot .row{
        /* height: 100px; */
        display: flex;
        flex-direction: row;
    }
    #foot input[type='text']{
        background: rgba(255, 255, 255, 0.05) ;
        border: none ;
        outline: none;
        padding: 0 0 0 10px;
        width: 80%;
        height: 50px;
        border-radius: 5px;
        color: #fff;
    }
    /* #foot input[type='submit']{
        background-color: #fad091 ;
        border: none ;
        outline: none;
        padding: 18px 15px;
        height: 50px;
        width: 20%;
        border-radius: 0px 5px 5px 0;
        margin-left: -15px;
    } */
    #foot button{
        background-color: #fad091 ;
        border: none ;
        outline: none;
        /* padding: 18px 15px; */
        height: 50px;
        width: 10%;
        cursor: pointer;
        border-radius: 0px 5px 5px 0;
        margin-left: -15px;
        background-image: url(../img/main/search.png);
        background-position: center;
        background-size: 55%;
        background-repeat: no-repeat;
    }
    /* #foot button img{
        width: 100%;
    } */
    #follow{
        margin-top: 30px;
        height: 50px !important;
    }
    #foot .sns{
        width: 40px;
        height: 40px;
        /* background-color: #fad091; */
        border-radius: 5px;
        margin-right: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-image: url(../img/main/twitter.png);
        background-position: center;
        /* background-size: cover; */
        background-size: 60%;
        background-repeat: no-repeat;
    }
    #foot .sns:nth-of-type(2){
        background-image: url(../img/main/facebook.png);
    }
    #foot .sns:nth-of-type(3){
        background-image: url(../img/main/insta.png);
    }
    
}
@media screen and (min-width:751px) and (max-width:1199px){
   
    #wrap{
        width: 100%;
        height: auto;
    }
    header{
        width: 100%;
        height:90px ;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: 'Poppins', sans-serif;
        color: #000;
    }
    #logo{
        width: 75px;
        height: 55px;
        /* background-color: #272727; */
    
    }
    #logo img{
        width: 100%;
    }
    nav>ul{
        display: flex;
    }
    #menu{
        width: 35px;
        height: 40px;
        display: none;
    }
    #menu img{
        width: 100%;
        height: 100%;
    }
    #clickmenu{
        display: none;
    }
    .under{
        padding: 33px 15px;
        color: #333;
        position: relative;
    
    }
    
    .under::after{
        content: "";
        display: block;
        height: 3px;
        background-color: #fad091;
        position: absolute;
        bottom:0;
        left:50%;
        width: 0;
    }
    .under:hover{
        color: #fad091;;
    }
    .under:hover::after{
        width: 100%;
        left:0%;
        transition: all 0.5s ease;
    }
    .under_home{
        color: #fad091;
    }
    .under_home::after{
        width: 100%;
        left: 0%;
    }
   
    footer{
        width: 100%;
        height: 700px;
        background-color: #272727;
        /* transform: translate(0, 50px); */
        /* transition: 0.8s ease-out; */
        font-family: 'Poppins';
        font-size: 14px;
    
    }
    #foot{
        width: 100%;
        height: 100%;
        margin: 0 auto;
        /* background-color: aqua; */
        display:  flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-content: space-around;
    }
    #footlogo{
        width: 100px;
        height: 55px;
        border-radius: 5px;
        background-color: rgba(170, 170, 170,0.2);
        background-image: url(../img/main/logo.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 75%;
        margin-bottom: 20px;
    }
    
    #foot>div{
        width: 40%;
        height:40%;
        /* background-color: aqua; */
        display: flex;
        flex-direction: column;
        color: #fff;
    }
    
    #foot h3{
        height: 75px;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
    }
    #foot li{
        width: 90%;
        padding: 5px 0;
        /* background-color: #fad091 ; */
    
    }
    #foot ul li>a{
        color: #fff;
    }
    #foot .row{
        /* height: 100px; */
        display: flex;
        flex-direction: row;
    }
    #foot input[type='text']{
        background: rgba(255, 255, 255, 0.05) ;
        border: none ;
        outline: none;
        padding: 0 0 0 10px;
        width: 80%;
        height: 50px;
        border-radius: 5px;
        color: #fff;
    }
    /* #foot input[type='submit']{
        background-color: #fad091 ;
        border: none ;
        outline: none;
        padding: 18px 15px;
        height: 50px;
        width: 20%;
        border-radius: 0px 5px 5px 0;
        margin-left: -15px;
    } */
    #foot button{
        background-color: #fad091 ;
        border: none ;
        outline: none;
        /* padding: 18px 15px; */
        height: 50px;
        width: 15%;
        cursor: pointer;
        border-radius: 0px 5px 5px 0;
        margin-left: -15px;
        background-image: url(../img/main/search.png);
        background-position: center;
        background-size: 55%;
        background-repeat: no-repeat;
    }
    /* #foot button img{
        width: 100%;
    } */
    #follow{
        margin-top: 30px;
        height: 50px !important;
    }
    #foot .sns{
        width: 40px;
        height: 40px;
        /* background-color: #fad091; */
        border-radius: 5px;
        margin-right: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-image: url(../img/main/twitter.png);
        background-position: center;
        /* background-size: cover; */
        background-size: 60%;
        background-repeat: no-repeat;
    }
    #foot .sns:nth-of-type(2){
        background-image: url(../img/main/facebook.png);
    }
    #foot .sns:nth-of-type(3){
        background-image: url(../img/main/insta.png);
    }
    
}
@media screen and (min-width:1200px){
  
    #wrap{
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    header{
        width: 1100px;
        height:90px ;
        margin: 0 auto;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: 'Poppins', sans-serif;
        color: #000;
    }
    #logo{
        width: 75px;
        height: 55px;
        /* background-color: #272727; */
    
    }
    #logo img{
        width: 100%;
    }
    nav>ul{
        display: flex;
    }
    #menu{
        width: 35px;
        height: 40px;
        display: none;
    }
    #menu img{
        width: 100%;
        height: 100%;
    }
    #clickmenu{
        display: none;
    }
    .under{
        padding: 33px 15px;
        color: #333;
        position: relative;
    
    }
    
    .under::after{
        content: "";
        display: block;
        height: 3px;
        background-color: #fad091;
        position: absolute;
        bottom:0;
        left:50%;
        width: 0;
    }
    .under:hover{
        color: #fad091;;
    }
    .under:hover::after{
        width: 100%;
        left:0%;
        transition: all 0.5s ease;
    }
    .under_home{
        color: #fad091;
    }
    .under_home::after{
        width: 100%;
        left: 0%;
    }
   
    footer{
        width: 100%;
        height: 430px;
        background-color: #272727;
        /* transform: translate(0, 50px); */
        /* transition: 0.8s ease-out; */
        font-family: 'Poppins';
        font-size: 14px;
    
    }
    #foot{
        width: 1100px;
        height: 100%;
        margin: 0 auto;
        /* background-color: aqua; */
        display:  flex;
        justify-content: space-between;
        align-items: center;
    }
    #footlogo{
        width: 100px;
        height: 55px;
        border-radius: 5px;
        background-color: rgba(170, 170, 170,0.2);
        background-image: url(../img/main/logo.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 75%;
        margin-bottom: 20px;
    }
    
    #foot>div{
        width: 24%;
        height:70%;
        /* background-color: aqua; */
        display: flex;
        flex-direction: column;
        color: #fff;
    }
    
    #foot h3{
        height: 75px;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
    }
    #foot li{
        width: 90%;
        padding: 5px 0;
        /* background-color: #fad091 ; */
    
    }
    #foot ul li>a{
        color: #fff;
    }
    #foot .row{
        /* height: 100px; */
        display: flex;
        flex-direction: row;
    }
    #foot input[type='text']{
        background: rgba(255, 255, 255, 0.05) ;
        border: none ;
        outline: none;
        padding: 0 0 0 10px;
        width: 80%;
        height: 50px;
        border-radius: 5px;
        color: #fff;
    }
    /* #foot input[type='submit']{
        background-color: #fad091 ;
        border: none ;
        outline: none;
        padding: 18px 15px;
        height: 50px;
        width: 20%;
        border-radius: 0px 5px 5px 0;
        margin-left: -15px;
    } */
    #foot button{
        background-color: #fad091 ;
        border: none ;
        outline: none;
        /* padding: 18px 15px; */
        height: 50px;
        width: 20%;
        cursor: pointer;
        border-radius: 0px 5px 5px 0;
        margin-left: -15px;
        background-image: url(../img/main/search.png);
        background-position: center;
        background-size: 55%;
        background-repeat: no-repeat;
    }
    /* #foot button img{
        width: 100%;
    } */
    #follow{
        margin-top: 30px;
        height: 50px !important;
    }
    #foot .sns{
        width: 40px;
        height: 40px;
        /* background-color: #fad091; */
        border-radius: 5px;
        margin-right: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-image: url(../img/main/twitter.png);
        background-position: center;
        /* background-size: cover; */
        background-size: 60%;
        background-repeat: no-repeat;
    }
    #foot .sns:nth-of-type(2){
        background-image: url(../img/main/facebook.png);
    }
    #foot .sns:nth-of-type(3){
        background-image: url(../img/main/insta.png);
    }
    
}
