@charset "UTF-8";

@media print, screen and (min-width:1200px) {

#topHead {
position: fixed;
background-color: #fff;
width: 95%;
height: 60px;
margin: auto;
border-radius: 100px;
top: 20px;
left: 0;
right: 0;
z-index: 500;
transition: .3s;
}

#topHead #logo {
position: absolute;
background: url("../img/logo.png") no-repeat;
background-size: 245px;
width: 245px;
height: 36px;
top: 50%;
left: 20px;
transform: translateY(-50%);
}

#topHead #logo a span {
width: 245px;
height: 36px;
font-size: 0;
display: block;
text-indent: -10000px;
}

#topHead #globalNav ul {
position: absolute;
right: 20px;
top: 13px;
display: flex;
justify-content: flex-end;
z-index: 501;
}

#topHead #globalNav ul li {
position: relative;
height: 60px;
margin-left: 30px;
cursor: pointer;
}

#topHead #globalNav ul li a {
position: relative;
font-size: 1.5rem;
text-decoration: none;
}

#topHead #globalNav ul li a::after {
position: absolute;
background-color: var(--subColor);
content: "";
width: 100%;
height: 1px;
bottom: -3px;
left: 0;
transform: scale(0, 1);
transform-origin: left top;
transition: all 0.3s ease;
}

#topHeadCo #globalNav ul li a::after {
background-color: var(--themeColor);
}

#topHead #globalNav ul li a:hover::after {
transform: scale(1, 1);
}

#topHead #globalNav ul li a span {
position: absolute;
width: 6px;
height: 6px;
border-right: 1px solid var(--subColor);
border-bottom: 1px solid var(--subColor);
transform: rotate(45deg);
top: 8px;
right: 0;
}

#topHead #globalNav ul .pr a {
padding-right: 17px;
}

#topHead #globalNav ul .cn a {
pointer-events: none;
}

.globalSubNav {
position: absolute;
background-color: #fbffe5;
width: 250px;
margin: auto;
padding: 16px 24px 20px;
border-radius: 10px;
display: none !important;
white-space: nowrap;
left: -24px;
top: 42px !important;
overflow: visible;
transition: .6s;
z-index: 510;
box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.globalSubNav::before {
position: absolute;
width: 0;
height: 0;
content: "";
margin: auto;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #fbffe5;
left: 45px;
top: -10px;
}

.globalSubNav li {
height: 28px !important;
margin-left: 0 !important;
text-align: left !important;
}

.globalSubNav li a {
pointer-events: auto !important;
}

.globalSubNav li a::after {
display: none;
}

#topHead #globalNav ul li:hover .globalSubNav {
display: block !important;
animation: fadeIn 0.3s ease-in 0s forwards;
}

@keyframes fadeIn {
0% {
display: none;
opacity: 0;
}

1% {
display: block;
opacity: 0;
}

100% {
display: block;
opacity: 1;
}
}

#topHead .navContact a {
position: relative;
background-color: var(--subColor);
width: 120px;
height: 34px !important;
color: #fff;
text-align: center;
display: block;
padding: 0;
border: 1px solid var(--subColor);
border-radius: 100px;
line-height: 30px;
}

#topHeadCo .navContact a {
color: #fff !important;
}

#topHead .navContact a:after {
display: none;
}

#topHead.fixed .navContact a {
color: #fff !important;
}

#topHead .navContact a:hover {
background-color: #fff;
color: var(--subColor) !important;
}

#topHead,
#topHead #logo,
#topHead #globalNav ul,
#topHead #call,
#topHead #contact{
transition: all .3s ease;
}

.openbtn {
display: none;
}

.gNav,
#btnContact {
display: none !important;
}

}

@media print, screen and (max-width:1199px) {

#topHead {
position: fixed;
background-color: #fff;
width: 95%;
height: 60px;
margin: auto;
top: 10px;
left: 0;
right: 0;
z-index: 500;
transition: .3s;
border-radius: 100px;
}

#topHead #logo {
position: absolute;
background: url("../img/logo.png") no-repeat;
background-size: 200px;
width: 200px;
height: 26px;
top: 50%;
left: 20px;
transform: translateY(-50%);
}

#topHead #logo a span {
width: 200px;
height: 26px;
font-size: 0;
display: block;
text-indent: -10000px;
}

#topHead #globalNav ul{
display: none;
}

#topHead #contact {
display: none;
}

.openbtn {
position: fixed;
width: 30px;
height: 30px;
top: 25px;
right: 30px;
cursor: pointer;
z-index: 9999;
}

.openbtn span {
position: absolute;
background-color: var(--subColor);
width: 30px;
height: 1px;
display: inline-block;
margin: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
transition: all .4s;
}

.openbtn span {
background-color: var(--subColor);
}

.openbtn.fixed span {
background-color: var(--subColor);
}

.openbtn span:nth-of-type(1) {
top: -11px;
}

.openbtn span:nth-of-type(2) {
top: 11px;
}

.openbtn.active span:nth-of-type(1) {
top: 0;
left: 0;
transform: translateY(-2px) rotate(-45deg);
width: 30px;
}

.openbtn.active span:nth-of-type(2) {
top: 0;
left: 0;
transform: translateY(-2px) rotate(45deg);
width: 30px;
}

.toggleMenu {
position: relative;
cursor: pointer;
padding-right: 17px;
}

.toggleMenu span {
position: absolute;
width: 6px;
height: 6px;
border-right: 1px solid var(--subColor);
border-bottom: 1px solid var(--subColor);
transform: rotate(45deg);
top: 8px;
right: 0;
}

.gNav {
position: fixed;
background-color: #fbffe5;
width: 100%;
height: 100%;
padding: 60px 80px;
z-index: -1;
opacity: 0;
top: 0;
transition: all 0.3s;
display: none;
overflow: auto;
}

.gNav.panelactive {
opacity: 1;
z-index: 999;
}

.gNav ul {
position: relative;
width: 100%;
margin: 0 auto;
}

.gNav ul li {
position: relative;
text-align: left;
margin: 12px auto;
padding-bottom: 14px;
border-bottom: 1px solid #F1EDEB;
}

.gNav ul li a {
position: relative;
width: 100%;
font-size: 1.4rem;
color: var(--txtColor);
text-decoration: none;
display: block;
line-height: 1.5;
}

.globalSubNav {
position: relative;
display: none;
}

.globalSubNav ul {

}

.globalSubNav li {
margin: 10px 15px !important;
padding-bottom: 0 !important;
border-bottom: 0  !important;
}

}