*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: inherit;
}
a {
    text-decoration: none;
}
ul,
ol,
li {
    list-style: none;
    text-decoration: none;
	color: inherit;
    margin: 0;
	padding: 0;
}
img {
    vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
    margin: 0;
	padding: 0;
}
html,
body {
    font-family: Microsoft JhengHei UI Light;;
    height: 100%;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    box-sizing: border-box;
}
.wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.logo_1 {
    width: 250px;
    height: 150px;
}

.header {
    background-color: white;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 140px;
    z-index: 10;
}
.header__container {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 30px;
    align-items: center;
    justify-content: space-between;
    height: 140px;
}
.header__logo {
    position: relative;
    z-index: 5;
}

.logo_1 {
}
.header__menu {
}
.menu {
}
.menu_icon {
    display: none;
}
.menu__body {
}
.menu__list {
}
.menu__list > li {
    position: relative;
    margin: 0 0 0 20px;
}
.menu__link {
    font-size: 18px;
    color: black;
}
.menu__link:hover {
    text-decoration: underline;
}
.menu__sub-list {
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0px;
    color: black;
    min-width: 200px;
}
.menu__sub-list li {
    margin: 5px 0 20px 0;
    
}
.menu__sub-list li:last-child {
    margin: 0;
}
.menu__sub-link {
    color: black;
    
}
.menu__sub-link:hover {
    text-decoration: underline;
}
.menu__arrow {
    display: none;
}

/*--------------------------*/
body._pc .menu__list > li:hover .menu__sub-list {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    pointer-events: all;
}
body._touch .menu__list > li {
    display: flex;
    align-items: center;
}
body._touch .menu__link {
   flex: 1 1 auto;
}
body._touch .menu__arrow {
    display: block;
    width: 0;
    height: 0;
    margin: 2px 0 0 10px;
    transition: transform 0.3s ease 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid black;
}

body._touch .menu__list > li._active .menu__sub-list {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    pointer-events: all;
}
body._touch .menu__list > li._active .menu__arrow {
    transform: rotate(-180deg);

}

/*--------------------------*/
@media (min-width: 1040px) {
    .menu__list {
        display: flex;
        align-items: center;
    }
    .menu__list > li {
        padding: 10px 0;
    }
    .menu__sub-list {
        transform: translate(0px, 10%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease 0s;
    }
}
@media (max-width: 1040px) {
    .menu_icon {
        z-index: 5;
        display: block;
        position: relative;
        width: 30px;
        height: 18px;
        cursor: pointer;
    }
    .menu_icon span,
    .menu_icon::before,
    .menu_icon::after {
        left: 0;
        position: absolute;
        height: 10%;
        width: 100%;
        transition: all 0.3s ease 0s;
        background-color: black;
    }
    .menu_icon::before,
    .menu_icon::after {
        content: "";
    }
    .menu_icon::before {
        top: 0;
    }
    .menu_icon::after {
        bottom: 0;
    }
    .menu_icon span {
        top: 50%;
        transform: scale(1) translate(0px, -50%);
    }
    .menu_icon._active span {
        transform: scale(0) translate(0px, -50%);
    }
    .menu_icon._active::before {
        top: 50%;
        transform: rotate(-40deg) translate(0px, 0%);
    }
    .menu_icon._active::after {
        top: 50%;
        transform: rotate(40deg) translate(0px, 0%);
    }
    .menu__body {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: white(223, 223, 223);
        padding: 100px 30px 30px 30px;
        transition: all 0.3s ease 0s;
        overflow: auto;
    }
    .menu__body._active {
        background-color: rgb(255, 255, 255);
        left: 0;
        margin-top: 50px;
    }
    .menu__body::before {
        content: "";
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        height: 100px;
        background-color:rgb(255, 255, 255);
        z-index: 2;
      
    }
    .menu__list > li {
        flex-wrap: wrap;
        margin: 0px 0px 30px 0px;
    }
    .menu__list > li:last-child {
        margin-bottom: 0;
    }
    .menu__list > li._active .menu__sub-list {
        display: block;
    }
    .menu__link {
        font-size: 26px;
        margin-top: 20px;
    }
    .menu__sub-list {
        position: relative;
        flex: 1 1 100%;
        margin: 20px 0px 0px 0px;
        display: none;
    }
    .menu__sub-link {
        font-size: 20px;
        color: black;
    }
}

/*------------------------------HEADER---------------------------------*/

/*------------------------------GRID---------------------------------*/

.grid-contact {
    margin-top: 150px;
    margin-left: auto;
    margin-right: auto;
    width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
 .contacts {
    margin-left: auto;
    margin-right: auto;
    width: 1300px;
    margin-top: 50px;
    letter-spacing: 1px;
    line-height: 2;
 }
 .contacts h1 {
    font-size: 25px;
 }
 .contacts h2 {
    font-size: 25px;
 }

 @media (max-width: 1214px) {
    .grid-contact {
        width: auto;
    }
    iframe {
        width: 450px;
    }
    .map {
        width: 500px;
    }
 }
 @media (max-width: 952px) {
    .grid-contact {
        grid-template-columns: 1fr;
    }
    .map {
        margin-bottom: 50px;
    }
 }
 @media (max-width: 454px) {
    iframe {
        width: 385px;
    }
 }
/*------------------------------GRID---------------------------------*/
