@font-face { 
    font-family: "Freesentation-4Regular";
    src: url("../fonts/Freesentation-4Regular.ttf") format("truetype");
    font-weight: normal;
  } 
@font-face { 
    font-family: "Freesentation-7Bold";
    src: url("../fonts/Freesentation-7Bold.ttf") format("truetype");
    font-weight: bold;
} 
#wrap * {
    font-family: 'Freesentation-4Regular';
}

header {
    padding: 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}

.header_wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    width: 60%;
    font-size: 16px;
}

header img {
    width: 17%;
    height: 17%;
}

header ul {
    display: flex;
    gap: 1rem;
    width: 40%;
    justify-content: flex-end;
}

header ul li {
    padding: .5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
}

header ul li a {
    text-decoration: none;
    font-size: 18px;
}

/* .selected a {
    color: #780617;
    font-weight: 600;
} */

.header_mo {
    display: none;
}

body {
    margin-top: 95px;
    padding-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1200px) {
    header a {
        font-size: 20px;
    }
    .header_wrap {
        width: 100%;
        max-width: unset;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 15px;
    }
    header a {
        width: 100%;
        text-align: center;
    }
    header img {
        width: 15%;
        height: 15%;
    }
    header ul {
        display: flex;
        gap: 1rem;
        width: 100%;
        justify-content: space-around
    }
}
@media screen and (max-width: 767px) {
    .header_wrap {
        width: 100%;
        max-width: unset;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 15PX;
    }
    header a {
        width: 100%;
        font-size: 14px;
        text-align: center;
    }
    header img {
        width: 25%;
        height: 20%;
    }
    header ul {
        display: flex;
        gap: .5rem;
        width: 100%;
        justify-content: space-around
    }
    header ul li a {
        text-decoration: none;
        font-size: 16px;
    }
}