@charset "UTF-8";

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	header
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
header {    
    background: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 8;
    box-shadow: 0px 4px 4px rgba(34, 34, 34, 0.2);
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	headertop
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.headertop{
    padding: 12px 0;
}
.headertop__inner{
    max-width: 1025px;
	padding: 0 24px;
	margin: 0 auto;
    display: flex;
	justify-content: space-between;
	align-items: center;
}
.headertop__inner--left a img{
    height: 64px;
}
.headertop__inner--right{
    display: flex;
	justify-content: space-between;
	align-items: center;
}
.headertop__inner--right a img.line{
    width: 64px;
}
.headertop__inner--right a:nth-of-type(2){
    margin-left: 16px;
}
.headertop__inner--right a img.form{
    height: 64px;
}
@media only screen and (max-width: 768px) {
    .headertop__inner{
        max-width: 100%;
        padding: 0 20px;
    }
    .headertop__inner--left a img{
        height: 40px;
        width: 94.38px;
    }
    .headertop__inner--right a img.line{
        width: 40px;
    }
}

/*nav
———————————————————————————————————————————————————————————————————*/
.headertop__inner--right--nav {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    margin-left: 8px;
    cursor: pointer;
    border: 1px #222 solid;
}
.headertop__inner--right--nav span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: #FB9B23;
}
.headertop__inner--right--nav span:before,
.headertop__inner--right--nav span:after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FB9B23;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.headertop__inner--right--nav span:before {
    -webkit-transform: translate(0, -350%);
    transform: translate(0, -350%);
}
.headertop__inner--right--nav span:after {
    -webkit-transform: translate(0, 350%);
    transform: translate(0, 350%);
}
.show .headertop__inner--right--nav span {
    background: transparent;
}
.show .headertop__inner--right--nav span:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.show .headertop__inner--right--nav span:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	headerbottom
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.headerbottom{
    background: #FB9B23;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	headerbottom__inner
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.headerbottom__inner{
    max-width: 1025px;
	padding: 0 24px;
	margin: 0 auto;
    display: flex;
	justify-content: space-between;
	align-items: center;
    position: static;
}
.headerbottom__inner--item{
    width: calc(100% / 4);
    width: 25%;
    text-align: center;
    border-left: 2px #fff solid;
    position: static;
}
.headerbottom__inner--item:last-of-type{
    border-right: 2px #fff solid;
}
.headerbottom__inner--item:hover > a{
    background: #D77A19;
}
.headerbottom__inner--item--text{
    display: flex;
	justify-content: center;
	align-items: center;
    width: 100%;
    padding: 21px 0;
}
.headerbottom__inner--item--text img{
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.headerbottom__inner--item--text p{
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: #fff;
}
.headerbottom__inner--item--nav{
    position: absolute;
    background: #fff;
    height: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s;
}
.headerbottom__inner--item--nav.active{
    box-shadow: 0px 4px 4px rgba(34, 34, 34, 0.2);
    height: 60px;
    max-height: 60px;
    z-index: 1;
    border-radius: 6px;
    transition: all 0.5s;
}
.headerbottom__inner--item--nav--inner{
    position: relative;
    padding: 18px 40px;
    display: flex;
	justify-content: start;
    flex-wrap: wrap;
}
.headerbottom__inner--item--nav--inner a{
    padding: 8px;
    color: #FB9B23;
	font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    margin-right: 40px;
}
.headerbottom__inner--item--nav--inner a:last-of-type{
    margin-right: 0;
}
.headerbottom__inner--item--nav--inner a:hover{
    opacity: 0.7;
    transition: all 0.4s;
}

@media only screen and (max-width: 768px) {
    .headerbottom__inner{
        max-width: 100%;
        padding: 0;
    }
    .headerbottom__inner--item{
        border-left: 1px #fff solid;
    }
    .headerbottom__inner--item:first-of-type{
        border-left: none;
    }
    .headerbottom__inner--item:last-of-type{
        border-right: none;
    }
    .headerbottom__inner--item:hover > a{
        background: none;
    }
    .headerbottom__inner--item--text{
        display: block;
        padding: 18px 0;
    }
    .headerbottom__inner--item--text.none{
        pointer-events: none;
    }
    .headerbottom__inner--item--text p{
        font-size: 10px;
    }
    .headerbottom__inner--item--nav.active{
        height: 202.38px;
        max-height: 202.38px;
    }
    .headerbottom__inner--item--nav--inner{
        position: relative;
        padding: 18px 40px;
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
    }
    .headerbottom__inner--item--nav--inner a{
        display: block;
        text-align: left;
        padding: 8px 0;
        margin-bottom: 8px;
        margin-right: 0;
    }
    .headerbottom__inner--item--nav--inner a:last-of-type{
        margin-bottom: 0;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	headerbottom__nav
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.headerbottom__nav{
    display: none;
}

@media only screen and (max-width: 768px) {
    .headerbottom__nav{
        display: block;
        opacity: 0;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        pointer-events: none;
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
        width: 100%;
        height: auto;
        border-top: 2px #FB9B23 solid;
        padding: 0;
        -webkit-transition: 0.6s;
        transition: 0.6s;
        will-change: opacity, transform;
    }
    .show .headerbottom__nav{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 12;
    }
    .headerbottom__nav--list{
        margin-bottom: 40px;
    }
    .headerbottom__nav--list--item--text{
        border-top: 1px #D9D9D9 solid;
        border-bottom: 1px #D9D9D9 solid;
        padding: 16px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .headerbottom__nav--list--item--text.none{
        pointer-events: none;
    }
    .headerbottom__nav--list--item--text:first-of-type{
        border-top: none;
    }
    .headerbottom__nav--list--item--text > div >p:nth-of-type(1){
        font-weight: 700;
        font-size: 16px;
        line-height: 1;
        margin-bottom: 4px;
    }
    .headerbottom__nav--list--item--text > div >p:nth-of-type(2){
        font-weight: 400;
        font-size: 12px;
        line-height: 1;
        color: #FB9B23;
    }
    .headerbottom__nav--plus{
        display: block;
        position: relative;
        width: 14px;
        height: 14px;
        cursor: pointer;
        margin-top: 7px;
    }
    .headerbottom__nav--plus::before,
    .headerbottom__nav--plus::after {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #FB9B23;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .headerbottom__nav--plus::before {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .headerbottom__nav--plus::after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .active .headerbottom__nav--plus::before {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .active .headerbottom__nav--plus::after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .headerbottom__nav--arrow{
        position: relative;
    }
    .headerbottom__nav--arrow::after{
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
        width: 13px;
        height: 20px;
        background-image: url(/wp-content/themes/cebuway__theme/images/new/header/headerbottom__nav--arrow--1.svg);
        background-size: cover;
        background-position: center;
    }
    .headerbottom__nav--list--item--list{
        height: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s;
    }
    .headerbottom__nav--list--item--list.active{
        height: auto;
        max-height: 50em;
        transition: all 0.5s;
    }
    .headerbottom__nav--list--item--list a{
        display: block;
        border-top: 1px #D9D9D9 solid;
        border-bottom: 1px #D9D9D9 solid;
        padding: 16px 20px 16px 40px;
        position: relative;
        background: #FEF3D2;
        font-weight: 700;
        font-size: 14px;
        line-height: 1;
    }
    .headerbottom__nav--list--item--list a:first-of-type{
        border-top: none;
    }
    .headerbottom__nav--list--item--list a::after{
        content: "";
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(0, -50%);
        width: 6px;
        height: 12px;
        background-image: url(/wp-content/themes/cebuway__theme/images/new/header/headerbottom__nav--arrow--2.svg);
        background-size: cover;
        background-position: center;
    }
    .headerbottom__nav--button{
        margin-bottom: 40px;   
    }
    .headerbottom__nav--button img{
        max-width: 275px;
        width: 73.333333333%;
        margin: 0 auto;
    }
    .headerbottom__nav--text{
        max-width: 100%;
        padding: 0 20px;
    }
    .headerbottom__nav--text a{
        display: block;
        font-weight: 700;
        font-size: 12px;
        line-height: 1;
        margin-bottom: 16px;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	floating
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.floating{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 8;
}