@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
        padding-left: 0;
        padding-right: 0;
    }
}
body{
    background-color: #f5f1eb;
}
header{
    position: fixed;
    width: 100%;
    padding: 15px 40px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    top: 0;
}
header .logo svg{
    width: 81px;
    margin-right: 5px;
}
header .logo img{
    max-width: 50px;
    margin-right: 5px;
}
header .logo a{
    display: flex;
    align-items: center;
    font-size: 25px;
    line-height: 1;
    color: #2b6eb2;
}
header .mobileBtn{
    display: none;
}
header .mobileBtn a{
    position: relative;
    width: 30px;
    height: 30px;
    display: block;
    /* background-color: #f11; */
    overflow: hidden;
}
header .mobileBtn a > i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.6rem;
}
header .mobileBtn a > i.off{
    top: 50%;
}
header .mobileBtn a > i.on{
    top: -100%;
}
header nav{
    width: 475px;
}
header nav ul{
    display: flex;
    justify-content: space-between;
}
footer{
    background-color: #000000;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    border-radius: 40px 40px 0 0;
}
footer ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* #f9f9f9 */
button#btnInquiry{
    position: fixed;
    right: 0;
    bottom: 50px;
    font-size: 18px;
    padding: 15px 60px 15px 70px;
    border-radius: 30px 0 0 30px;
    border: 1px solid #000;
    color: #fff;
    background-color: #000;
    outline: none;
    transition: right 0.5s, background-color 0.5s, color 0.5s;
    right: -100%;
    z-index: 1000;
}
button#btnInquiry:hover{
    background-color: #fff;
    color: #000;
}
button#btnInquiry.show{
    right: 0;
}

.inquiryTarget .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 4px 6px 0px rgba(40,40,40,0.04);
    padding: 30px 0;
}
#profile article #profileTabContent .owl-stage{
    padding-left: 0!important;
}
.offcanvas{
    background-color: #fefbf7;
}
.inquiryTarget .item{
    margin-bottom: 30px;
    cursor: pointer;
    border: 2px solid #fff;
    transition: border 0.5s;
}
.inquiryTarget .item:hover,.inquiryTarget .item.active{
    border: 2px solid #000;
}
.inquiryTarget .item .picture{
    width: 175px;
    height: 175px;
    /* background-color: #c8c8c8;
    border-radius: 50%; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiryTarget .item .info{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.inquiryTarget .item .info .role{
    color: #444444;
    font-size: 14px;
    line-height: 1;
}
.inquiryTarget .item .info .name{
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
#inquiryForm .form-group + .form-group{
    margin-top: 15px;
}
#inquiryForm input{
    font-size: 13px;
}
.offcanvas .btnBox{
    margin-top: 30px;
}
.owl-carousel .owl-stage-outer{
    overflow: visible;
}
@media screen and (max-width: 768px) {
    header{
        padding: 10px 15px;
    }
    header .logo a{
        font-size: 14px;
    }
    header .mobileBtn{
        display: block;
    }
    .mobileMenuOpen header nav{
        right: 0;
    }
    header nav{
        transition: right 0.5s;
        right: -100%; 
        position: fixed;
        width: 100vw;
        height: 100vh;
        background-color: #f5f1eb;
    }
    header nav ul{
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }
    header nav ul li a{
        font-size: 1.8rem;
    }
    footer{
        margin-top: 70px;
        border-radius: 15px 15px 0 0;
        height: 50px;
    }
    footer ul{
        gap: 10px;
        max-width: 60%;
    }
}