:root {
    --blueColor: #004AD0;
    --blackColor: #000000;
}
*{
	margin:0;
	padding:0;
}
.clearboth{ clear:both}
a{ 
	cursor:pointer;
	text-decoration:none!important;
    color: var(--blueColor);
}

ul li{ 
	list-style:none;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
	vertical-align: middle;
	border: 0;
}
button {
    outline: none;
}

.aligncenter,.alignleft,.alignright {
    display: block;
    padding: 0;
}
.aligncenter {
    float: none;
    margin: .5em auto 1em;
}
.alignright {
    float: right;
    margin: .5em 0 1em 1em;
}
.alignleft {
    float: left;
    margin: .5em 1em 1em 0;
}
.wp-caption {
    padding: 5px 0;
    border: 1px solid #555;
    background: #444;
    text-align: center;
}
.wp-caption img {
    display: inline;
}
.wp-caption p.wp-caption-text {
    margin: 5px 0 0;
    padding: 0;
    text-align: center;
    font-size: 75%;
    font-weight: 100;
    font-style: italic;
    color: #ddd;
}
.displayNone{
    display: none!important;
}
/** loading site **/
.hrSiteLoading {
    background: #fff;
    opacity: 1;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999;
}
.hrSiteLoadingCircle{
    border: 3px solid rgba(153, 153, 153, 0.2);
    border-top-color: var(--blueColor);
    width: 3rem;
    height: 3rem;
    font-size: 0.625rem;
    text-indent: -9999em;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    -webkit-animation: loading-circle 1.1s infinite linear;
    animation: loading-circle 1.1s infinite linear;
}
.global-loading .hrSiteLoading, 
.global-loading .hrSiteLoadingCircle {
    display: block!important;
}
.global-loading  .hrSiteLoading {
    background: rgb(255, 255, 255, 0.45);
}
@-webkit-keyframes loading-circle {
	0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes loading-circle {
	0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
.pointerEventNone{
    pointer-events: none;
}
.flex-top{
    display: flex;
    align-items: flex-start
}
.flex-center{
    display: flex;
    align-items: center;
}
/* massege*/
.notifyjs-container {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
    z-index: 999999999;
}
.notifyjs-corner {
    margin-right: 100px!important;
	margin-bottom:50px!important;
}
.error_mes {
    background-color: #e41717;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
	line-height: 32px;
    height: 32px;
	text-align:left;
	margin: 0 0 10px;
	padding-left: 10px;
	transition: all .75s ease-in;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	
	opacity:0;
	transform: translateX(-100%);
	position:absolute;
	pointer-events: none;
}
.error_mes.show{
	opacity:1;
	transform: translateX(0%);
	position:relative;
	pointer-events:all;
	cursor:pointer;
}

.content_err{
	width:calc(100% - 30px);
	display: inline-block;
}
span.dis_err {
    cursor: pointer;
}

/*** loading **/
.spinner-submit {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position:relative;
	display:inline-block;
    border: 2px solid #eeeeee;
    border-top-color: #e41717;
    -webkit-animation: loadingSubmit 1s infinite;
    animation: loadingSubmit 1s infinite;
}
.osc-login-submit .spinner-submit{
    width: 15px;
    height: 15px;
}

@-webkit-keyframes loadingSubmit {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

  :lang(ja) {
    --font: "Noto Sans JP",sans-serif;
    --fontSize : 14px;
  }
  :lang(vi) {
    --font: Roboto,Helvetica,sans-serif;
    --fontSize : 16px;
  }

body {
    line-height: 1.5;
    color: rgb(51, 51, 51);
    font-size: 14px;
    font-family: var(--font);
    font-size: var(--fontSize);
}
/** global **/
.osc-container {
    width: 1000px;
    margin: 0 auto;
}
/** header **/
.osc-header-bar {
    background: var(--blueColor);
    display: flex;
    justify-content: flex-end;
    color: #FFFFFF;
    align-items: center;
    font-weight: bold;
    padding: 5px 20px;
    font-family: "Noto Sans JP",sans-serif;
    font-size: 14px;
}
.osc-header-bar a{
    color: #FFFFFF;
}
.osc-phone-icon{
    width: 12px;
    margin-right: 5px;
}
.osc-phone-link{
    margin-left: 5px;
}
ul.osc-languages {
    display: flex;
    margin-left: 10px;
}
ul.osc-languages li a {
    width: 30px;
    height: 18px;
    background: url(../images/flag-ja.svg);
    background-size: cover;
    display: block;
    margin: 0 5px;
}
ul.osc-languages li a[lang="vi"] {
    background: url(../images/flag-vi.svg);
}
ul.osc-languages li a img{
    opacity: 0;
    pointer-events: none;
}

.osc-header-logo a:hover {
    opacity: 0.8;
}

/** menu **/
.osc-header-fixed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.osc-header-menu {
    display: flex;
    align-items: center;
}
ul.osc-main-menu {
    display: flex;
}
ul.osc-main-menu li a {
    color: #000000;
    position: relative;
}
ul.osc-main-menu .current-menu-item > a {
    color: var(--blueColor);
}
ul.osc-main-menu a:after {
    content: "";
    bottom: 0;
    width: 100%;
    left: 0;
    height: 1.5px;
    background: var(--blueColor);
    display: block;
    position: absolute;

    left: 50%;
    transform: translateX(-50%);
    width: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;

}
ul.osc-main-menu .current-menu-parent > a:after,
ul.osc-main-menu .current-menu-item > a:after, 
ul.osc-main-menu li:hover > a:after {
    width: 100%;
}

ul.osc-main-menu .menu-item-has-children > a{
    padding-right: 32px;
}
ul.osc-main-menu .menu-item-has-children > a:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/arrow-down-o.svg);
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    right: 0px;
}

ul.osc-main-menu .sub-menu a:after{
    display:none;
}
ul.osc-main-menu .menu-item-home a{
    padding-left: 50px;
}
ul.osc-main-menu .menu-item-home a:before {
    content: "";
    height: 30px;
    background: url(../images/home-black.svg);
    width: 35px;
    position: absolute;
    left: 0;
    background-size: cover;
    top: 50%;
    transform: translateY(-50%);
}

ul.osc-main-menu .menu-item-home.current-menu-item a:before {
    background: url(../images/home-blue.svg);
}

.osc-menu-contact a {
    background: var(--blueColor);
    color: #ffffff;
    padding: 11px 20px;
    border-radius: 25px;
    transition: 0.8s all;
}

.osc-menu-contact a:hover {
    opacity:0.8;
}

/** menu **/

/* sub menu style */
.osc_menu ul .sub-menu {
    position: absolute;
    left: 0;
    top: 110%;
    width: 200px;
    text-align: left;
    background: #fff;
    margin: 0;
    padding: 10px 0;
    z-index: 9999;
    opacity: 0;
    border: 0;
    border-radius: 0px;
    /*box-shadow: 0 0 5px rgba(0,0,0,0.15);*/
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    border-top : 1px solid #ebebeb;
    z-index: 9;
    -webkit-transition: top .5s ease, opacity .6s ease,left 0s .6s;
    -o-transition: top .5s ease, opacity .6s ease,left 0s .6s;
    transition: top .5s ease, opacity .6s ease,left 0s .6s;
    pointer-events: none;
}
.osc_menu ul li:hover >.sub-menu {
    opacity: 1;
    top: 100%;
    pointer-events: auto;
}
  
.osc_menu ul .sub-menu li {
    position: relative;
}
.osc_menu ul .sub-menu li a {
    display: block;
    padding: 10px 20px;
    margin: 0;
    line-height: 1.3;
    color: #333;
    font-weight: 400;
    text-transform: capitalize;
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
    visibility: inherit !important;
    text-decoration: none;
}
  
.osc_menu ul .sub-menu li:hover>a,
.osc_menu ul .sub-menu .sub-menu li:hover>a {
    color:var(--blueColor);
}
.osc_menu ul .sub-menu li {
    position: relative;
    -webkit-transition:.3s;
    -o-transition:.3s;
    transition:.3s;
}
  .osc_menu ul .sub-menu li:hover {
    margin-left:15px;
  }
  .osc_menu ul .sub-menu li:hover:before {
    opacity:1;
    left:0px;
  }
  .osc_menu ul .sub-menu li:hover {
    margin-left:15px;
  }
  
  /* sub menu 2 */
  
  .osc_menu ul .sub-menu .sub-menu {
      left:100%;
      top: 130%;
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      visibility: hidden;
  }
  
  .osc_menu ul .sub-menu li:hover>.sub-menu {
      opacity: 1;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      visibility: visible;
      top: 0%;
  }
  
  
  /* sub menu 3 */
  
  .osc_menu ul .sub-menu .sub-menu li {
      position: relative;
  }
  
  /* sub menu 4 */
  
  /* maing menu search */
  nav.osc_menu.main-search-menu {
  float: right;
  }
  .osc_menu.main-search-menu>ul {
    display: inline-block;
  }
  nav.osc_menu.main-search-menu {
    float: right;
    text-align: center;
    display: block;
  }
  .osc_menu>ul>li {
    display: inline-block;
    position: relative;
  }
  
  .osc_menu > ul > li > a {
    display: inline-block;
    padding: 15px 12px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    position: relative;
    text-decoration: none;
  }
  .osc_menu > ul > li > a.dropdown-toggle.dropdown-caret {
    padding: 0;
  }
  ul.sub-menu li {
    list-style: none;
  }
  ul.sub-menu li a{
    color: #333;
  }
  .osc-header {
    height: 112px;
  }
  
  .osc-header-fixed.hrMenuFixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 8px rgb(0 0 0 / 50%);
    -webkit-box-shadow: 0 0 8px rgb(0 0 0 / 50%);
  }
  .admin-bar .osc-header-fixed.hrMenuFixed {
    top: 32px;
  }

  /*** end menu **/

  /** home slider **/
.osc-slider-item {
    position: relative;
}
.osc-slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0%;
    transform: translateY(0%);
    color: #ffffff;
    font-size: 27px;
    line-height: 1.5;
}
.osc-slider-overlay p{
    font-size: 13px;
}   
.osc-slider-overlay > div{
    background: rgb(0 0 0 / 50%);
    padding: 15px;
}

.osc-slider-overlay ul li {
    list-style: square;
}
.osc-slider-overlay ul {
    padding-left: 30px;
}

.hrHomeSlider .owl-nav button,
.wooden-sliders .owl-nav button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-indent: -9999999px;
    width: 30px;
    height: 30px;
    background-size: cover!important;
}

.hrHomeSlider .owl-nav button.owl-prev{
    left: 20px;
    background: url(../images/arrow-left.svg)!important;
} 
.wooden-sliders .owl-nav button.owl-prev{
    left: 20px;
    background: url(../images/arrow-left-custom.svg)!important;
}
.hrHomeSlider .owl-nav button.owl-next{
    right: 20px;
    background: url(../images/arrow-right.svg)!important;
}
.wooden-sliders .owl-nav button.owl-next{
    right: 20px;
    background: url(../images/arrow-right-custom.svg)!important;
}

/** static **/
.osc-static-information {
    background: url(../images/bg-static.png);
    background-size: cover;
    background-repeat: repeat;
}

.osc-static-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    position: relative;
}
.osc-static-item {
    width: 20%;
    text-align: center;
    margin : 10px 0;
}
.osc-static-image img {
    width: 50%;
    transform: rotateY(0deg);
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.osc-static-item:hover img {
    transform: rotateY(180deg);
}
.osc-static-number {
    margin: 5px 0;
}
.osc-static-number span {
    color: #64ccf1;
    font-size: 40px;
    font-weight: bold;
}
.osc-static-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}
/** business **/
.osc-slider-item-caption {
    position: absolute;
    bottom: 0;
    background: rgb(0 74 208 / 80%);
    display: inline-block;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 21px;
    font-weight: bold;
}
.osc-sub-section {
    padding: 30px 0;
}
.osc-sub-title {
    font-size: 36px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.osc-sub-title:after {
    content: '';
    height: 1px;
    width: 100%;
    background: #ddd;
    position: absolute;
}
.osc-sub-title span {
    background: #fff;
    z-index: 2;
    padding-right: 20px;
    font-weight: bold;
}

.hrBusinessSliderNav.owl-nav button {
    background: url(../images/arrow-right-enable.svg)!important;
    width: 20px;
    height: 20px;
    background-size: cover;
    background-repeat: no-repeat!important;
    border: none;
    cursor: pointer;
    margin: 0 12px;
    position: relative;
}

.hrBusinessSliderNav.owl-nav button.owl-next:before {
    content: '';
    width: 1px;
    position: absolute;
    height: 80%;
    background: #000;
    top: 50%;
    left: -60%;
    transform: translate(-60%, -50%);
}
.hrBusinessSliderNav.owl-nav button.owl-prev {
    transform: rotate(180deg);
}

.owl-nav.hrBusinessSliderNav {
    display: flex;
    background: #fff;
    z-index: 2;
    margin-right: -12px;
}

/** why **/
.osc-why-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.osc-why-item-image img {
    width: 100px;
    height: auto;
    transform: rotateY(0deg);
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.osc-why-item:hover .osc-why-item-image img{
    transform: rotateY(180deg);
}
.osc-why-item {
    width: 33.333333333%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
.osc-why-item-desc {
    line-height: 1.7;
}
.osc-why-item-title {
    font-size: 21px;
    font-weight: bold;
    margin: 10px 0;
}
.osc-why-item-image {
    height: 130px;
}

/** dev **/
.osc-development .osc-sub-section,
.osc-development .osc-sub-title span{
    background: #F1F1F1;
}
.osc-slider-dev-caption {
    position: absolute;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    color: #fff;
    padding: 15px;
    box-sizing: border-box;
}
.osc-slider-dev-title {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
}
.osc-slider-dev-desc {
    font-size: 13px;
}
.hrDevelopmentSliderThumb .owl-item {
    cursor: pointer;
}
.hrDevelopmentSliderThumb .owl-item.current:before {
    content: '';
    position: absolute;
    width: 25px;
    height: 16px;
    background: url(../images/triangle.svg);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-size: cover;
    background-repeat: no-repeat;
}

.hrDevelopmentSliderThumb.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #004ad0;
    border-radius: 0px;
}
.hrDevelopmentSliderThumb.owl-theme .owl-dots .owl-dot.active span, 
.hrDevelopmentSliderThumb.owl-theme .owl-dots .owl-dot:hover span {
    background: #bccceb;
}

/** footer **/
.osc-footer {
    display: flex;
    justify-content: space-between;
}
.osc-footer-logo {
    margin-bottom: 30px;
}
.osc-footer-logo a:hover{
    opacity: 0.8;
}
.osc-footer-company {
    font-size: 18.5px;
    font-weight: bold;
}
.osc-footer-phone a{
    color: var(--blackColor);
}
.osc-footer-left,
.osc-footer-right {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}
.osc-footer-left {
    background: #004ad0;
    color: #fff;
}
.osc-footer-right {
    text-align: center;
    position: relative;
    background: #0e398a;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.osc-footer-right img{
    width: 100%;
}
.osc-footer-right:before {
    display:none;
    content: '';
    width: 1px;
    height: 80%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.osc-copyright {
    padding: 10px 0;
    background: #0b3d9b;;
    color: #fff;
    text-align: center;
    font-size: 12.3px;
}

.osc-footer-menu {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.osc-footer-menu-left{
    width: 65%;
}
.osc-footer-menu-right {
    width: 35%;
    margin-left: 40px;
}
.osc-footer-menu-left >div {
    margin: 5px 0;
}
.hrFooterMenu li a {
    color: #fff;
    padding: 5px 0;
    display: inline-block;
    position: relative;
    padding-left: 15px;
    transition: 0.8s all;
}
.osc-footer-menu-left a {
    color: #6bcada;
}
.osc-footer-menu-left a:hover img {
    transform: scale(1.2);
}
.hrFooterMenu a:after {
    content: "";
    bottom: 3px;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;

    
}
.hrFooterMenu li a:hover {
    opacity: 0.8;
}
.hrFooterMenu li a:hover:after {
    width: calc(100% - 15px);
}

.hrFooterMenu li a:before {
    content: '';
    position: absolute;
    background: url(../images/arrow-footer-menu.svg?v=1);
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/** company **/
.osc-page-banner {
    width: 100%;
    height: 500px;
    background: url(../images/demo/banner-company@3x.png) rgb(0 74 208 / 50%);
    background-size: cover;
    background-repeat: no-repeat;
}
.osc-pagi-wrap{
    position: relative;
    display: block;
    height: 100%;
}
.osc-container.osc-pagi-wrap {
    width: 100%;
}
.osc-pagi {
    position: absolute;
    background: rgb(255 255 255 / 50%);
    padding: 15px 30px;
    top: 0px;
    left: 0px;
}
.osc-pagi a {
    color: var(--blackColor);
}
.osc-pagi a:hover {
    color: var(--blueColor);
}
.osc-pagi span {
    color: var(--blueColor);
}
.osc-company-tabs {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.osc-company-tabs ul {
    display: flex;
}
.osc-company-tabs li a {
    padding: 5px 30px;
    color: var(--blackColor);
    position: relative;
}
.osc-company-tabs li a:after {
    content: '';
    height: 1px;
    width: 100%;
    background: transparent;
    bottom: -7px;
    left: 0;
    position: absolute;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transition-timing-function: cubic-bezier(.58,.3,.005,1);
    -o-transition-timing-function: cubic-bezier(.58,.3,.005,1);
    transition-timing-function: cubic-bezier(.58,.3,.005,1);
}
.osc-company-tabs li a.osc-active,
.osc-company-tabs li:hover a {
    color: var(--blueColor);
}
.osc-company-tabs li a.osc-active:after,
.osc-company-tabs li:hover a:after {
    background: var(--blueColor);
}

.osc-page-content {
    margin: 30px 0;
}


.osc-company-heading {
    margin: 20px 0;
    padding: 10px 30px;
    background: #F1F1F1;
    color: var(--blackColor);
    font-size: 27px;
    position: relative;
}
.osc-company-heading:before {
    content: '';
    height: 100%;
    width: 6px;
    background: var(--blueColor);
    position: absolute;
    top: 0;
    left: 0;
}
.osc-company-heading:after {
    content: '';
    height: 2px;
    width: 30px;
    position: absolute;
    top: 50%;
    right: 30px;
    background: url(../images/bar-icon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.osc-table.osc-table-company table {
    width: 100%;
    border: 1px solid #dddddd;
    border-collapse: collapse;
}
.osc-table.osc-table-company table th,
.osc-table.osc-table-company table td {
    padding: 10px 20px;
}
.osc-table.osc-table-company table th {
    width: 30%;
    text-align: right;
    background: #f1f1f1;
    font-weight: normal;
    border-bottom: 1px solid #fff;
    vertical-align: text-top;
    font-weight: bold;
    position: relative;
}
.osc-table.osc-table-company table tr:last-child th {
    border-bottom: 1px solid #dddddd;
}

.osc-table.osc-table-company.osc-table-company-history table th {
    border-right: 1px solid var(--blueColor);
}
.osc-table.osc-table-company.osc-table-company-history table th:after {
    content: '';
    background: url(../images/round-icon.svg);
    width: 10px;
    height: 10px;
    background-size: cover;
    position: absolute;
    top: 16px;
    right: -5px;
}

/*** FAQ **/
.osc-faq-list {
    border: 1px solid #F1F1F1;
    margin: 10px 0;
}
.osc-faq-lists .osc-faq-content {
    display: none;
    padding: 10px;
}
/* .osc-faq-lists .osc-open .osc-faq-content {
    display: block;
} */
.osc-faq-title {
    position: relative;
    cursor: pointer;
    padding: 10px;
}
.osc-faq-title:after {
    content: '';
    width: 17px;
    height: 17px;
    position: absolute;
    background: url(../images/arrow-toggle-black.svg);
    background-size: cover;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
.osc-faq-list.osc-open .osc-faq-title {
    color: var(--blueColor);
    background : #F1F1F1;
}
.osc-faq-list.osc-open .osc-faq-title:after {
    background: url(../images/arrow-toggle-active.svg);
}

/** contact **/
.osc-contact-item {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}
.osc-contact-item-left {
    width: 245px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 15px;
    box-sizing: border-box;
}
.osc-contact-item-right {
    width: calc(100% - 245px);
}
.osc-contact-item-left span {
    background: #DC3545;
    color: #fff;
    padding: 2.5px 5px;
    border-radius: 3px;
}
input.osc-contact-input {
    border: 1px solid #333;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    
}
textarea.osc-contact-textarea {
    border: 1px solid #333;
    width: 100%;
    padding: 10px;
    height: 100px;
    resize: none;
    box-sizing: border-box;
    border-radius: 3px;
}

input.osc-contact-input:focus,
textarea.osc-contact-textarea:focus{
    outline-color: var(--blueColor);
}

input.osc-contact-submit {
    background: var(--blueColor);
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 3px;
    cursor: pointer;
}
input.osc-contact-submit:hover {
    opacity: 0.8;
}
.wpcf7 form.sent .wpcf7-response-output {
    display: none;
}
/** hrShine **/
.hrShine{
    overflow: hidden;
    position: relative;
    display: block;
}
.hrShine img{
    transition: all .5s!important;
}
.hrShine:hover img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.hrShine:hover:before {
    -webkit-animation: shine .95s;
    animation: shine .95s;
}
.hrShine:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear,left top, right top,from(rgba(255,255,255,0)),to(rgba(255,255,255,.3)));
    background: -o-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    pointer-events: none;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}

.osc-footer-social {
    display: flex;
    align-items: center;
}
.osc-footer-social img{
    margin-right: 0.5rem;
    height: 32px;
    width: 32px;
    background-color: #666666;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.osc-footer-social-label{
    margin-right: 10px;
}
.social-facebook img{
    background-color: #3b5998;
}
.social-twitter img{
    background-color: #1DA1F2
}
.social-youtube img{
    background-color: #cd201f
}
.hrNeedLogin,
.logged-in .hrNotLogin{
    display: none!important;
}
.hrNotLogin,
.logged-in .hrNeedLogin{
    display: inline-block!important;
}
.hrShowError {
    color: red;
    margin: 0!important;
}
.osc-notfound {
    text-align: center;
    display: inline-block;
    width: 100%;
    margin: 50px 0;
    font-style: italic;
}
@media (min-width: 1365px){
    .osc-menu-contact {
        margin-left: 20px;
    }
}

@media (max-width: 1366px){
    .osc_menu > ul > li > a {
        padding: 15px 5px;
    }
    .osc-page-banner {
        height: 350px;
    }
    .osc-slider-overlay {
        font-size: 23px;
    }
    .osc-static-number span {
        font-size: 30px;
    }
    .osc-slider-item-caption {
        font-size: 16px;
    }
    .osc-sub-title {
        font-size: 27px;
    }
    .osc-slider-dev-title {
        font-size: 16px;
    }
    .osc-company-heading {
        font-size: 20px;
    }
}

/*** NEW */
.osc-list-page-wrap {
    width: 500px;
    margin: 50px auto;
}
.osc-list-page-wrap ul {
    display: flex;
}
.osc-list-page-wrap ul li {
    width: 25%;
    text-align: center;
}
.osc-list-page-wrap ul li a{
    color: #333;
}
.osc-list-page-wrap ul li a.active{
    color: var(--blueColor)
}
.osc-list-page-wrap ul li .osc-desc a{
    margin-top: 5px;
    display: inline-block;
    line-height: 20px;
}

.wooden-address {
    text-align: left;
    min-width: 500px;
}

@media only screen and (max-width: 768px) {
    .wooden-address {
        text-align: left;
        min-width: 100%;
    }
    
    .osc-list-page-wrap {
        width: 100%;
        margin: 30px auto;
    }
    .osc-container {
        width: calc(100% - 30px);
        margin: 0 auto;
    }
    ul.osc-languages li a:last-child {
        margin-right: 0;
    }
    .osc-why-items {
        display: inline-block;
        width: 100%;
    }
    .osc-why-item {
        width: 100%;
    }
    .osc-static-item {
        width: 50%;
    }
    .osc-static-items {
        flex-wrap: wrap;
        margin-top: 0;
        padding: 15px 0;
    }
    .osc-slider-overlay {
        font-size: 15px;
        left: 50%;
        transform: translate(-50%,0%);
        display: inline-block;
        width: 100%;
        bottom: 0;
        top: unset;
        display:none;
    }

    .osc-why-item-image {
        height: auto;
    }
    .osc-sub-title {
        font-size: 25px;
    }
    .osc-slider-dev-title {
        font-size: 12px;
    }
    .osc-slider-dev-desc {
        font-size: 10px;
    }
    .osc-slider-dev-caption {
        padding: 15px;
        display: none;
    }

    .osc-footer {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .osc-footer-left, .osc-footer-right {
        width: 100%;
    }
    .osc-footer-menu {
        display: inline-block;
    }
    .osc-footer-menu-left {
        width: 100%;
        margin-bottom: 20px;
    }
    .osc-footer-menu-right {
        width: 100%;
        margin-left: 0;
    }
    .osc-footer-right:before {
        display:none;
    }
    .osc-footer-right img {
        width: 100%;
    }


    /** contact form **/
    .osc-contact-item {
        flex-wrap: wrap;
    }
    .osc-contact-item-left {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        padding-right: 0px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
    .osc-contact-item-left label {
        margin-right: 15px;
    }
    .osc-contact-item-right {
        width: 100%;
    }
    .osc-contact-desc {
        font-size: 13.5px;
    }
    .wpcf7 form .wpcf7-response-output {
        margin: 0;
    }
    .osc-faq-title {
        padding: 10px 30px 10px 10px;
    }
    .osc-page-banner {
        height: 200px;
    }
    .osc-faq-title:after {
        top: 22px;
    }

    /** menu **/
    .osc-header {
        height: 86px;
    }
    .osc-header-fixed {
        padding: 15px 20px;
    }
    .osc-menu-contact {
        display: none;
    }

    .osc-header-menu {
        display: none;
        align-items: center;
    }
    .osc-header-logo img,
    .osc-footer-logo img{
        width: 180px;
    }
    .hrDevelopmentSliderThumb .owl-item.current:before {
        width: 15px;
        height: 10px;
    }
}


.osc-menu-mobile {
    display:none;
}

.pswp__iframe-container {
    position: relative;
    width: 100vw;
    height: 100%;
    pointer-events: none;
}
.pswp__iframe-container iframe {
    background: #444;
    width: 100vw;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    pointer-events: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    color-scheme: auto;
}

.osc-galleries {
    margin: 2rem auto;
}
.osc-cols-2 {
    -webkit-column-count: 2; 
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-column-width: 50%;
    -moz-column-width: 50%;
    column-width: 50%;
}
.osc-cols-3 {
    -webkit-column-count: 3; 
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-column-width: 33.33333333%;
    -moz-column-width: 33.33333333%;
    column-width: 33.33333333%;
}
.osc-cols-4 {
    -webkit-column-count: 4; 
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-column-width: 25%;
    -moz-column-width: 25%;
    column-width: 25%;
}
.osc-cols-5 {
    -webkit-column-count: 5; 
    -moz-column-count: 5;
    column-count: 5;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    -webkit-column-width: 20%;
    -moz-column-width: 20%;
    column-width: 20%;
}

.osc-galleries{
    pointer-events: none;
}
.osc-gallery {
    margin: 0 0 0.75rem;
    width: 100%;
    position: relative;
}
.osc-gallery img{
    width: 100%;
    height: auto;
}

.osc-galleries-border-even .osc-gallery:nth-child(2n-1) {
    border: 1px solid #6d6d6d;
}
.osc-galleries-border-all .osc-gallery {
    border: 1px solid #6d6d6d;
}
.osc-galleries-no-top{
    margin-top: -2rem;
}
.oscar-description span {
    padding-left: 15px;
    font-size: 20px;
    font-weight: bold;
}
.oscar-description {
    margin: 20px 0;
}
.oscar-work-title {
    font-size: 20px;
    font-weight: bold;
    margin: 30px 15px 20px 15px;
}
.oscar-work-lists {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-left: 50px;
}
.oscar-work-list {
    margin-bottom: 15px;
}
.oscar-work-list span {
    width: 100%;
    display: inline-block;
    position: relative;
    padding-left: 10px;
}
.oscar-work-list a {
    margin-left: 25px;
    position: relative;
}
/*
.oscar-work-list a:before {
    content: '';
    background: url(../images/arrow-down-right.png);
    position: absolute;
    width: 25px;
    height: 25px;
    background-size: cover;
    left: -15px;
    top: 50%;
    transform: translate(-50%, -50%);
}
*/
.oscar-work-list span:before {
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    position: absolute;
    border-radius: 100%;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}

.osc-popup-left .pswp__top-bar{
    width: unset;
}
.osc-popup-left .pswp__top-bar .pswp__preloader{
    display:none;
}

@media (max-width: 768px){
    .osc-company-heading span {
        font-size: 15px;
    }
    .oscar-work-title {
        font-size: 18px;
        margin: 15px;
    }
    .oscar-work-lists {
        width: 100%;
    }
    .osc-company-tabs ul {
        display: flex;
        flex-wrap: wrap;
    }
    .oscar-company-cus{
        width: 100%;
        margin-top: 13px;
    }
    .osc-company-tabs li a:after {
        bottom: 0px;
    }
    .osc-pagi {
        padding: 10px;
        top: 20px;
        left: 20px;
        font-size: 12px;
    }
    .osc-menu-mobile {
        display:block;
        position: relative;
        width: 35px;
        height: 23px;
    }
    .osc-menu-mobile input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 0px;
        left: 0px;
        z-index: 155;
        opacity: 0;
    }
    .hamburger-lines {
        display: block;
        height: 23px;
        width: 35px;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 16;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }
    .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }
    .osc-menu-mobile input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(35deg);
    }
    .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }
    .osc-menu-mobile input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }
    .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }
    .osc-menu-mobile input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-35deg);
    }

    .menu-items {
        padding-top: 180px;
        background: #fff;
        height: 100vh;
        width: 300px;
        transform: translate(96px,0px);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 50px;
        transition: transform 0.5s ease-in-out;
        z-index: 9;
        position: fixed;
        top: 0;
    }
    .hrMenuFixed .menu-items {
        padding-top: 100px;
    }
    .menu-items {
        order: 13;
        display: flex;
    }

    body.menuActive{
        overflow-y:hidden;
    }
    .osc-menu-mobile input[type="checkbox"]:checked ~ .menu-items {
        transform: translate(-204px, 0px);
    }
    .osc-menu-mobile ul.sub-menu {
        display: block;
        margin-left: 25px;
    }
    .osc-menu-mobile li a {
        color: var(--blackColor);
        margin: 10px 0;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
    }
    .osc-menu-mobile ul.sub-menu li a {
        padding: 5px 0;
        margin: 0;
    }
    .osc-menu-mobile li.current-menu-item a {
        color: var(--blueColor);
    }

    .osc-header-fixed.hrMenuFixed {
        z-index: 9999;
    }
    .admin-bar .osc-header-fixed.hrMenuFixed {
        top: 0;
    }

    .osc-static-number span{
        font-size: 25px;
    }
    .osc-static-text {
        font-size: 13px;
    }
    .osc-slider-item-caption {
        font-size: 16px;
    }
    .osc-why-item-title {
        font-size: 18px;
    }
    .osc-company-heading {
        font-size: 18px;
    }
    .osc-table.osc-table-company table th, .osc-table.osc-table-company table td {
        padding: 5px 10px;
    }
    .osc-table.osc-table-company table th{
        width: 40%;
    }
    input, textarea, button, select, a {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    .osc-list-page-wrap ul {
        flex-wrap: wrap;
    }
    .osc-list-page-wrap ul li {
        width: 50%;
        margin: 5px 0;
        text-align: center;
    }
    .page-template-360-panorama .osc-page-content,
    .page-template-walk-home .osc-page-content {
        margin-top: -30px;
    }
    li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-contact{
        margin-left: -60px;
        width: calc(100% + 50px);
        display: flex;
        justify-content: center;
    }
    li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-contact a{
        background: #ccc;
        margin-top: 10px;
        width: max-content;
        border-radius: 20px;
        background: var(--blueColor);
        color: #ffffff;
        padding: 15px 20px;
        border-radius: 25px;
        transition: 0.8s all;
    }
}