@charset "UTF-8";

@media print, screen and (min-width:1200px) {

#topHead {
position: fixed;
background-color: #fff;
width: 100%;
height: 100px;
margin: 0 auto;
padding: 0 0 0 30px;
top: 0;
left: 0;
right: 0;
z-index: 1000;
transition: .3s;
display: flex;
justify-content: space-between;
align-items: center;
}

#topHead.fixed {
background-color: #fff;
}

#topHead #logo {
position: relative;
width: 300px;
z-index: 1;
top: -5px;
}

#topHead #globalNav ul {
position: absolute;
width: 100%;
display: flex;
justify-content: flex-end;
white-space: nowrap;
top: 34px;
right: 490px;
}

#topHead #globalNav ul li {
text-align: center;
margin: 0 15px;
}

#topHead #globalNav ul li a {
position: relative;
font-size: 1.4rem;
font-weight: 700;
color: var(--txtColor);
text-decoration: none;
margin: 0;
padding: 0;
line-height: 1;
}

#topHead #globalNav ul li a::after {
position: absolute;
background-color: var(--themeColor);
content: "";
width: 100%;
height: 2px;
bottom: -6px;
left: 0;
-webkit-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: left top;
transform-origin: left top;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}

#topHead #globalNav ul li a:hover::after {
transform: scale(1, 1);
}

#x a i {
position: relative;
font-size: 2rem;
top: 1.5px;
}

.globalCallBtn {
position: absolute;
background-color: #E48202;
width: 270px;
height: 100px;
font-size: 1.1rem;
font-weight: 700;
border: 2px solid #E48202;
line-height: 1.2;
top: 0;
right: 205px;
transition: .3s;
}

.globalCallBtn:hover {
background-color: #fff;
color: #E48202;
}

.globalCallBtn:hover .globalCallIcon {
border: 2px solid #E48202;
}

.globalCallBtn a:hover {
color: #E48202;
}

.globalCallNumber {
font-family: var(--font-barlow);
font-size: 3rem;
font-weight: 700;
display: flex;
justify-content: center;
align-items: center;
}

.globalCallIcon {
position: relative;
width: 30px;
height: 30px;
font-size: 1.4rem;
text-align: center;
margin-right: 5px;
padding-left: 1px;
border: 2px solid #fff;
border-radius: 30px;
line-height: 26px;
top: 2px;
}

.globalCallBtn a {
color: #fff;
display: block;
padding: 15px 0;
}

.globalRecruitBtn {
position: absolute;
background-color: #0000fd;
width: 90px;
height: 100px;
font-size: 1.4rem;
font-weight: 700;
border: 2px solid #0000fd;
line-height: 1.5;
top: 0;
right: 115px;
transition: .3s;
}

.globalContactBtn {
position: absolute;
background-color: var(--themeColor);
width: 115px;
height: 100px;
font-size: 1.4rem;
font-weight: 700;
border: 2px solid var(--themeColor);
line-height: 1.5;
top: 0;
right: 0;
transition: .3s;
}

.globalRecruitBtn:hover,
.globalContactBtn:hover {
background-color: #fff;
}

.globalRecruitBtn span,
.globalContactBtn span {
display: block;
}

.globalRecruitBtn i{
position: relative;
font-size: 2.6rem;
top: -3px;
}

.globalContactBtn i {
font-size: 2.6rem;
}

.globalRecruitBtn a,
.globalContactBtn a {
color: #fff;
display: block;
padding: 24px 0;
}

.globalRecruitBtn a:hover {
color: #0000fd;
}

.globalContactBtn a:hover {
color: var(--themeColor);
}

.hamburger {
display: none !important;
}

}

@media print, screen and (max-width:1199px) {

#topHead {
position: fixed;
background-color: #fff;
width: 100%;
height: 70px;
top: 0;
left: 0;
right: 0;
margin: 0 auto;
z-index: 500;
transition: .3s;
}

#topHead.fixed {
background-color: #fff;
}

#topHead #logo {
position: absolute;
width: 230px;
margin: auto;
left: 15px;
top: 10px;
}

.hamburger {
position: fixed;
display: block;
width: 52px;
right: 5px;
top: 15px;
height: 42px;
cursor: pointer;
text-align: center;
z-index: 1004;
}

.hamburger span {
position: absolute;
background-color: var(--themeColor);
display: block;
width: 30px;
height: 2px ;
left: 10px;
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
top: 10px;
}

.hamburger span:nth-child(2) {
top: 18px;
}

.hamburger span:nth-child(3) {
top: 26px;
}

.hamburger.active span:nth-child(1) {
top: 20px;
left: 10px;
background: #fff;
transform : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
top: 20px;
background: #fff;
transform : rotate(45deg);
}

.globalCallBtn,
.globalRecruitBtn,
.globalContactBtn {
display: none;
}

#globalNav {
position: fixed;
background-color: var(--themeColor);
z-index : 1001;
top: 0;
left: 0;
color: #fff;
text-align: center;
width: 100%;
height: 100%;
transform: translateX(-100%);
transition: all 0.6s;
}

#globalNav.active {
opacity: 1;
display: block;
transform: translateX(0%);
}

#globalNav ul {
position: absolute;
width: 250px;
margin: auto;
text-align: center;
left: 0;
right: 0;
top: 30%;
transform: translateY(-30%) ;
}

#globalNav ul li {
position: relative;
width: 100%;
text-align: left;
margin: 0 auto;
transition: .3s;
}

#globalNav ul li a {
position: relative;
font-size: 1.3rem;
font-weight: 700;
color: #fff;
display: block;
text-decoration: none;
padding: 10px;
line-height: 1.5;
}

#globalNav ul li::before {
position: absolute;
width: 10px;
height: 10px;
content: "";
margin: auto;
border-top: 1px solid #fff;
border-right: 1px solid #fff;
transform: rotate(45deg);
right: 15px;
top: 0;
bottom: 0;
transition: .5s;
}

}