:root {
    --text-color: white;
    --text-dark-color: #202020;
    --header-height: 100px;
    --burger-width: 40px;
    --font-headings: Georgia, serif;
    --bcg-green: #f7f7f2;
    --bcg-lightgreen: #f7f7f2;
    --bcg-lightbrown: #f7f7f2;
    --bcg-lightblue: #f7f7f2;
    --bcg-loaderblue: #f7f7f2;
    --bcg-loaderbluedark: #f7f7f2;
    --bcg-fill-color: #f7f7f2;
    --loader-width: 27.36vw;
    --loader-height: 50vh;
    --v-spacing: 10vh;
    --h-gutter: 6.6vw;
    --easing: cubic-bezier(0.5, 0.7, 0.4, 1);
    --s48: 48px;
    --s48lh: 66px;
    --s16: 16px;
    --s16lh: 17px;
    --s14: 14px;
    --s14lh: 26px;
    --s12: 12px;
    --s12lh: 18px;
    --background: #f7f7f2;
    --primary-color: #EA2037;
    --balck: #000000;
    --secondary-color: #292938;
    --grey: #C7C7C7;
    --blue: #E0E6E6;
    --s8: 8px;
    --s10: 10px;
    --s20: 20px;
    --s22: 22px;
    --s42: 48px;
    --s48: 48px;
    --s66: 66px;
    --s72: 72px;
}

body {
    font-family: "Galaxie Copernicus";
    font-weight: 400;
    background: var(--background);
    color: var(--secondary-color);
    overflow-y: auto!important;
    font-size: var(--s14);
    line-height: var(--s14lh);
    letter-spacing: 0.02em;
    counter-reset: section;
}

:root .vi {
    --s14lh: 28px;
    --s12: 13px;
}

@font-face {
    font-family: "Galaxie Copernicus";
    font-weight: 400;
    src: url("../fonts/GalaxieCopernicus-Book.otf");
}

@font-face {
    font-family: "Galaxie Copernicus";
    font-weight: 500;
    src: url("../fonts/GalaxieCopernicus-Medium.otf");
}

@font-face {
    font-family: "Galaxie Copernicus";
    font-weight: 550;
    src: url("../fonts/GalaxieCopernicus-Heavy.otf");
}

@font-face {
    font-family: "Galaxie Copernicus";
    font-weight: 700;
    src: url("../fonts/GalaxieCopernicus-Bold.otf");
}

@font-face {
    font-family: "Sharp Sans No2 Book";
    font-weight: 600;
    src: url("../fonts/Sharp Sans No2 Book.otf");
}

@font-face {
    font-family: "Sharp Sans No2 Medium";
    font-weight: 600;
    src: url("../fonts/Sharp Sans No2 Medium.otf");
}

@font-face {
    font-family: "Sharp Sans No2 Semibold";
    src: url("../fonts/Sharp Sans No2 Semibold.otf");
}

@font-face {
    font-family: "SharpSansNo2VN-Regular";
    src: url("../fonts/SharpSansNo2VN-Regular.ttf");
}

@font-face {
    font-family: "SharpSansNo2VN-Book";
    src: url("../fonts/SharpSansNo2VN-Book.ttf");
}

@font-face {
    font-family: "SharpSansNo2VN-Semibold";
    src: url("../fonts/SharpSansNo2VN-Semibold.ttf");
}

@font-face {
    font-family: "GalaxieCopernicusVN-Book";
    src: url("../fonts/GalaxieCopernicusVN-Book.ttf");
}

@font-face {
    font-family: "GalaxieCopernicusVN-Medium";
    src: url("../fonts/GalaxieCopernicusVN-Medium.ttf");
}

.scrollbar-track-y,
.scrollbar-thumb {
    width: 4px !important;
}

.pinscroll__circle .scrollbar-track-y,
.pinscroll__circle .scrollbar-thumb {
    width: 1px !important;
}

.pinscroll__circle .scrollbar-track-y {
    background-color: transparent
}

.pinscroll__circle .scrollbar-thumb {
    background: #EA2037;
    opacity: .8;
}

.layoutPB_ly2 .scrollbar-track {
    display: none !important;
}

body {
    font-family: "Galaxie Copernicus";
    font-weight: 400;
    background: var(--background);
    color: var(--secondary-color);
    overflow-y: auto!important;
    font-size: var(--s14);
    line-height: var(--s14lh);
    letter-spacing: 0.02em;
    counter-reset: section;
}

p {
    margin: 0px 0px 20px;
}

p:last-child {
    margin: 0px;
}


/* hide page content by default */

.is-loading #main,
.is-loading .logo,
.is-loading .burger,
.is-loading .main-nav,
.is-loading .fill-background {
    display: none;
}

.is-loading {
    background-color: var(--bcg-loaderblue);
}

.is-transitioning {
    pointer-events: none;
    cursor: progress;
}

h1,
h2,
h3,
h4 {
    font-weight: 400;
}

#viewport {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}


/* =Top Nav */

.logo {
    position: fixed;
    left: 26px;
    top: 30px;
    width: 108px;
    height: 30px;
    display: flex;
    align-items: center;
    z-index: 3;
    /*pointer-events: none; */
    cursor: pointer;
}

.logo__img {
    width: 108px;
    height: 30px;
    background-size: 108px 30px;
    background-image: url(../images/logo_n.svg);
    display: block;
    position: absolute;
    transition: opacity 0.3s linear;
    opacity: 0;
    background-repeat: no-repeat;
    overflow: hidden;
}

.logo__text {
    transition: opacity 0.3s linear;
    opacity: 1;
    height: 30px;
    width: 108px;
    background-size: 108px 30px;
    background-image: url(../images/logo_n.svg);
    background-repeat: no-repeat;
    overflow: hidden;
}

.burger {
    height: 22px;
    width: 22px;
    background-size: 22px 22px;
    background-image: url(../images/search.svg);
    background-repeat: no-repeat;
    position: fixed;
    top: 27px;
    right: 24px;
    z-index: 2;
    overflow: hidden;
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
}

.ss__ll__cl .burger {
    background-image: url(../images/search_b.svg);
}

.burger:hover {
    -o-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

.menuhome-wrap__mb .burger {
    display: none;
    position: absolute;
}


/* =Main Navigation */

.main-nav {
    position: fixed;
    top: 27px;
    right: 80px;
    z-index: 3;
    padding: 0px;
    opacity: 0;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-nav li {
    padding: 0 9px 0px 0px;
    margin-right: 0px;
    height: 22px;
    display: flex;
    align-items: center;
}

.main-nav li:last-child {
    padding: 0px;
}

.main-nav a {
    color: var(--background);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    font-weight: 400;
    font-size: 11px;
    line-height: 9px;
    text-align: center;
    letter-spacing: 0.08em;
    cursor: pointer;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.main-nav .active a,
.main-nav a:hover {
    color: var(--primary-color)
}

.main-nav a:after {
    content: "/";
    position: absolute;
    top: 0px;
    right: -6px;
    color: var(--background);
}

.main-nav li:last-child a:after {
    display: none;
}


/*
.main-nav a::after {
  display: block;
  content: '';
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateX(-101%);
}
.main-nav a:hover::after {
  transition: transform 0.3s var(--easing);
  transform: translateX(0);
}
.main-nav a.animate-out::after {
  transition: transform 0.3s var(--easing);
  transform: translateX(100%);
}
*/


/* Reveal logo and move buger when the user scrolls */

.has-scrolled .burger {
    /*transform: translateX(100%)*/
}

.has-scrolled .logo__img {
    opacity: 1;
}

.has-scrolled .logo__text {
    opacity: 0;
}

.layout01 {
    background-color: #f7f7f2;
    padding: 290px 0px;
}

.layout02 {
    background-color: #f7f7f2;
    padding: 0px 0px 290px;
}

.layout02.layoutPB0 {
    padding-bottom: 0px
}

.layout02.layoutPB_ly2 {
    padding-bottom: 140px
}

.layout03 {
    background-color: #f7f7f2;
    padding: 50px 0px 150px;
}

.layout03.paddTopType {
    padding-top: 100px
}

.layout03.paddTop0 {
    padding-top: 0px;
}

.layout03.paddBT100 {
    padding-bottom: 100px;
}

.layout03.layoutPB0 {
    padding-bottom: 0px;
}

.layout04 {
    background-color: #f7f7f2;
    padding: 180px 0px 0px;
}

.layout04.paddT100 {
    padding-top: 100px;
}

.width__content {
    width: 960px;
    margin: auto;
    overflow: hidden;
}

.slide {
    position: relative;
}

.slider-wrapper {
    max-width: 960px;
    margin: auto;
}

.slider-wrapper .slick-prev:before,
.slider-wrapper .slick-next:before {
    color: var(--secondary-color);
}

.slider-wrapper .fullimg {
    overflow: hidden;
    width: 50%;
    aspect-ratio: 30 / 43;
    position: relative;
}

.slider-wrapper .fullimg img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title__lv1,
.content_lv1_box3 h3,
.content_lv1_box4 h3,
.deve_logos h3 {
    font-style: normal;
    font-weight: 400;
    font-size: var(--s48);
    line-height: var(--s48lh);
    text-transform: uppercase;
    letter-spacing: 0.26em;
    /*padding-left: 0.26em;*/
    color: var(--primary-color);
    box-sizing: border-box;
}

.deve_logos h3 {
    text-align: center;
    color: #292938;
    margin: 0px;
}

.ulpart.ulpartlogo {
    margin-top: 100px;
}

.content_lv1_box3 h3,
.content_lv1_box4 h3 {
    color: #292938;
    margin: 0px 0px 60px;
}

.content_lv1_box4 h3 {
    margin-bottom: 40px;
}

.content_lv1_box4.marBT0 h3 {
    margin-bottom: 0px;
}

.content_lv1_box3 h4 {
    font-style: normal;
    font-weight: normal;
    font-size: var(--s22);
    line-height: 36px;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0px 0px 40px;
    ;
}

.layout04 .title__lv1 {
    color: #292938;
    padding-left: 0px;
}

.layout04.colred .title__lv1 {
    color: #EA2037;
}

.title__lv1__box {
    width: 690px;
    margin: auto;
    text-align: center;
}

.page-id-8 .title__lv1__box {
    width: 500px;
}

.content_lv1_box {
    /*width:470px;*/
    width: 480px;
    margin: auto;
    text-align: center;
    color: var(--secondary-color);
    padding-top: 70px;
}

.vi.single-specialities .content_lv1_box,
.single-specialities .content_lv1_box {
    padding-top: 0px;
}

.content_lv1_box2 {
    width: 490px;
    margin: auto;
    text-align: center;
    color: var(--secondary-color);
    padding-top: 70px;
}

.content_lv1_box3 {
    width: 640px;
    margin: auto;
    text-align: center;
    color: var(--secondary-color);
    padding-top: 70px;
}

.content_lv1_box4 {
    width: 700px;
    margin: auto;
    text-align: center;
    color: var(--secondary-color);
    padding-top: 70px;
}

.content_lv1_box4.paddT0 {
    padding-top: 0px;
}

.content_lv1_box2 h4 {
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    line-height: 29px;
    text-align: center;
    letter-spacing: 0.07em;
    color: #292938;
    text-transform: uppercase;
    margin: 30px 0px 0px;
}

.title__lv1__box2 {
    width: 743px;
    margin: auto;
    text-align: center;
}


/* =Header */

header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    perspective: 1000px;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    max-height: -webkit-fill-available;
}

.page-id-1178 header {
    height: auto;
    display: block;
    overflow: initial;
}

.full-bgimg {
    position: absolute;
    width: 100vw;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.full-bgimghide {
    visibility: hidden;
    opacity: 0;
    -o-transition: 0.75s;
    -webkit-transition: 0.75s;
    transition: 0.75s;
}

.full-bgimghide::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
}

.full-bgimghide.full-bgimg2::before {
    background-color: rgba(0, 0, 0, .6);
}

.fullbgmask::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
}

.full-bgimghide.active {
    visibility: visible;
    opacity: 1;
}

.layoutPB_ly2 .full-bgimghide::before {
    background-color: rgba(0, 0, 0, .5);
}

header h1 {
    z-index: 1;
    margin: 0px 0px 30px;
    /*pointer-events: none;*/
    font-style: normal;
    font-weight: 400;
    font-size: var(--s48);
    line-height: var(--s48lh);
    color: #F7F7F2;
    text-align: center;
    letter-spacing: 0.26em;
    max-width: 960px;
}

.single-news header h1 {
    text-transform: uppercase;
}

.single-careers header h1,
.page-id-405 h1,
.error404 h1 {
    text-transform: uppercase;
    color: #EA2037;
}

.barprojects {
    z-index: 1;
    width: 960px;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 480px);
}

.barprojects>ul {
    margin: 0px;
    padding: 0px;
    position: relative;
    width: 100%;
}

.barprojects>ul>li {
    width: 25%;
    color: #F7F7F2;
    list-style-type: none;
    font-family: "Sharp Sans No2 Book";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    line-height: var(--s12lh);
    text-align: center;
    color: #F7F7F2;
    padding: 0px 15px;
    cursor: pointer;
    box-sizing: border-box;
}

.barprojects>ul>li::before {
    content: "";
    width: 3px;
    height: 3px;
    background-color: #F7F7F2;
    position: absolute;
    left: 0px;
    bottom: 7px;
}

.barprojects>ul>li:last-child::after {
    content: "";
    width: 3px;
    height: 3px;
    background-color: #F7F7F2;
    position: absolute;
    right: 0px;
    bottom: 7px;
}

.protitle {
    font-family: "Galaxie Copernicus";
    font-style: normal;
    font-weight: 400;
    font-size: var(--s16);
    line-height: var(--s16lh);
    /* identical to box height */
    letter-spacing: 0.3em;
}

.procontent {
    padding-top: 20px;
}

.pro__text {
    max-width: 100%;
    z-index: 1;
    position: relative;
}

.pro__text--copy {
    position: absolute;
    overflow: hidden;
}

.pro__text--mask {
    overflow: hidden;
}


/*
.barprojects > ul > li:hover .procontent{
  display: block;
}
.rg__text--copy {
  position: absolute;
  overflow: hidden;
}
.rg__text--mask {
  overflow: hidden;
}
*/

.barprojects>ul>li:nth-child(1) {
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.barprojects>ul>li:nth-child(2) {
    position: absolute;
    left: 25%;
    bottom: 0px;
}

.barprojects>ul>li:nth-child(3) {
    position: absolute;
    left: 50%;
    bottom: 0px;
}

.barprojects>ul>li:nth-child(4) {
    position: absolute;
    left: 75%;
    bottom: 0px;
}

header h1 span {
    display: block;
}

.subtitle {
    z-index: 1;
    font-size: 1.3vw;
    color: #fff;
    letter-spacing: 0.3vw;
    transform: translateX(-9vw);
    font-weight: 300;
    pointer-events: none;
}

.decor__circle {
    border: 1px white solid;
    border-radius: 100%;
    width: 23vw;
    height: 23vw;
    position: absolute;
    top: 45vh;
    left: 27vw;
    opacity: 0.4;
    pointer-events: none;
}

.cta__circle {
    width: 7.7vw;
    height: 7.7vw;
    position: absolute;
    top: auto;
    bottom: -3.8vw;
    left: 58%;
    background: url('../img/img_logo.svg') no-repeat center;
    background-size: 50% 50%;
    pointer-events: none;
}

.cta__circle--logo {
    width: 7.7vw;
    height: 7.7vw;
    background: url('../img/img_scroll-badge.svg') no-repeat center;
    background-size: 100% 100%;
    animation: rotation 45s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.re__menu {
    position: absolute;
    right: 26px;
    top: calc(50vh - 14px);
    padding: 0px 35px 0px 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 27px;
    letter-spacing: 0.08em;
    color: #F7F7F2;
    text-transform: uppercase;
    cursor: pointer;
}

.menu__icon {
    background: url('../images/menu.svg') no-repeat center;
    background-size: 27px 27px;
    width: 27px;
    height: 27px;
    position: absolute;
    right: 0px;
    top: 0px;
    overflow: hidden;
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
}

.re__menu:hover .menu__icon {
    -o-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

.barsocial {
    position: absolute;
    right: 26px;
    top: calc(100vh - 104px);
    /*bottom: 26px; */
}

.barsocial ul {
    margin: 0px;
    padding: 0px;
}

.barsocial li {
    list-style-type: none;
    position: relative;
    margin-top: 20px;
}

.barsocial li a {
    display: table-cell;
    position: absolute;
    top: 0px;
    left: 0px;
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
    overflow: hidden;
}

.barsocial li a:hover {
    -o-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

.barsocial li.youtube {
    width: 10px;
    height: 19px;
}

.barsocial li.youtube a {
    width: 10px;
    height: 19px;
    background-size: 10px 19px;
    background-image: url(../images/icon__facebook.svg);
    background-repeat: no-repeat;
    margin-left: 5px;
}

.barsocial li.twitter {
    width: 14px;
    height: 12px;
}

.barsocial li.twitter a {
    width: 14px;
    height: 12px;
    background-size: 14px 12px;
    background-image: url(../images/twitter.svg);
    background-repeat: no-repeat;
}

.barsocial li.linkedin {
    width: 19px;
    height: 19px;
}

.barsocial li.linkedin a {
    width: 19px;
    height: 19px;
    background-size: 19px 19px;
    background-image: url(../images/linkedin.svg);
    background-repeat: no-repeat;
}


/* =Header Gallery (random image proportion) 
  Calculate aspect by setting a width first, then adjust padding bottom.
  Example for image that you want to show as 16/9 - landscape
  width: 24vw, padding-bottom: (9/16) * width = 13.5
  
  Example for image that you want to show as 9/16 - portrait
  width: 24vw, padding-bottom: (16/9) * width = 42.6

  Have fun:)

*/

.hg__image,
.rg__image {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    pointer-events: none;
}

.hg__image--l {
    width: 18vw;
    padding-bottom: 26vw;
}

.hg__image--m {
    width: 18vw;
    padding-bottom: 26.55vw;
}

.hg__image--s {
    width: 13vw;
    padding-bottom: 19vw;
}

.hg__image img,
.rg__image img,
.blog__image img,
.stage__image img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 0.8
}

.hg__left .hg__image:nth-child(1) {
    top: 17vh;
    left: 15vw;
}

.hg__left .hg__image:nth-child(2) {
    top: 30vh;
    left: 6vw;
}

.hg__left .hg__image:nth-child(3) {
    top: 56vh;
    left: 14vw;
}

.hg__right .hg__image:nth-child(1) {
    top: 15vh;
    left: auto;
    right: 21vw;
    width: 24vw;
    padding-bottom: 21vw;
}

.hg__right .hg__image:nth-child(2) {
    top: 27vh;
    left: auto;
    right: 10vw;
}

.hg__right .hg__image:nth-child(3) {
    top: 56vh;
    left: auto;
    right: 19vw;
    width: 16vw;
    padding-bottom: 20vw;
    z-index: 1;
}


/* =Reveal Gallery */

.reveal-gallery {
    width: 100%;
    height: 104vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.rg__column {
    flex-grow: 1;
    /* equivalent to 33.33% */
    padding: 0 var(--h-gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.rg__text--heading h3 {
    font-size: 3.6vw;
    line-height: 1.192307692;
}

.rg__text--heading span {
    font-size: 2vw;
    opacity: 0.5;
}

.rg__text--heading h3,
.rg__text--heading span,
.chapter {
    font-family: var(--font-headings);
    font-weight: normal;
}

.rg__text {
    max-width: 17vw;
    z-index: 1;
    position: relative;
}

.rg__text--copy,
.stage__text p {
    font-weight: 300;
    letter-spacing: .03vw;
}

.rg__text--copy p {
    margin: 0
}

.rg__column::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    width: 1px;
    height: 20vh;
    transform: translateY(-50%);
    background-color: var(--text-color);
    opacity: 0.4
}

.rg__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rg__image--mask {
    height: 100%;
    overflow: hidden;
}

.rg__image img {
    opacity: 0.6;
}

.rg__text--copy {
    position: absolute;
    overflow: hidden;
}

.rg__text--mask {
    overflow: hidden;
}


/* =Loader */

.loader {
    min-height: 100vh;
    position: fixed;
    flex-direction: column;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    overflow: hidden;
}

.loader__content {
    height: 30px;
    position: fixed;
    flex-direction: column;
    z-index: 4;
    top: calc(50vh + 60px);
    left: calc(50vw - 60px);
    width: 120px;
    visibility: visible;
    overflow: hidden;
}

.loader__mask {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #F7F7F2 url('../images/icon.png') no-repeat center;
    background-size: 290px 78px;
    overflow: hidden;
}

.loader .inner {
    width: var(--loader-width);
    height: var(--loader-height);
}

.loader .inner {
    background-color: transparent;
    position: relative;
}

.loader .progress {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: var(--loader-width);
    height: var(--loader-height);
}

.loader__content {
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    visibility: hidden;
    /* hide loader content by default */
}

.loader__title {
    font-size: 7vw;
    line-height: 8vw;
    margin: 0;
    font-family: var(--font-headings);
    color: var(--text-color);
    font-weight: normal;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.loader__image {
    width: 120px;
    height: 30px;
    overflow: hidden;
    position: relative;
}

.loader__title--mask {
    overflow: hidden;
}

.loader__title--mask span {
    display: block;
}

.loader__image--mask {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    -o-transform: scale(.4);
    -webkit-transform: scale(.4);
    transform: scale(.4);
}


/* =Main */

main {
    z-index: 1;
    position: relative;
}

section {
    position: relative;
}

.with-padding {
    padding: var(--v-spacing) 0;
}

.with-padding-bottom {
    padding-bottom: var(--v-spacing);
}

.chapter {
    position: absolute;
    left: var(--h-gutter);
    top: var(--v-spacing);
    z-index: 2;
    color: var(--text-color);
    font-size: 1.6vw;
}

.chapter span {
    opacity: 0.4;
}


/* =Portfolio */

.portfolio {
    margin-top: var(--v-spacing);
}

.portfolio .chapter {
    color: var(--text-dark-color);
    top: 0;
}

.portfolio__categories {
    display: flex;
    flex-direction: column;
}

.portfolio__categories a {
    font-family: var(--font-headings);
    color: var(--text-dark-color);
    text-decoration: none;
    font-size: 5.4vw;
    margin: auto;
    letter-spacing: 0.2vw;
    line-height: 1.5;
}

.portfolio__categories a:hover {
    z-index: 1;
}

.portfolio__image--l,
.portfolio__image--s {
    pointer-events: none;
    /* important to be able to hover over links under the image */
    position: absolute;
    width: 28vw;
    top: 11vh;
    left: 24vw;
    overflow: hidden;
    background-color: #000;
    visibility: hidden;
}

.portfolio__image--l {
    padding-bottom: 41.66vw;
}

.portfolio__image--s {
    width: 15vw;
    top: 25vh;
    left: 54vw;
    padding-bottom: 20vw;
}

.image_inside {
    position: absolute;
    opacity: 0.8;
    top: -10%;
    left: 0;
    width: 100%;
    height: 115%;
    background-size: cover;
}

.fill-background {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    will-change: background-color;
    background-color: var(--bcg-fill-color);
    transition: background-color 0.3s linear;
}


/* =Blog */

.blog {
    color: var(--text-color);
}

.blog .chapter,
.contact .chapter {
    top: inherit;
    left: inherit;
    position: relative;
    margin: 0 var(--h-gutter) var(--v-spacing) var(--h-gutter);
}

.blog__image {
    margin: 0 50% 0 16.6%;
    padding-bottom: 50%;
    position: relative;
    overflow: hidden;
}

.blog__image img {
    opacity: 1;
    height: 120%;
    top: -20%;
}

.post__date {
    font-size: 1.6vw;
    opacity: 0.6;
}

.blog__text {
    position: absolute;
    left: calc(50vw + var(--h-gutter));
    right: calc(var(--h-gutter) * 4);
    top: calc(50% + (var(--v-spacing) / 2));
    /* 50% not 50vh becasue blog is not 100vh */
    transform: translateY(-50%);
}

.blog__text h3 {
    font-family: var(--font-headings);
    font-size: 3.6vw;
    line-height: 1.192307692;
    font-weight: normal;
    letter-spacing: 0.2vw;
}


/* =Contact - same layout as blog, but flipped image and text */

.contact .chapter {
    color: var(--text-dark-color);
}

.is-flipped .blog__image {
    margin: 0 16.6% 0 50%;
}

.is-flipped .blog__text {
    right: calc(50vw + var(--h-gutter));
    left: 16.6%;
}


/* =How we work */

.how-we-work .chapter {
    top: calc(var(--v-spacing)*2);
}

.fixed-nav {
    position: fixed;
    top: 50%;
    right: 0px;
    text-align: right;
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
}

.fixed-nav.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 300;
}

.fixed-nav ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.fixed-nav li {
    overflow: hidden;
}

.fixed-nav a {
    text-decoration: none;
    position: relative;
    padding-right: 15px;
    /*transform: translateX(-1.8vw);*/
    display: block;
    transition: all 0.3s var(--easing);
    font-family: Galaxie Copernicus;
    font-style: normal;
    font-weight: 500;
    font-size: var(--s8);
    line-height: 26px;
    text-align: right;
    letter-spacing: 0.08em;
    color: #292938;
    text-transform: uppercase;
}

.fixed-nav li a::before {
    content: '';
    display: none;
    height: 2px;
    width: 1.3vw;
    background-color: var(--text-color);
    position: absolute;
    top: 50%;
    right: 0;
}

.fixed-nav li ul {
    margin: 0px 20px 0px 0px;
    height: 0px;
    -o-transition: height 0.75s;
    -webkit-transition: height 0.75s;
    transition: height 0.75s;
}

.menuhome-wrap li ul,
.menuhome-wrap__mb li ul {
    height: 0px;
    overflow: hidden;
    -o-transition: height 0.75s;
    -webkit-transition: height 0.75s;
    transition: height 0.75s;
}

.fixed-nav li li a::before {
    content: "";
    width: 5px;
    height: 1px;
    background-color: var(--primary-color);
    display: block;
}

.fixed-nav ul li:hover ul {
    height: 80px;
}

.menuhome-wrap ul li:hover ul,
.menuhome-wrap__mb ul li:hover ul {
    height: 30px;
}

.fixed-nav li li a {
    display: inline-block;
    padding-right: 10px;
}

.fixed-nav a:hover {
    color: #EA2037;
}

.stage__heading {
    font-family: var(--font-headings);
    position: relative;
    z-index: 2;
    /* fix for Safari */
}

.stage__heading h3,
.stage__heading p {
    position: absolute;
    left: 25vw;
    top: calc(var(--v-spacing) * -1.25);
    font-size: 3.6vw;
    font-weight: normal;
    margin: 0;
    white-space: nowrap;
    color: var(--text-color);
}

.stage__heading p {
    font-size: 1.6vw;
    opacity: 0.4;
    top: calc(var(--v-spacing) * -1.75);
}

.stage__image {
    width: calc(50vw + var(--h-gutter));
    margin: 0 var(--h-gutter) 0 33.33vw;
    padding-bottom: 33.33vw;
    background-color: #000000;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* fix for Safari */
}

.stage__image img {
    opacity: 0.9;
    height: 120%;
    top: -20%;
}

.stage__text {
    color: var(--text-color);
    margin: 0 calc(30vw + var(--h-gutter)) var(--v-spacing) 33.33vw;
}


/* =Footer */

.layout__tab01 {
    width: 960px;
    margin: 76px auto 0px;
}

.layout__tab01.layout__tab01__sub {
    margin: 40px auto 0px;
}

.layout__tab01>ul {
    margin: 0px;
    padding: 0px
}

.layout__tab01>ul>li {
    list-style-type: none;
    overflow: hidden;
    float: left;
    width: 25%;
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    line-height: 82px;
    text-align: center;
    letter-spacing: 0.3em;
    color: var(--secondary-color);
    text-transform: uppercase;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    /*padding-left: 0.3em;*/
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.layout__tab01.layout__tab01_nofirst>ul>li:first-child {
    width: 240px;
    height: 54px;
    opacity: 0 !important;
    cursor: inherit;
}

.layout__tab01.layout__tab01__sub>ul>li {
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    line-height: 54px;
    text-align: center;
    letter-spacing: 0.08em;
    color: #C7C7C7;
}

.layout__tab01.layout__tab__col3>ul>li {
    width: 33.3333%;
}

.layout__tab01>ul>li:last-child {
    padding-left: 0px
}

.layout__tab01>ul>li.active,
.layout__tab01>ul>li:hover {
    background-color: var(--secondary-color);
    color: #F7F7F2;
}

.layout__tab01.layout__tab01__sub>ul>li.active,
.layout__tab01.layout__tab01__sub>ul>li:hover {
    background-color: #C7C7C7;
    color: #292938;
}

.basicul li,
.actioncallul li {
    list-style-type: none;
    overflow: hidden;
    float: left;
    font-style: normal;
    font-weight: 400;
    font-size: var(--s16);
    line-height: 82px;
    text-align: center;
    letter-spacing: 0.3em;
    color: var(--background);
    background-color: var(--secondary-color);
    text-transform: uppercase;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    text-align: center;
}

.basicul.basicul1 li,
.actioncallul.actioncallul1 li {
    width: 100%;
}

.basicul.basicul2 li,
.actioncallul.actioncallul2 li {
    width: 50%;
}

.basicul.basicul3 li,
.actioncallul.actioncallul3 li {
    width: 33.3333%;
}

.basicul li::after,
.actioncallul li::after,
.paging__wrap ul li::after {
    content: "";
    width: 1px;
    height: 100%;
    background-size: 1px 82px;
    background-image: url(../images/line-vertical.svg);
    position: absolute;
    top: 0px;
    overflow: hidden;
    background-repeat: repeat;
    right: 0px;
}


/*
.paging__wrap ul li:first-child::before {
  content:"";
  width: 1px; height:100%; background-size:1px 82px; background-image:url(../images/line-vertical.svg);
  position: absolute; top:0px; overflow: hidden; background-repeat: repeat; left:0px;
}*/

.basicul li:last-child::after,
.actioncallul li:last-child::after {
    display: none;
}

.actioncallul {
    margin: 70px 0px 0px;
    padding: 0px;
}

.actioncallul li {
    line-height: 18px;
    padding: 85px 0px 50px;
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s14);
    text-align: center;
    letter-spacing: 0.1em;
}

.actioncallul li.call_hotline::before {
    content: "";
    position: absolute;
    top: 54px;
    left: calc(50% - 7px);
    width: 14px;
    height: 18px;
    background-size: 14px 18px;
    background-image: url(../images/icon-phone.svg);
    overflow: hidden;
}

.actioncallul li.google_map::before {
    content: "";
    position: absolute;
    top: 54px;
    left: calc(50% - 7px);
    width: 15px;
    height: 18px;
    background-size: 15px 18px;
    background-image: url(../images/icon-location.svg);
    overflow: hidden;
}

.actioncallul li.file_brochure::before {
    content: "";
    position: absolute;
    top: 54px;
    left: calc(50% - 9px);
    width: 18px;
    height: 17px;
    background-size: 18px 17px;
    background-image: url(../images/icon-download.svg);
    overflow: hidden;
}

.actioncallul li a {
    color: var(--background);
    text-decoration: none;
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
}

.actioncallul li a:hover {
    color: #EA2037
}

.clearfix {
    clear: both;
}

.plug {
    width: 22px;
    height: 22px;
    background-size: 22px 22px;
    background-image: url(../images/plug.svg);
    margin: 30px auto;
}

.layout__tab01>ul>li:hover .plug {
    background-image: url(../images/plug-hover.svg);
}

.line-horizontal {
    width: 100%;
    height: 1px;
    background-size: 240px 1px;
    background-image: url(../images/line-horizontal.svg);
    position: absolute;
    left: 0px;
    overflow: hidden;
    background-repeat: repeat-x;
}

.line-vertical {
    width: 1px;
    height: 82px;
    background-size: 1px 82px;
    background-image: url(../images/line-vertical.svg);
    position: absolute;
    top: 0px;
    overflow: hidden;
}

.line-top {
    top: 0px
}

.line-bottom {
    bottom: 0px;
}

.line-left {
    left: 0px
}

.line-right {
    right: 0px;
}

.tab__content__wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.tab__content {
    position: absolute;
    opacity: 0;
    top: -101%;
    left: 0px;
    z-index: 1;
    width: 100vw;
    background-color: #f7f7f2;
}

.tab__content.active {
    opacity: 1;
    top: 0px;
    z-index: 2;
}

.layout-column-img {
    width: calc(50vw + 241px);
}

.layout-column-img img {
    width: 100%;
    height: auto;
    display: block;
}

.layout-column-text {
    position: absolute;
    left: calc(50vw + 271px);
    top: 50%;
    width: 180px;
    -o-transform: translateY(-26%);
    -webkit-transform: translateY(-26%);
    transform: translateY(-26%);
}

.layout-column-text h3,
.newsdetail h3,
.newsdetail h4 {
    font-style: normal;
    font-weight: 500;
    font-size: var(--s20);
    line-height: 23px;
    letter-spacing: 0.3em;
    margin: 0px 0px 20px;
}

.newsdetail h3,
.newsdetail h4 {
    color: #EA2037;
    text-transform: uppercase;
    margin: 30px 0px 20px;
    letter-spacing: 0.02em;
}

.uljobtype {
    margin: 0px 0px 15px;
    padding: 0px;
}

.uljobtype li {
    display: inline-block;
    margin: 0px 30px 0px 0px;
    text-decoration: underline;
    text-transform: uppercase;
}

.career__title {
    text-transform: uppercase;
    font-size: var(--s20);
    line-height: 20px;
    color: #EA2037;
    padding-right: 30px;
}

.career_date {
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    letter-spacing: 0.08em;
}

.linka {
    position: relative;
    height: 24px;
    line-height: 24px;
    margin-top: 50px;
}

.linka a {
    font-family: "Sharp Sans No2 Medium";
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    position: relative;
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
}

.iconlink {
    width: 11px;
    height: 7px;
    background-size: 11px 7px;
    background-image: url(../images/linka.svg);
    overflow: hidden;
    position: absolute;
    left: calc(100% + 9px);
    top: 4px;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.linka a:hover {
    color: var(--primary-color)
}

.linka a:hover .iconlink {
    background-image: url(../images/linka-hover.svg);
    left: calc(100% + 5px);
}

.relative {
    position: relative !important;
}

.img__full img {
    width: 100%;
    height: auto;
    display: block;
    margin: 290px auto 0px;
}

.fullimg,
.fullimg a {
    position: relative;
}

.imghover {
    transition: width .5s;
    width: 0px;
    height: 100%;
    position: absolute;
    background-color: rgba(247, 247, 242, 0.2);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0px;
    left: 50%;
}

.fullimg:hover .imghover {
    width: 100%;
}

.fullimg img {
    width: 100%;
    height: auto;
    display: block;
}

.title__lv1__box3 {
    width: 1106px;
    margin: auto;
    text-align: center;
}

.title__lv1__box4 {
    width: 568px;
    margin: auto;
    text-align: center;
}

.title__lv1__box5 {
    width: 400px;
    margin: auto;
    text-align: center;
}

.layoutPB_ly2 .full-bgimg {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    max-height: 100vh;
}

.pinscroll__circle {
    font-style: normal;
    font-weight: 500;
    font-size: var(--s66);
    line-height: 75px;
    text-align: center;
    letter-spacing: 0.04em;
    color: #C7C7C7;
    position: relative;
    box-sizing: border-box;
    width: 100vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 96px 0px 0px;
}

.pinscroll__circle-wrap {
    height: 100vh;
    overflow: hidden;
    max-height: 100vh;
    padding: 0 100px;
}

.pinscroll__circle-content {
    /*position: absolute; top:0px; left:0px;  width: 100vw;*/
    z-index: 1;
}

.pinscroll__circle ul {
    margin: 0px;
    padding: 0px;
}

.pinscroll__circle li {
    list-style-type: none;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.pinscroll__circle li:hover {
    color: #EA2037;
}

.ulpart {
    text-align: center;
    margin-top: 130px
}

.ulpart li {
    list-style-type: none;
    display: inline-block;
    vertical-align: middle;
}

.ulpart li img,
.ulpart .varwidthid img {
    max-height: 50px;
    width: auto;
}

.hero-marquee.ulpart li img,
.ulpart .marquee li img {
    max-height: 54px;
    width: auto;
}

.ulpart li img {
    max-height: 64px;
}

.variable-width {
    width: 9000px;
    text-align: center;
}

.varwidthid {
    margin: 0px 35px;
    display: inline-block;
}

.hero-marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    height: 54px;
}

.marquee {
    font-size: 0;
    height: 54px;
    padding-left: 50%;
}

.marquee ul {
    text-align: center;
    margin: 0px;
}

.clipped-text {
    display: inline-block;
    margin-right: 100px;
}

.clipped-text img {
    max-height: 54px;
}

.newshome li {
    float: left;
    position: relative;
    width: calc(50% - 4px);
    list-style-type: none;
    box-sizing: border-box;
}

.newshome li:nth-child(odd) {
    float: left;
    width: calc(50% - 4px);
}

.newshome li:nth-child(even) {
    float: right;
    width: calc(50% - 4px);
}

.post-type-archive-careers .newshome li:nth-child(odd),
.post-type-archive-careers .newshome li:nth-child(even),
.single-careers .newshome li:nth-child(odd),
.single-careers .newshome li:nth-child(even) {
    float: left;
    width: calc(25% - 2px);
    margin: 0px 2px 0px 0px;
    box-sizing: content-box;
}

.post-type-archive-careers .newshome li:nth-child(4n+4),
.single-careers .newshome li:nth-child(4n+4) {
    margin-right: 0px;
}

.post-type-archive-careers .newshome li:nth-child(3),
.single-careers .newshome li:nth-child(3) {
    clear: inherit;
}

.post-type-archive-careers .newshome li:nth-child(3),
.post-type-archive-careers .newshome li:nth-child(4),
.post-type-archive-careers .newshome li:nth-child(5),
.post-type-archive-careers .newshome li:nth-child(6),
.single-careers .newshome li:nth-child(3),
.single-careers .newshome li:nth-child(4),
.single-careers .newshome li:nth-child(5),
.single-careers .newshome li:nth-child(6) {
    margin-top: 0px;
}

.post-type-archive-careers .newshome li:nth-child(n+5),
.single-careers .newshome li:nth-child(n+5) {
    margin-top: 15px;
}

.post-type-archive-careers .newshome li:nth-child(4n+1),
.single-careers .newshome li:nth-child(4n+1) {
    clear: both;
}

.newshome li .fullimg {
    width: 50%;
    height: 10rem;
}

.post-type-archive-news .newshome li .fullimg {
    height: auto;
}

.newshome #newshomeul2 li .fullimg,
.newshome #newshomeul3 li:nth-child(1) .fullimg,
.newshome #newshomeul3 li:nth-child(2) .fullimg {
    width: 100%;
}

.newshome li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.newshome__short {
    background-color: #E0E6E6;
    position: absolute;
    top: 0px;
    left: 50%;
    height: 100%;
    width: 50%;
}

.post-type-archive-careers .newshome__short,
.single-careers .newshome__short {
    background-color: #E0E6E6;
    position: relative;
    top: 0px;
    left: 0px;
    height: 280px;
    width: 100%;
}

#newshomeul2 .newshome__short,
.newshome #newshomeul3 li:nth-child(1) .newshome__short,
.newshome #newshomeul3 li:nth-child(2) .newshome__short {
    background-color: #E0E6E6;
    position: relative;
    top: 0px;
    left: 0px;
    height: 170px;
    width: 100%;
}

.newshome li:nth-child(3) {
    clear: both;
}

.newshome li:nth-child(4),
.newshome li:nth-child(5),
.newshome li:nth-child(6) {
    float: left;
    margin-left: 2px;
}

.newshome li:nth-child(3),
.newshome li:nth-child(4),
.newshome li:nth-child(5),
.newshome li:nth-child(6) {
    width: calc(25% - 2px);
    margin-top: 30px;
}

.newshome li:nth-child(3) .fullimg,
.newshome li:nth-child(4) .fullimg,
.newshome li:nth-child(5) .fullimg,
.newshome li:nth-child(6) .fullimg {
    width: 100%;
}

.newshome li .fullimg_img2 {
    display: none;
}

.newshome li:nth-child(3) .fullimg_img2,
.newshome li:nth-child(4) .fullimg_img2,
.newshome li:nth-child(5) .fullimg_img2,
.newshome li:nth-child(6) .fullimg_img2 {
    display: block;
}

.newshome li:nth-child(3) .fullimg_img1,
.newshome li:nth-child(4) .fullimg_img1,
.newshome li:nth-child(5) .fullimg_img1,
.newshome li:nth-child(6) .fullimg_img1 {
    display: none;
}

.newshome li:nth-child(3) .newshome__short,
.newshome li:nth-child(4) .newshome__short,
.newshome li:nth-child(5) .newshome__short,
.newshome li:nth-child(6) .newshome__short {
    background-color: #E0E6E6;
    position: relative;
    top: 0px;
    left: 0px;
    height: 278px;
    width: 100%;
}

.post-type-archive-careers .newshome li:nth-child(3) .newshome__short,
.post-type-archive-careers .newshome li:nth-child(4) .newshome__short,
.post-type-archive-careers .newshome li:nth-child(5) .newshome__short,
.post-type-archive-careers .newshome li:nth-child(6) .newshome__short,
.single-careers .newshome li:nth-child(3) .newshome__short,
.single-careers .newshome li:nth-child(4) .newshome__short,
.single-careers .newshome li:nth-child(5) .newshome__short,
.single-careers .newshome li:nth-child(6) .newshome__short {
    height: 280px;
}

.newshome {
    margin: 80px auto 0px;
    width: 960px;
}

.newshome__short__content {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #E0E6E6;
}

.newshome__month {
    font-family: "Sharp Sans No2 Medium";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s10);
    line-height: 10px;
    letter-spacing: 0.08em;
    position: absolute;
    top: 15px;
    left: 20px;
}

.newshome__year {
    font-family: "Sharp Sans No2 Medium";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s10);
    line-height: 10px;
    letter-spacing: 0.08em;
    position: absolute;
    top: 15px;
    right: 20px;
}

.newshome__cate {
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s10);
    line-height: 10px;
    letter-spacing: 0.08em;
    position: absolute;
    bottom: 15px;
    left: 20px;
    text-transform: uppercase;
}

.newshome__readmore {
    font-family: "Sharp Sans No2 Medium";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s10);
    line-height: 105.6%;
    letter-spacing: 0.08em;
    position: absolute;
    bottom: 15px;
    right: 20px;
}

.newshome__readmore a {
    text-decoration: none;
    color: var(--secondary-color);
    padding-right: 18px;
    position: relative;
}

.newshome__readmore a::after {
    content: "";
    width: 8px;
    height: 8px;
    background-size: 8px 8px;
    background-image: url(../images/read.svg);
    overflow: hidden;
    position: absolute;
    right: 0px;
    -transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
}

.newshome__readmore a:hover,
.newshome__title a:hover {
    color: var(--primary-color)
}

.newshome__readmore a:hover:after {
    background-image: url(../images/read-hover.svg);
}

.newshome__title {
    font-family: Galaxie Copernicus;
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.1em;
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-transform: uppercase;
    padding: 0px 5px;
    box-sizing: border-box;
}

.newshome__title a {
    text-decoration: none;
    color: var(--secondary-color);
    -transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
}

.gs_reveal {
    opacity: 0;
}

.homecontact {
    width: 100%;
    box-sizing: border-box;
    font-family: "Sharp Sans No2 Medium";
    font-style: normal;
    font-weight: 500;
    font-size: var(--s12);
    line-height: 18px;
    letter-spacing: 0.02em
}

.homecontact__wrap {
    width: 960px;
    margin: auto;
    padding-left: 480px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.homecontact h3 {
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    line-height: 105.6%;
    letter-spacing: 0.08em;
    color: #292938;
    margin: 0px 0px 20px;
    padding: 0px;
}

.homecontact h4 {
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #292938;
    margin: 0px 0px 10px;
    padding: 0px;
}

.homecontact li {
    list-style-type: none;
    float: left;
    width: 50%;
}

.homecontact-content {
    margin: 90px 0px 60px;
}

.line__input {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #C7C7C7;
    -o-transform: scaleY(.5);
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
}

.homecontact input,
.newsdate input {
    width: 100%;
    line-height: 40px;
    height: 40px;
    box-sizing: border-box;
    border: 0px;
    background-color: transparent;
}

.frow {
    width: 100%;
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    margin-top: 0px;
    position: relative;
}

.frowarea {
    height: 160px;
    width: 100%;
    overflow: hidden;
}

.formleft {
    float: left;
    width: calc(50% - 7px);
    overflow: hidden;
    position: relative;
}

.formright {
    float: right;
    width: calc(50% - 7px);
    overflow: hidden;
    position: relative;
}

.homecontact textarea {
    height: 120px;
    width: 100%;
    background-color: transparent;
    border: 0px;
    line-height: 19px;
    margin-top: 40px;
    padding-top: 11px;
}

.textarea_lable {
    position: absolute;
    height: 40px;
    line-height: 40px;
    top: 0px;
    left: 0px;
    color: rgba(0, 0, 0, .6);
}

.forminput {
    position: relative;
}

.linecontact {
    width: 480px;
    height: 1px;
    background-size: 480px 1px;
    background-image: url(../images/linecontact.svg);
    overflow: hidden;
    position: absolute;
    left: 0px;
}

.linecontact1 {
    top: calc(25% - 2px)
}

.linecontact2 {
    top: calc(50% - 2px)
}

.linecontact3 {
    top: calc(75% - 2px)
}

.linecontact4 {
    top: calc(100% - 2px)
}

.frowbutton {
    margin: 32px 0px 0px;
}

.frowbutton button {
    line-height: 38px;
    border: 0px;
    background-color: #292938;
    width: 100%;
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    text-align: center;
    letter-spacing: 0.08em;
    color: #F7F7F2;
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
    cursor: pointer
}

.frowbutton button:hover {
    background-color: var(--primary-color)
}

.copyright a:hover {
    color: var(--primary-color)
}

.layout02.footer {
    margin: 0px;
    padding: 0px;
    width: 100vw;
    height: 90px;
}

.footer__wrap {
    width: 960px;
    margin: auto;
    position: relative;
}

.copyright {
    float: left;
    line-height: 90px;
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s10);
    /* or 11px */
    text-align: center;
    letter-spacing: 0.02em;
    /* Secondary Color */
    color: #292938;
    padding-left: 50%;
    text-transform: uppercase;
}

.copyright a {
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
    cursor: pointer;
    color: #292938;
}

.copyright li {
    list-style-type: none;
    float: left;
    margin-right: 56px
}

.line {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    overflow: hidden;
    background-image: url("../images/line.svg");
    background-repeat: repeat-x;
    overflow: hidden;
}

.line-contact {
    width: 7px;
    height: 100px;
    background-size: 7px 100px;
    background-image: url(../images/line-contact.svg);
    overflow: hidden;
    margin: auto auto 70px;
}

.homecontact-content,
.formleft,
.formright,
.footer,
form {
    position: relative;
    z-index: 10;
}


/*
.homecontact__map {
  position: absolute; top: 0; left: 0px; z-index: 1;
}*/

.homecontact__map img {
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 60%;
    height: auto;
}

.text_hint {
    position: absolute;
    top: 40px;
    left: 0px;
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    line-height: 105.6%;
    letter-spacing: 0.08em;
    color: #292938;
    width: 170px;
}

.ban__title {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f7f7f2;
}

.ban__title_content {
    position: absolute;
    top: 50%;
    left: calc(50vw - 220px);
    width: 440px;
    text-align: center;
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-specialities .ban__title_content {
    left: calc(50vw - 262px);
    width: 584px;
}

.ban__title_content h1 {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 400;
    font-size: var(--s48);
    line-height: 66px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    margin: 0px auto 70px;
    padding: 0px;
    width: 270px;
    text-align: center;
    box-sizing: border-box;
}

.single-specialities .ban__title_content h1 {
    width: 100%;
    color: #292938
}

.ban__title_content.ban__title_content2 {
    left: calc(50vw - 280px);
    width: 560px;
}

.ban__title_content.ban__title_content2 p {
    padding-left: 50px;
    padding-right: 50px;
}

.ban__title_content.ban__title_content2 h1 {
    width: 100%;
}

.body__title .re__menu {
    color: var(--secondary-color);
}

.body__title .menu__icon {
    background-image: url(../images/menu_b.svg);
}

.body__title .burger {
    background-image: url(../images/search_b.svg);
}

.body__title .logo__img,
.body__title .logo__text {
    background-image: url(../images/logo_bn.svg);
}

.body__title .barsocial li.youtube a {
    background-image: url(../images/icon__facebook_b.svg);
}

.body__title .barsocial li.twitter a {
    background-image: url(../images/twitter_b.svg);
}

.body__title .barsocial li.linkedin a {
    background-image: url(../images/linkedin_b.svg);
}

.ul__3col {
    margin: 0px;
    padding: 0px;
}

.ul__3col li {
    float: left;
    width: calc(33.3333% - 16px);
    margin: 0px 24px 0px 0px;
    list-style: none;
    padding: 40px 0px 0px;
    border-top: 2px solid #EA2037;
    border-bottom: 2px solid #EA2037;
}

.ul__3col li:nth-child(3n+1) {
    clear: both;
}

.ul__3col li:nth-child(3n+3) {
    margin-right: 0px;
}

.rptitle {
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.3em;
    color: #EA2037;
    text-transform: uppercase;
    margin: 0px 0px 40px;
}

.rpcontent {
    font-style: normal;
    font-weight: normal;
    font-size: var(--s14);
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #292938;
    background-color: #E0E6E6;
    padding: 46px 20px 36px;
    box-sizing: border-box;
}

.item___txt {
    font-family: "Sharp Sans No2 Medium";
    font-style: normal;
    font-weight: 500;
    font-size: var(--s72);
    line-height: 82px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #EA2037;
}

.in_content {
    font-style: normal;
    font-weight: normal;
    font-size: var(--s48);
    line-height: 66px;
    text-align: center;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    width: 720px;
    margin: 140px auto;
}

.with-parallax {
    position: relative;
    overflow: hidden;
}

.with-parallax img {
    width: 100%;
    height: auto;
}

.with-parallax.begin img {
    top: 0;
    left: 0;
    position: absolute;
    top: 0px;
}

.yearcat {
    margin: 0px;
    padding: 0px;
}

.yearcat li {
    list-style: none;
    float: left;
    padding: 0px 0px;
    line-height: 70px;
    width: 96px;
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s14);
    text-align: center;
    letter-spacing: 0.08em;
    color: #C7C7C7;
    position: relative;
    overflow: hidden;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.yearcat li.active,
.yearcat li:hover {
    background-color: #292938;
    color: #f7f7f2;
}

.yearcat li:last-child::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 1px;
    height: 100%;
    overflow: hidden;
    background-image: url("../images/line-v.svg");
    background-repeat: repeat-y;
    overflow: hidden;
}

.yearcat-content {
    width: 1920px;
}

.yearcat-wrap {
    width: 100%;
    overflow: hidden;
    margin: 70px 0px 0px;
}

.mydraggable__wrap {
    width: 100%;
    overflow: hidden;
}

.mydraggable__content {
    width: 4600px;
}

.coldraggable {
    float: left;
}

.draggableul {
    margin: 0px;
    padding: 0px;
}

.draggableul li {
    list-style: none;
}

.line-h-top {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    overflow: hidden;
    background-image: url("../images/line.svg");
    background-repeat: repeat-x;
    overflow: hidden;
}

.line-h-bottom {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    overflow: hidden;
    background-image: url("../images/line.svg");
    background-repeat: repeat-x;
    overflow: hidden;
}

.line-v-left {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 1px;
    height: 100%;
    overflow: hidden;
    background-image: url("../images/line-v.svg");
    background-repeat: repeat-y;
    overflow: hidden;
}

.line-v-right {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 1px;
    height: 100%;
    overflow: hidden;
    background-image: url("../images/line-v.svg");
    background-repeat: repeat-y;
    overflow: hidden;
}

.ul__2col {
    margin: 23px 0px 0px;
    padding: 0px;
}

.ul__2col li {
    list-style: none;
    float: left;
    width: 480px;
    position: relative;
    margin: 7px 0px 0px;
    padding-right: 7px;
    box-sizing: border-box;
}

.ul__2col li:last-child {
    width: 473px;
    padding-right: 0px;
}

.ul__2col_wrap {
    overflow: hidden;
}


/*
.ul__2col li:nth-child(even) {
  float:right;
}*/

.journeytitle {
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 0px 40px;
    line-height: 66px;
    background-color: #E0E6E6;
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    text-align: center;
    letter-spacing: 0.3em;
}

.ul__1col {
    margin: 80px 0px 0px;
    padding: 0px;
}

.ul__1col li {
    list-style: none;
    position: relative;
    overflow: hidden;
    /*padding: 50px 0px 27px;*/
    padding: 30px 0px;
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    line-height: 29px;
    text-align: center;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ul__1col li::before {
    counter-increment: section;
    content: counter(section) ".";
    position: absolute;
    top: 20px;
    left: 50%;
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: none;
}

.ul__1col__li {
    width: 388px;
    margin: auto;
}

.ul__1col .line-h-bottom {
    display: none;
}

.ul__1col li:last-child .line-h-bottom {
    display: block;
}

.slteams {
    margin: 50px 0px 0px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.item-team {
    position: relative;
    padding: 0px 0px 80px;
    width: 100%;
    box-sizing: border-box;
}

.team-img {
    float: left;
    width: 50%;
    box-sizing: border-box;
}

.team-text {
    float: left;
    width: 50%;
    text-align: center;
    padding: 0px 50px;
    box-sizing: border-box;
}

.team-img img {
    width: 100%;
    height: auto;
    display: block;
}

.team-title {
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    line-height: 12px;
    letter-spacing: 0.08em;
    color: #EA2037;
    padding: 80px 0px 0px;
    text-transform: uppercase;
}

.team-text-title {
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.3em;
    padding: 30px 0px 40px;
    text-transform: uppercase;
}

.content-ajax {
    position: relative;
}

.lapreloader-c {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(247, 247, 242, .6);
    top: 0px;
    left: 0px;
    z-index: 1000;
}

.lapreloaderimg {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.updating {
    width: 100% !important;
    margin: 0px !important;
    line-height: 458px;
    text-transform: uppercase;
    text-align: center;
}

.updating2 {
    width: 720px !important;
    margin: 0px !important;
    line-height: 347px;
    text-transform: uppercase;
    text-align: center;
}

.draggableitemnew {
    opacity: 0;
}

.menuhome-wrap {
    position: absolute;
    top: 0px;
    right: -100vw;
    text-align: left;
    width: 50vw;
    height: 100vh;
    background-color: #292938;
    font-style: normal;
    font-weight: 400;
    font-size: var(--s48);
    line-height: 66px;
    letter-spacing: 0.26em;
    color: #F7F7F2;
    z-index: 900;
    padding: 0px 0px 0px 50px;
    display: table;
    box-sizing: border-box;
}

.menuhome-wrap__mb {
    position: fixed;
    top: 84px;
    right: -100vw;
    text-align: left;
    width: 100vw;
    height: calc(100vh - 84px);
    background-color: #292938;
    font-style: normal;
    font-weight: 500;
    font-size: var(--s48);
    line-height: 66px;
    letter-spacing: 0.26em;
    color: #F7F7F2;
    z-index: 900;
    padding: 0px 0px 0px 50px;
    display: table;
    box-sizing: border-box;
}

.menuhome-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50vw;
    width: 50vw;
    height: 100vh;
    background-color: hsla(0, 0%, 7%, .36);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: none !important;
}

.menuhome-wrap_mask {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: hsla(0, 0%, 7%, .36);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
}

.tablecell {
    display: table-cell;
    vertical-align: middle;
}

.menuhome-wrap ul,
.menuhome-wrap__mb ul {
    margin: 0px;
    padding: 0px;
}

.menuhome-wrap li,
.menuhome-wrap__mb li {
    list-style: none;
}

.menuhome-wrap a,
.menuhome-wrap__mb a {
    color: #F7F7F2;
    text-decoration: none;
    text-transform: uppercase;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.menuhome-wrap a:hover,
.menuhome-wrap__mb a:hover {
    color: var(--primary-color);
}

.menuhome-wrap ul ul,
.menuhome-wrap__mb ul ul {
    font-style: normal;
    font-weight: 400;
    font-size: var(--s16);
    line-height: 18px;
    letter-spacing: 0.3em;
}

.menuhome-wrap ul ul li,
.menuhome-wrap__mb ul ul li {
    display: inline-block;
    margin: 0px 0px 12px;
}

.menuhome-wrap ul ul li::after,
.menuhome-wrap__mb ul ul li::after {
    content: "/";
}

.menuhome-wrap ul ul li:last-child::after,
.menuhome-wrap__mb ul ul li:last-child::after {
    display: none;
}

.main-nav,
.burger,
.re__menu {
    z-index: 1000;
}

.body__title .re__menu.closemenu {
    color: #F7F7F2;
}

.re__menu span.last-child {
    display: none;
    ;
}

.re__menu.closemenu span.last-child {
    display: block;
}

.re__menu.closemenu span.first-child {
    display: none;
}

.re__menu.closemenu .menu__icon {
    background: url('../images/menu-close.svg') no-repeat center;
}

.bar__bottom {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100vw;
}

.bar__bottom .layout__tab01 {
    margin-top: 0px;
}

.specialities__title {
    margin-top: 20px
}

.specialities__title a {
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    line-height: 18px;
    letter-spacing: 0.3em;
    color: #292938;
    text-transform: uppercase;
    text-decoration: none;
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
}

.specialities__title a:hover {
    color: var(--primary-color)
}

.specialities__location {
    font-family: "Sharp Sans No2 Medium";
    font-style: normal;
    font-weight: 500;
    font-size: var(--s10);
    line-height: 10px;
    text-transform: uppercase;
    margin-top: 12px;
    position: relative;
    padding-left: 18px;
}

.specialities__location::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0px;
    width: 13px;
    height: 16px;
    background-size: 13px 16px;
    background-image: url(../images/location.svg);
    overflow: hidden;
}

.head_logo {
    width: 190px;
    margin: auto auto 70px;
}

.head_logo img {
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

.photoitem,
.photovideo {
    width: 100%;
    position: relative;
}

.photoitem img,
.featitem img,
.photovideo img {
    width: 100%;
    height: auto;
    ;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featitem {
    position: relative;
    padding: 0px 0px 40px;
}

.feat_photos {
    position: relative;
}

.myslick-prev {
    position: absolute;
    bottom: 0px;
    right: 110px;
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    line-height: 18px;
    letter-spacing: 0.3em;
    color: #292938;
    cursor: pointer;
}

.myslick-prev::after {
    content: "/";
    position: absolute;
    right: -26px;
    color: #292938;
}

.myslick-next {
    position: absolute;
    bottom: 0px;
    right: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    line-height: 18px;
    letter-spacing: 0.3em;
    color: #292938;
    cursor: pointer;
}

.feat_photos .myslick-prev,
.feat_photos .myslick-next {
    display: none;
}

.myslick-prev:hover,
.myslick-next:hover {
    color: #EA2037;
}

.rp03_title {
    position: absolute;
    bottom: 0px;
    left: 0px;
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    line-height: 18px;
    letter-spacing: 0.3em;
    color: #292938;
}

.feat_photos {
    margin: 30px 0px 0px;
}

.myaccord ul {
    margin: 0px;
    padding: 0px;
}

.myaccord ul li {
    list-style: none;
    margin: 6px 0px 0px;
    background-color: #E0E6E6;
}

.myaccord ul li li {
    list-style: disc;
    margin-left: 20px;
}

.myaccord ul li li:last-child {
    margin-bottom: 20px;
}

.myaccord__title {
    padding: 25px 35px 25px 25px;
    cursor: pointer;
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 700;
    font-size: var(--s16);
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
}

.myaccord__title::before {
    content: "";
    position: absolute;
    right: 25px;
    top: calc(50% - 4px);
    width: 9px;
    height: 9px;
    background-size: 9px 9px;
    background-image: url(../images/accord.svg);
    overflow: hidden;
}

.myaccord__title::after {
    content: "";
    position: absolute;
    right: 23px;
    top: calc(50% - 6px);
    display: none;
    width: 13px;
    height: 13px;
    background-size: 13px 13px;
    background-image: url(../images/accord-active.svg);
    overflow: hidden;
}

.myaccord__title.active::after {
    display: block;
}

.myaccord__title.active::before {
    display: none;
}

.myaccord__content {
    padding: 0px 25px 0px;
    overflow: hidden;
    box-sizing: border-box;
    height: 0px;
}

.myaccord__content.active {
    height: auto;
}

.minHeight {
    height: 15px;
}

.news__item {
    width: 100%;
    height: calc(100vh - 130px);
}

.news__item__text {
    float: left;
    width: calc(25% - 2px);
    height: 100%;
}

.news__item__img {
    float: right;
    width: calc(75% + 2px);
    height: 100%;
}

.fullimg.fullimgbgr {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
}

.popular__news {
    margin-top: 90px;
}

.page-id-8 .popular__news,
.page-id-8 .pinscroll__circle {
    margin-top: 0px;
}

.paging__wrap {
    margin: 40px 0px 0px;
}

.paging__wrap ul {
    margin: 0p;
    padding: 0px;
    float: right;
}

.paging__wrap ul li {
    list-style: none;
    float: left;
    line-height: 40px;
    height: 40px;
    font-family: "Sharp Sans No2 Medium";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s10);
    letter-spacing: 0.08em;
    width: 120px;
    text-align: center;
    position: relative;
    cursor: pointer;
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
    overflow: hidden;
}

.paging__wrap ul li.active,
.paging__wrap ul li:hover {
    background-color: #E0E6E6;
}

.paging__wrap li.pageli {
    display: none;
}

.paging__wrap li.pageli.page1 {
    display: block;
}

.paging__wrap li.pagemore {
    display: block;
}

.paging__wrap li:last-child,
.paging__wrap li:first-child {
    display: block;
}

.paging__wrap li.last-child::before {
    content: "";
    width: 8px;
    height: 12px;
    background-size: 8px 12px;
    background-image: url("../images/lastpage.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: 14px;
    left: calc(50% - 4px);
}

.paging__wrap li.first-child::before {
    content: "";
    width: 8px;
    height: 12px;
    background-size: 8px 12px;
    background-image: url("../images/lastpage.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: 14px;
    left: calc(50% - 4px);
    transform: rotate(180deg);
}

.single-careers .pinscroll__circle-wrap {
    height: calc(100vh - 163px);
    max-height: calc(100vh - 163px);
    padding-right: 40px;
    margin-right: 40px;
    padding-left: 0px;
}

.newsdate {
    float: left;
    width: calc(25% - 2px);
    margin-top: 60px;
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    letter-spacing: 0.08em;
}

.single-careers header .newsdate {
    background-color: #292938;
    padding: 40px 0px 0px;
    box-sizing: border-box;
    width: 30%;
    height: calc(100vh - 80px);
    max-height: calc(100vh - 80px);
    text-align: center;
    color: #f7f7f2;
    float: left;
}

.newsdate__paddLR {
    padding-left: 25px;
    padding-right: 25px
}

.single-careers header .newsdate input {
    color: #f7f7f2;
    text-align: center;
    font-family: "Galaxie Copernicus";
    font-weight: 500;
    font-size: var(--s12);
}

.single-careers header .newsdate input.inputjobtitle {
    color: #EA2037;
}

.single-careers header .newsdate textarea {
    color: #f7f7f2;
    text-align: center;
    font-family: "Galaxie Copernicus";
    font-weight: 500;
    font-size: var(--s12);
    line-height: 16px;
    height: calc(100vh - 586px);
    resize: none;
    width: 100%;
    background-color: transparent;
    border: 0px;
}

.borderB {
    border-bottom: 1px solid #f7f7f2;
}

.single-careers header .frow {
    margin-top: 20px;
    height: inherit;
    line-height: inherit;
}

.single-careers header ::-webkit-input-placeholder {
    color: #f7f7f2;
    font-family: "Galaxie Copernicus";
    font-weight: 500;
    font-size: var(--s12);
}

.filecv {
    display: none;
}

#txtfile {
    line-height: 32px;
    height: 32px;
    font-family: "Galaxie Copernicus";
    font-weight: 500;
    font-size: var(--s12);
    cursor: pointer;
}

.frowbnt {
    line-height: 60px;
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    text-align: center;
    letter-spacing: 0.08em;
    background-color: #C7C7C7;
    color: #292938;
    text-transform: uppercase;
    margin-top: 62px;
    cursor: pointer;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.frowbnt:hover {
    background-color: #EA2037;
    color: #f7f7f2;
}

.single-careers header :-ms-input-placeholder {
    color: #f7f7f2;
    font-family: "Galaxie Copernicus";
    font-weight: 500;
    font-size: var(--s12);
}

.single-careers header ::placeholder {
    color: #f7f7f2;
    font-family: "Galaxie Copernicus";
    font-weight: 500;
    font-size: var(--s12);
    opacity: 1;
}

.title__apply {
    font-style: normal;
    font-weight: 500;
    font-size: var(--s16);
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.hint {
    color: #f7f7f2;
    text-align: center;
    font-family: "Galaxie Copernicus";
    font-weight: 500;
    font-size: var(--s12);
}

.newsdetail {
    float: left;
    width: calc(75% + 2px);
    margin-top: 60px;
}

.single-careers .newsdetail {
    width: 70%;
    box-sizing: border-box;
    float: left;
}

.newsdetail img {
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
}

.joblink {
    width: 100%;
    height: 40px;
    line-height: 40px;
    display: table;
}

.joblink a {
    text-decoration: none;
    font-family: 'Sharp Sans No2 Medium';
    font-style: normal;
    font-weight: 600;
    font-size: var(--s10);
    text-align: center;
    letter-spacing: 0.08em;
    color: #292938;
    display: table-cell;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    -o-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
    position: relative;
    overflow: hidden;
}

.joblink a:hover {
    background-color: var(--secondary-color);
    color: #f7f7f2
}


/*=============*/

.colitemone {
    width: 240px;
}

.colitemtow {
    width: 480px;
}

.colitemthree {
    width: 720px;
}

.colitemfour {
    width: 960px;
}

.marLeft1column {
    margin-left: 240px;
    position: relative;
}

.layout01_enable {
    margin: 0px;
    padding: 0px;
}

.layout01_enable li {
    list-style: none;
    position: relative;
    box-sizing: border-box;
    width: 100vw;
}

.layout01_enable li:nth-child(odd) {
    padding-right: 50%;
}

.layout01_enable li:nth-child(even) {
    padding-left: 50%;
}

.item__img img {
    width: 100%;
    height: auto;
    display: block;
}

.item__text {
    position: absolute;
    top: 50%;
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 605px;
    padding: 0px 50px;
    box-sizing: border-box;
    text-align: center;
}

.item__text h3 {
    font-style: normal;
    font-weight: 400;
    font-size: var(--s42);
    line-height: 60px;
    text-align: center;
    letter-spacing: 0.2em;
    color: #292938;
    margin: 0px 0px 40px;
}

.item__text h5,
.content_lv1_box3 h5,
.content_lv1_box4 h5 {
    font-family: "Sharp Sans No2 Semibold";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    line-height: 105.6%;
    text-align: center;
    letter-spacing: 0.08em;
    color: #292938;
    margin: 0px 0px 40px;
}

.layout01_enable li:nth-child(odd) .item__text {
    left: 50%;
    padding-right: 0px;
}

.layout01_enable li:nth-child(even) .item__text {
    left: calc(50% - 605px);
    padding-left: 0px;
}

.relative__link {
    text-align: center;
    margin: 30px 0px 40px;
}

.relative__link .linka {
    margin-top: 0px;
}

.relative__link .newshome__readmore {
    position: relative;
    top: 0px;
    bottom: inherit;
    right: inherit;
}

.relative__a .newshome {
    margin-top: 0px;
}

.linka.linkaaa {
    margin-top: 20px;
    text-align: right;
    padding-right: 22px;
}

.whyus {
    margin: 80px 0px 0px;
    padding: 0px;
    text-align: center;
}

.whyus li {
    display: inline-block;
    width: 180px;
    margin: 0px 36px;
    padding: 40px 0px 0px;
    position: relative;
    vertical-align: top;
}

.whyus li::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    background-repeat: no-repeat;
}

.whyus li:nth-child(1):before {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-image: url(../images/whyus01.svg);
}

.whyus li:nth-child(2):before {
    width: 28px;
    height: 23px;
    background-size: 28px 23px;
    background-image: url(../images/whyus02.svg);
}

.whyus li:nth-child(3):before {
    width: 26px;
    height: 30px;
    background-size: 26px 30px;
    background-image: url(../images/whyus03.svg);
}

.whyus li:nth-child(4):before {
    width: 22px;
    height: 33px;
    background-size: 22px 33px;
    background-image: url(../images/whyus04.svg);
}

.marTParalaxx {
    margin: 80px 0px 0px;
}

.menu>li.current-menu-item>a {
    color: #EA2037;
}

.vi .basicul li,
.actioncallul li {
    letter-spacing: 0.1em;
}

.vi .newshome__readmore a::after {
    top: 4px;
}

body.vi,
.vi .protitle,
.vi.single-careers .newsdate input,
.vi.single-careers .newsdate textarea,
.vi.single-careers ::-webkit-input-placeholder,
.vi #txtfile,
.vi.single-careers ::placeholder,
.vi .hint {
    font-family: "GalaxieCopernicusVN-Book";
}

.vi .fixed-nav a,
.vi .ul__1col li,
.vi .team-text-title,
.vi .layout__tab01.layout__tab01__sub>ul>li,
.vi .specialities__title,
.vi .newshome__title,
.vi .layout-column-text h3 {
    font-family: "GalaxieCopernicusVN-Medium";
}

.newshome__title {
    font-family: "GalaxieCopernicusVN-Medium";
}

.single-news h1 {
    font-family: "GalaxieCopernicusVN-Book";
}

.vi.post-type-archive-careers .ban__title_content.ban__title_content2 {
    left: calc(50vw - 450px);
    width: 900px;
}

.vi .content_lv1_box2 {
    width: 560px;
}

.vi .menuhome-wrap ul ul,
.vi .menuhome-wrap__mb ul ul {
    letter-spacing: 0.1em;
}

.vi.single-specialities header .width__content {
    width: 1040px;
}

.vi.single-specialities .content_lv1_box {
    width: 590px;
}

.vi .barprojects>ul>li,
.vi .homecontact h3,
.vi .homecontact h4,
.vi .actioncallul li,
.vi .career_date,
.vi .homecontact h3,
.vi .yearcat li,
.vi .myaccord__title,
.vi .paging__wrap ul li,
.vi .newsdate,
.vi .frowbnt,
.vi .joblink a,
.vi .content_lv1_box3 h5 {
    font-family: "SharpSansNo2VN-Book";
}

.vi.single-specialities .content_lv1_box3 {
    width: 848px;
}

.vi .barprojects>ul>li {
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 20px;
    font-size: 14px;
}

.vi .item___txt,
.vi .homecontact,
.vi .text_hint,
.vi .specialities__location,
.vi .linka a {
    font-family: "SharpSansNo2VN-Regular";
}

.vi .linka a {
    font-weight: 500;
}

.vi .iconlink {
    top: 9px;
}

.vi .team-title {
    line-height: 15px;
}

.vi .text_hint {
    line-height: 20px;
}

.vi .newshome__cate,
.vi .frowbutton button,
.vi .copyright,
.vi .homecontact h4,
.vi .content_lv1_box2 h4,
.vi .team-title,
.vi .newshome__month,
.vi .newshome__year,
.vi .newshome__readmore,
.vi .layout__tab01.layout__tab01__sub>ul>li,
.vi .content_lv1_box4 h5,
.vi .item__text h5 {
    font-family: "SharpSansNo2VN-Semibold";
}

.vi .specialities__location {
    line-height: 23px;
    margin-top: 0px;
}

.vi .specialities__location::before {
    top: 4px;
}

.vi.single-specialities .ban__title_content {
    left: calc(50vw - 305px);
    width: 610px;
}

.vi .item__text h3 {
    letter-spacing: 0.1em;
}

.vi .content_lv1_box {
    padding-top: 50px;
}

.vi.single .single-specialities .content_lv1_box {
    padding-top: 0px
}

.vi .title__lv1,
.vi .content_lv1_box3 h3,
.vi .content_lv1_box4 h3,
.vi .deve_logos h3 {
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.vi.page-id-99 .ban__title_content h1 {
    width: 100%;
}

.vi.page-id-99 .ban__title_content {
    left: calc(50vw - 324px);
    width: 648px;
}

.vi.page-id-99 .title__lv1__box5 {
    width: 520px;
}

.page-id-8.vi .title__lv1__box {
    width: 620px;
}

.page-id-8.vi .content_lv1_box {
    width: 500px;
}

.vi .layout__tab01>ul>li {
    letter-spacing: 0.06em;
}

.vi .item___txt {
    line-height: 98px;
}

.vi .pinscroll__circle li {
    font-family: "Galaxie Copernicus";
}

.vi .newshome__cate,
.vi .newshome__readmore {
    line-height: 14px;
}

.vi .menuhome-wrap ul ul,
.vi .menuhome-wrap__mb ul ul {
    line-height: 24px;
    ;
}

.vi .rpcontent {
    line-height: 26px;
    letter-spacing: 0px;
}

.vi .rptitle {
    letter-spacing: 0.1em;
    font-family: "GalaxieCopernicusVN-Medium";
}

.vi .in_content {
    letter-spacing: 0.2em;
    width: 1110px;
}

.vi .title__lv1__box4 {
    width: 540px;
}

.slphoto {
    opacity: 0;
}

.page-id-1178 header h1 {
    width: 100%;
    margin: 0px;
    padding: 0px;
    text-align: center;
    color: #292938;
    max-width: initial;
    text-transform: uppercase;
}

.fsearch {
    padding-top: calc(50vh - 124px)
}

.fsearch_c {
    margin: 35px auto 0px;
}

.input__search {
    float: left;
    width: calc(100% - 45px);
}

.fsearch input {
    height: 45px;
    line-height: 45px;
    box-sizing: border-box;
    width: 100%;
    border: 0px;
    background-color: #E0E6E6;
    padding: 0px 15px;
}

.submit {
    float: right;
    width: 45px;
    height: 45px;
    position: relative;
    background-color: var(--secondary-color);
    border: 0px;
    cursor: pointer;
}

.submit_icon {
    width: 17px;
    height: 17px;
    background-size: 17px 17px;
    background-image: url(../images/fsearch.svg);
    background-repeat: no-repeat;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.fsearch_cat li {
    list-style: none;
    float: left;
    margin-top: 15px;
    margin-right: 25px;
}

.fsearch_cat li a {
    color: #292938;
    text-transform: uppercase;
}

.result__row h3 {
    font-weight: 400;
    font-size: var(--s48);
    line-height: var(--s48lh);
    color: #292938;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    margin: 160px 0px 35px;
}

.page-id-1178 .newshome {
    margin: auto;
    width: 100%;
}

.single-careers .newsdetail .pinscroll__circle-wrap ul,
.single-careers .newsdetail .pinscroll__circle-wrap ol {
    margin-left: 20px;
    padding-left: 0px;
    margin-bottom: 20px;
}

.single-careers .newsdetail ul.uljobtype {
    margin-left: 0px;
}

.single-careers .newsdetail .pinscroll__circle-wrap ul ul {
    margin-left: 40px;
}


/*
.page-id-1178 .colitemone {
  width: 19vw;
}*/


/* ==========================================================================
  Media Queries
 ========================================================================== */

@media only screen and (max-width: 1440px) {
    .item__text {
        width: calc(50vw - 180px);
    }
    .layout01_enable li:nth-child(even) .item__text {
        left: 180px;
    }
    .loader__mask {
        background-size: 186px 50px;
    }
}

@media only screen and (max-width: 1420px) {
    .menuhome-wrap {
        width: 750px;
    }
    .menuhome-wrap::before {
        left: calc( 750px - 100vw);
        width: calc(100vw - 750px);
    }
}

@media only screen and (max-width: 1360px) {
    .vi .in_content {
        width: calc(100vw - 328px);
        font-size: 40px;
    }
    .ban__title_content h1 {
        margin-bottom: 45px;
    }
}

@media only screen and (max-width:1280px) {
    .item__text h3 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 1024px) {
    .protitle {
        letter-spacing: 0.1em;
    }
}

@media only screen and (min-width: 1024px) {
    .post-type-archive header .width__content {
        width: calc(100vw - 400px);
    }
    .vi header .ban__title_content h1 {
        margin-bottom: 45px;
    }
}

@media only screen and (min-width: 1000px) {
    .ss__ll__cl .logo__img,
    .ss__ll__cl .logo__text {
        background-image: url(../images/logo_bn.svg);
    }
}

@media only screen and (max-width: 1100px) {
    .barprojects>ul>li:first-child:before {
        display: none;
    }
    .barprojects>ul>li:last-child::after {
        display: none;
    }
    .single-specialities .barsocial,
    .post-type-archive-specialities .barsocial,
    .single-specialities .barsocial {
        top: calc(100vh - 200px);
    }
    .menuhome-wrap,
    .menuhome-wrap__mb {
        width: calc(100vw - 150px)
    }
    .menuhome-wrap::before {
        left: -150px;
        width: 150px;
    }
    .post-type-archive-news .popular__news .width__content {
        width: 800px;
    }
    .page-id-1178 .width__content {
        width: 782px;
    }
    .item__text {
        width: calc(50vw - 120px);
    }
    .layout01_enable li:nth-child(even) .item__text {
        left: 120px;
    }
    .item__text {
        padding: 0px 25px;
    }
    .item__text h3 {
        margin-bottom: 30px;
    }
    .linka {
        margin-top: 30px
    }
    .frowbnt {
        margin-top: 36px;
    }
}

@media only screen and (max-width: 1023px) {
    .vi .in_content {
        width: calc(100vw - 120px);
    }
    .vi.single-specialities header .width__content {
        width: calc(100% - 140px);
    }
    .vi.post-type-archive-careers .ban__title_content.ban__title_content2 {
        left: 50px;
        width: calc(100% - 100px);
    }
    .ban__title_content.ban__title_content2 p {
        padding-left: 00px;
        padding-right: 0px;
    }
    .vi.single-specialities .content_lv1_box3 {
        width: calc(100vw - 120px);
    }
    .first-child {
        display: none;
    }
    .copyright {
        padding-left: 0px
    }
    .layout01_enable li:nth-child(odd) .item__text,
    .layout01_enable li:nth-child(even) .item__text {
        padding-right: 120px;
        padding-left: 120px;
    }
    .page-id-1178 .width__content {
        width: calc(100vw - 160px);
    }
    .page-id-1178 .fsearch_c.width__content {
        width: calc(100vw - 280px);
    }
    .layout01,
    .layout02 {
        box-sizing: border-box;
    }
    .barprojects>ul>li:nth-child(n+3) {
        display: none;
    }
    .barprojects>ul>li {
        width: 33.3333%;
        padding-left: 0px;
        padding-right: 0px
    }
    .barprojects>ul>li:nth-child(1) {
        left: 16.6666%;
    }
    .barprojects>ul>li:nth-child(2) {
        left: 50%;
    }
    .barprojects {
        width: 100%;
        left: 0px;
    }
    .layout__tab01 {
        width: 100%
    }
    .title__lv1__box,
    .width__content,
    .forminput {
        width: calc(100% - 60px);
    }
    .layout__tab01>ul>li {
        float: inherit;
        width: 100%;
    }
    .layout-column-img {
        width: 100%;
    }
    .layout-column-text {
        position: relative;
        left: 0px;
        bottom: initial;
        width: 100%;
        padding-left: 45px;
        padding-right: 45px;
        padding-top: 30px;
        box-sizing: border-box;
        top: 0px;
        -o-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    .linka {
        margin-top: 30px;
    }
    .pinscroll__circle-wrap {
        padding: 0 30px;
    }
    .newshome li:nth-child(odd),
    .newshome li:nth-child(even) {
        float: initial;
        width: 100%;
    }
    .newshome {
        width: calc(100% - 60px);
    }
    .newshome li:nth-child(n+2) {
        margin-top: 15px;
    }
    .homecontact__wrap {
        padding-left: 0px;
        width: 100%
    }
    .homecontact__map img {
        position: absolute;
        top: -60px;
        left: 0px;
        width: 70%;
        height: auto;
    }
    .homecontact-content {
        width: 100%;
        padding-left: 50vw;
        box-sizing: border-box;
        padding-right: 30px;
    }
    .homecontact li {
        float: initial;
        width: 100%;
    }
    .homecontact li:nth-child(n+2) {
        margin-top: 50px
    }
    .text_hint {
        left: 30px;
    }
    .formleft {
        box-sizing: border-box;
        padding-left: 0px;
    }
    .formright {
        box-sizing: border-box;
        padding-right: 0px;
    }
    .footer__wrap {
        width: 100%;
    }
    .forminput {
        margin-left: 30px;
    }
    .footer__wrap {
        padding-left: 30px;
        box-sizing: border-box;
    }
    .layout01 {
        padding: 200px 0px;
    }
    .layout02 {
        padding-bottom: 200px
    }
    .layout-column-text h3 br {
        display: none;
    }
    .menuhome-wrap,
    .menuhome-wrap__mb {
        font-size: 30px;
    }
    .team-img {
        float: initial;
        width: 100%;
    }
    .team-text {
        float: initial;
        width: 100%;
        padding: 0px 30px;
    }
    .layout__tab01.layout__tab__col3>ul>li {
        width: 33.3333%;
        float: left;
    }
    .post-type-archive-specialities .layout__tab01>ul>li {
        float: left;
        width: 33.3333%;
    }
    .post-type-archive-specialities .layout__tab01.layout__tab01__sub {
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }
    .marLeft1column {
        margin-left: 0px;
    }
    .layout__tab01.layout__tab01_nofirst>ul>li:first-child {
        display: none !important;
    }
    .single-specialities .bar__bottom .basicul.basicul3 li {
        width: 100%;
        float: inherit;
        color: var(--secondary-color);
        background-color: #E0E6E6;
        border-top: 1px solid rgba(41, 41, 56, .3);
    }
    .single-specialities .bar__bottom .basicul.basicul3 li:first-child {
        border-top: 0px;
    }
    .single-specialities .bar__bottom .width__content {
        width: calc(100% - 140px)
    }
    .single-specialities .bar__bottom .basicul li::after {
        display: none;
    }
    .layout04 {
        padding: 120px 0px 0px;
        width: 100vw;
        overflow: hidden;
    }
    .layout01_enable li:nth-child(odd) {
        padding-right: 0px;
    }
    .item__text {
        position: relative;
        top: 9ox;
        -o-transform: none;
        -webkit-transform: none;
        transform: none;
        width: 100%;
        padding: 40px 30px 80px;
        box-sizing: border-box;
    }
    .layout01_enable li:last-child .item__text {
        padding-bottom: 0px;
    }
    .layout01_enable li:nth-child(odd) .item__text {
        left: 0px
    }
    .layout01_enable li:nth-child(even) .item__text {
        left: 0px;
    }
    .layout01_enable li:nth-child(even) {
        padding-left: 0px;
    }
    .slphoto .slick-dots {
        right: 30px;
    }
    .actioncallul li::after,
    .paging__wrap ul li::after {
        display: none;
    }
    .actioncallul.actioncallul2 li,
    .actioncallul.actioncallul3 li {
        float: inherit;
        width: 100%;
        border-top: 1px solid rgba(224, 230, 230, .3);
        padding: 55px 0px 30px;
    }
    .actioncallul li.call_hotline::before,
    .actioncallul li.google_map::before,
    .actioncallul li.file_brochure::before {
        top: 24px;
    }
    .post-type-archive-news .popular__news .width__content {
        width: calc(100vw - 140px);
    }
    .news__item {
        height: calc(100vh - 180px)
    }
    .news__item__text {
        width: 100%;
        height: 200px;
        float: inherit
    }
    .news__item__img {
        float: inherit;
        width: 100%;
        height: calc(100% - 200px);
    }
    .newsdate {
        width: 100%;
        float: inherit;
    }
    .newsdetail {
        float: inherit;
        width: 100%;
        margin-top: 20px;
    }
    .post-type-archive-careers .newshome li:nth-child(odd),
    .post-type-archive-careers .newshome li:nth-child(even),
    .single-careers .newshome li:nth-child(odd),
    .single-careers .newshome li:nth-child(even) {
        width: calc(50% - 2px);
    }
    .post-type-archive-careers .newshome li:nth-child(n+3),
    .post-type-archive-careers .newshome li:nth-child(n+3),
    .single-careers .newshome li:nth-child(n+3),
    .single-careers .newshome li:nth-child(n+3) {
        margin-top: 45px;
    }
    .whyus li {
        margin: 0px 50px;
    }
    .whyus li:nth-child(n+3) {
        margin-top: 45px;
    }
    header h1 {
        padding-left: 30px;
        padding-right: 30px
    }
    .single-careers .width__content {
        width: calc(100% - 280px);
    }
    .single-careers header .newsdetail {
        width: 100%;
        float: inherit;
    }
    .single-careers header .newsdate {
        width: 100%;
        float: inherit;
    }
    .single-careers .pinscroll__circle-wrap {
        height: auto;
        max-height: inherit;
        padding-right: 0px;
        margin-right: 0px;
    }
    .single-careers header {
        height: auto !important;
        overflow: hidden;
        display: block;
        margin-top: 0px;
        padding-top: 120px;
        background-color: #f7f7f2;
        max-height: inherit;
    }
    .single-careers header .newsdate textarea {
        height: 200px;
    }
    .single-careers header .newsdate {
        height: auto;
        max-height: inherit;
    }
    .menuhome-wrap ul ul,
    .menuhome-wrap__mb ul ul {
        font-size: 12px;
    }
    .single-specialities .ulpart li img {
        max-width: 100%;
    }
    .single-specialities .ulpart.ulpartlogo {
        margin-top: 40px;
    }
    .single-specialities .ulpart li {
        margin: 40px 0px 0px;
    }
    .slider-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.bar__header__mb {
    box-sizing: border-box;
    background-color: #292938;
    width: 100vw;
    height: 84px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
}


/*** accord ***/

.myaccordproject {
    display: none;
}

header .myaccord ul {
    margin: 0px;
    padding: 0px;
}

header .myaccord ul li {
    list-style: none;
    margin: 0px;
    background-color: transparent;
}

header .myaccord ul li li {
    list-style: disc;
    margin-left: 20px;
}

header .myaccord ul li li:last-child {
    margin-bottom: 20px;
}

header .myaccord__title {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    display: block;
    align-items: center;
    letter-spacing: 0.3em;
    color: #F7F7F2;
    text-align: center;
    padding: 15px 0px;
}


/*
.myaccord__title::before {
  content:""; position: absolute; right: 0px; top: calc(50% - 7px);
  width: 25px; height:14px; background-size:25px 14px; background-image:url(../images/accord.svg); overflow: hidden;
  transform: rotate(180deg);
}
.myaccord__title::after {
  content:""; position: absolute; right: 0px; top: calc(50% - 7px); display: none;
  width: 25px; height:14px; background-size:25px 14px; background-image:url(../images/accord.svg); overflow: hidden;
}
.myaccord__title.active::after {display: block;}
.myaccord__title.active::before {display: none;}
*/

header .myaccord__content {
    list-style-type: none;
    font-family: "Sharp Sans No2 Book";
    font-style: normal;
    font-weight: 600;
    font-size: var(--s12);
    line-height: var(--s12lh);
    text-align: center;
    color: #F7F7F2;
    padding: 0px 15px;
    cursor: pointer;
    box-sizing: border-box;
}

header .myaccord__content.active {
    height: auto;
}

header .minHeight {
    height: 15px;
}

header .accord__line {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    height: 1px;
    background-color: #E0E6E6;
    -o-transform: scaleY(.5);
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
    z-index: 90;
}

header .myaccord__title span {
    position: relative;
    z-index: 100;
}

.scrolldown {
    display: none;
}

.burger__mb {
    height: 12px;
    width: 30px;
    background-repeat: no-repeat;
    position: fixed;
    top: 31px;
    right: 30px;
    display: flex;
    align-items: center;
    z-index: 3;
    cursor: pointer;
    display: none;
    opacity: 0;
}

.burger__mb__c {
    position: relative;
    width: 100%;
    height: 100%;
}

.burger01 {
    width: 100%;
    height: 2px;
    background-color: #E0E6E6;
}

.burger02 {
    width: 100%;
    height: 2px;
    background-color: #E0E6E6;
    margin: 6px 0px;
}

.burger03 {
    width: 100%;
    height: 2px;
    background-color: #E0E6E6;
}

.line01,
.line02,
.mapmobile {
    display: none;
}

.language__c {
    width: 24px;
    height: 18px;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
}

.language__icon {
    width: 100%;
    height: 100%;
    background-size: 24px 18px;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: .5s;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.language__vi .language__icon {
    background-image: url(../images/flag_vietnam.svg);
}

.language__en .language__icon {
    background-image: url(../images/flag_uk.svg);
}

.language__c:hover .language__icon {
    transform: translate(-50%, -50%) scale(1.2);
}

.ulpart.ulpartlogo.fordesktop li {
    margin-left: 25px;
    margin-right: 25px;
}

.page-id-99 .content_lv1_box2 h4 {
    margin-bottom: 30px;
    ;
}

.menu-item-376 {
    display: none;
}

@media only screen and (min-width: 1024px) {
    .single-careers header .width__content {
        width: calc(100vw - 370px)
    }
    .en .ul__1col li:nth-child(3) .ul__1col__li {
        width: 530px;
    }
    .page-id-99 .content_lv1_box2 {
        width: 700px;
    }
    .single-specialities .ulpart li {
        margin-left: 20px;
        margin-right: 20px
    }
}

@media only screen and (min-width: 1440px) {
    .single-careers header .width__content {
        width: calc(100vw - 500px)
    }
}

.team__desc__short,
.team__linka_close,
.team__linka_open {
    display: none;
}

.formobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    /*.page-id-8 .tab__content__wrap.updateheight {
		overflow:initial;
	}*/
    header {
        max-height: inherit;
    }
    .fordesktop {
        display: none;
    }
    .formobile {
        display: block;
    }
    .vi .content_lv1_box {
        padding-top: 30px;
    }
    .vi.post-type-archive-careers .ban__title_content.ban__title_content2,
    .post-type-archive-careers .ban__title_content.ban__title_content2 {
        left: 0px;
        width: 100vw;
    }
    .vi.post-type-archive-careers .ban__title_content.ban__title_content2,
    .post-type-archive-careers .ban__title_content.ban__title_content2 {
        left: 0px;
        width: 100vw;
        position: relative;
        top: 0px;
        transform: none;
        margin-top: 90px;
    }
    .vi.post-type-archive-careers header,
    .post-type-archive-careers header {
        padding-top: 84px;
        box-sizing: border-box;
        background-color: #292938;
        height: auto !important;
        max-height: inherit;
    }
    .vi.single-specialities .content_lv1_box3 {
        width: 100vw;
    }
    .vi.single-specialities .content_lv1_box {
        width: 100vw;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }
    .vi.single-specialities .ban__title_content {
        left: 0px;
        width: 100vw;
    }
    .vi.page-id-99 .title__lv1__box5 {
        width: 100vw;
        box-sizing: border-box;
    }
    .vi .content_lv1_box2 {
        width: 100vw;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }
    .vi .in_content {
        width: 100vw;
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
    }
    .vi.page-id-99 .ban__title_content {
        left: 30px;
        width: calc(100vw - 60px);
        padding-left: 0px;
        padding-right: 0px;
    }
    .vi .item___txt {
        line-height: 55px;
    }
    .page-id-8.vi .title__lv1__box,
    .page-id-8.vi .content_lv1_box,
    .vi .title__lv1__box4 {
        width: calc(100vw - 60px);
    }
    .team__desc__short,
    .toggleopen .team__desc,
    .toggleopen .team__linka_close,
    .team__linka_open {
        display: block;
    }
    .team__desc,
    .toggleopen .team__desc__short,
    .toggleopen .team__linka_open {
        display: none;
    }
    .team__linka .linka {
        margin-top: 20px;
    }
    .team-text-title {
        padding-bottom: 32px;
    }
    .slone .slick-next {
        right: 40px;
    }
    .slone .slick-prev {
        left: initial;
        right: 100px;
    }
    .layout01_enable li:nth-child(odd) .item__text,
    .layout01_enable li:nth-child(even) .item__text {
        padding-right: 30px;
        padding-left: 30px;
    }
    .head_logo {
        margin-bottom: 50px;
    }
    .fsearch {
        padding-top: 120px;
    }
    .result__row h3 {
        margin-top: 60px
    }
    .fsearch_cat li {
        margin-right: 15px;
        font-size: 10px;
    }
    .fsearch_cat li:last-child {
        margin-right: 0px;
    }
    .page-id-1178 .width__content {
        width: calc(100vw - 60px);
    }
    .page-id-1178 .fsearch_c.width__content {
        width: calc(100vw - 60px);
    }
    .page-id-1178 header {
        height: auto !important;
        background-color: #f7f7f2;
    }
    .result__row h3 {
        font-weight: 500;
        font-size: 28px;
        line-height: 46px;
        text-align: center;
        letter-spacing: 0.26em;
    }
    .mapdesktop {
        display: none;
    }
    .mapmobile {
        display: block;
    }
    .loader__mask {
        background-size: 150px 40px;
    }
    .myaccordproject,
    .burger__mb {
        display: block;
    }
    header h1,
    .ban__title_content h1 {
        font-weight: 500;
        font-size: 28px;
        line-height: 46px;
        text-align: center;
        letter-spacing: 0.26em;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }
    .item__text h3 {
        font-size: 28px;
        line-height: 46px;
    }
    .ban__title_content.ban__title_content2 p {
        padding-left: 60px;
        padding-right: 60px;
    }
    .title__lv1,
    .content_lv1_box3 h3,
    .content_lv1_box4 h3,
    .deve_logos h3 {
        font-weight: 500;
        font-size: 28px;
        line-height: 46px;
        text-align: center;
        letter-spacing: 0.26em;
    }
    .content_lv1_box,
    .title__lv1__box2 {
        width: calc(100vw - 60px)
    }
    .item___txt {
        font-weight: 600;
        font-size: 36px;
        line-height: 46px;
        text-align: center;
        letter-spacing: 0.02em;
    }
    .pinscroll__circle {
        font-weight: 500;
        font-size: 32px;
        line-height: 32px;
        text-align: center;
        letter-spacing: 0.04em;
    }
    .pinscroll__circle-wrap,
    .layoutPB_ly2 .full-bgimg {
        height: 400px;
        max-height: 400px;
    }
    .content_lv1_box {
        padding-top: 30px;
    }
    .layout__tab01 {
        margin-top: 30px
    }
    .layout02 {
        padding-bottom: 100px;
        width: 100vw;
        overflow: hidden;
    }
    .layout01 {
        padding: 100px 0px;
    }
    .layout02.layoutPB_ly2 {
        padding-bottom: 100px;
    }
    .ulpart {
        margin-top: 80px
    }
    .newshome {
        margin-top: 30px;
    }
    .homecontact__map img {
        position: relative;
        top: 0px;
        left: 0px;
        width: 100%;
        height: auto;
    }
    .homecontact-content {
        padding-left: 30px;
    }
    .line-contact {
        margin: auto auto 30px;
    }
    .homecontact-content {
        margin-top: -125px;
    }
    .menuhome-wrap,
    .menuhome-wrap__mb {
        width: 100%;
        font-weight: 500;
        font-size: 24px;
        line-height: 46px;
        letter-spacing: 0.26em;
        padding-left: 30px;
    }
    .menuhome-wrap::before,
    .menuhome-wrap__mb::before {
        display: none;
    }
    .ban__title_content {
        position: absolute;
        left: 0px;
        width: 100%;
        padding-left: 60px;
        padding-right: 60px;
        box-sizing: border-box;
    }
    .ul__3col li {
        float: inherit;
        width: 100%;
        margin: 0px;
        border-top: 0px;
        padding-top: 20px;
    }
    .ul__3col li:nth-child(n+2) {
        margin-top: 45px;
    }
    .rptitle {
        margin-bottom: 20px;
    }
    .in_content {
        width: 100%;
        font-weight: 500;
        font-size: 18px;
        line-height: 34px;
        align-items: center;
        text-align: center;
        letter-spacing: 0.26em;
        margin: 100px auto;
        box-sizing: border-box;
        padding-left: 30px;
        padding-right: 30px;
    }
    .layout03 {
        padding-bottom: 100px;
        max-width: 100vw;
        overflow: hidden;
    }
    .content_lv1_box2 {
        width: calc(100% - 60px)
    }
    .ul__col li,
    .ul__1col li,
    .ul__2col li,
    .ul__3col li,
    .ul__4col li {
        width: calc(100vw - 60px)
    }
    .journeytitle {
        line-height: 28px;
    }
    .ul__2col li:last-child {
        width: calc(100vw - 67px);
        padding-right: 0px;
    }
    header {
        padding-top: 84px;
        box-sizing: border-box;
        background-color: #292938;
    }
    .full-bgimg {
        height: calc(100% - 84px);
    }
    .logo {
        top: 27px
    }
    .barsocial {
        display: none;
    }
    .menuhome-wrap__mb .barsocial {
        display: block;
    }
    .menuhome-wrap__mb .barsocial ul li {
        float: left;
        margin-right: 15px;
    }
    .main-nav,
    .burger,
    .re__menu {
        display: none;
    }
    .menuhome-wrap__mb .burger {
        display: block;
        top: initial;
        bottom: 26px;
        right: 30px;
    }
    .barprojects {
        bottom: 60px;
    }
    .barprojects>ul>li:nth-child(1) {
        left: 0px;
    }
    .barprojects>ul>li {
        width: 100%;
        float: inherit;
        position: relative;
    }
    .barprojects>ul>li:nth-child(2) {
        left: 0px
    }
    .barprojects>ul>li:nth-child(1),
    .barprojects>ul>li:nth-child(2) {
        position: relative;
        padding: 0px 30px;
        box-sizing: border-box;
        line-height: 60px;
    }
    .line01 {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 1px;
        background-color: #E0E6E6;
        -o-transform: scaleY(.5);
        -webkit-transform: scaleY(.5);
        transform: scaleY(.5);
        display: block;
    }
    .line02 {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 1px;
        background-color: #E0E6E6;
        -o-transform: scaleY(.5);
        -webkit-transform: scaleY(.5);
        transform: scaleY(.5);
    }
    .barprojects>ul>li:nth-child(2) .line02 {
        display: block;
    }
    .pro__text--copy {
        display: none;
    }
    .protitle {
        padding: 0px;
        line-height: 60px;
    }
    .barprojects>ul>li::before {
        display: none;
    }
    .accordimg img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    .scrolldown {
        position: absolute;
        left: calc(50% - 100px);
        bottom: 16px;
        padding-bottom: 16px;
        width: 200px;
        text-align: center;
        font-weight: 500;
        font-size: 10px;
        line-height: 12px;
        display: block;
        color: #F7F7F2
    }
    .scrolldown .scrolldown__icon {
        width: 7px;
        height: 10px;
        background-size: 7px 10px;
        background-image: url(../images/scrolldown.svg);
        overflow: hidden;
        position: absolute;
        bottom: 0px;
        left: 96px;
    }
    .fixed-nav {
        display: none !important;
    }
    .menuhome-wrap ul ul,
    .menuhome-wrap__mb ul ul {
        font-size: 10px;
    }
    .language__mb {
        margin-top: 70px;
        margin-bottom: 200px;
    }
    .language__mb div {
        float: left;
        width: 24px;
        height: 18px;
        line-height: 18px;
        box-sizing: border-box;
        margin-right: 15px;
        color: #F7F7F2;
        border: 0px;
        font-weight: 500;
        font-size: 8px;
        text-align: center;
        letter-spacing: 0.08em;
    }
    .language__mb div.active {
        color: #EA2037;
        border-color: #EA2037;
    }
    .menuhome-wrap__mb .barsocial {
        bottom: 26px;
        left: 26px;
        top: initial
    }
    .formleft {
        float: initial;
        width: 100%;
        padding-left: 0px;
    }
    .formright {
        float: initial;
        width: 100%;
        margin-top: 0px;
    }
    .ul__1col__li {
        width: 100%;
    }
    .frow {
        margin-top: 10px;
    }
    .formright {
        margin-top: 10px;
    }
    .frowarea {
        margin-top: 0px;
    }
    .homecontact textarea {
        line-height: 47px;
        height: 188px;
    }
    .frowbutton {
        margin: 40px 0px 0px;
    }
    .content_lv1_box3 {
        padding-top: 0px;
    }
    .slphoto .slick-dots li button,
    .slphoto .slick-dots li button::before,
    .slphoto .slick-dots li {
        width: 20px;
    }
    .slphoto.slick-dotted.slick-slider {
        margin-bottom: 30px;
    }
    .slphoto .slick-dots {
        bottom: -30px;
    }
    .content_lv1_box3 h3 {
        margin-bottom: 70px;
    }
    .content_lv1_box4 {
        padding-top: 0px;
    }
    .rp03_title {
        bottom: 36px;
        width: 100%;
        text-align: center;
    }
    .myslick-prev {
        left: calc(50% - 110px);
        right: inherit;
    }
    .myslick-next {
        right: calc(50% - 110px);
    }
    .layout04.paddT100 {
        padding-top: 80px;
    }
    .myslick-prev::after {
        right: -27px;
    }
    .layout02 {
        padding-bottom: 80px;
    }
    .layout01 {
        padding: 80px 0px;
    }
    .page-id-8 .popular__news {
        margin-bottom: 0px;
    }
    .layout02.layoutPB_ly2 {
        padding-bottom: 80px;
    }
    .in_content {
        margin: 80px 0px;
    }
    .layout03 {
        padding-bottom: 80px;
    }
    .yearcat-wrap {
        margin: 40px 0px 0px;
    }
    .ul__1col {
        margin: 40px 0px 0px;
    }
    .content_lv1_box2 {
        padding-top: 40px
    }
    .newshome li:nth-child(3) .newshome__short,
    .newshome li:nth-child(4) .newshome__short,
    .newshome li:nth-child(5) .newshome__short,
    .newshome li:nth-child(6) .newshome__short {
        height: 170px;
        ;
    }
    .single-news header h1 {
        padding-left: 30px;
        padding-right: 30px;
    }
    .ban__title_content.ban__title_content2 {
        padding-bottom: 40px;
    }
    .menuhome-wrap ul ul,
    .menuhome-wrap__mb ul ul {
        font-size: 8px;
    }
    .page-id-8 header h1 {
        margin-bottom: 180px;
    }
    .team-title {
        padding-top: 50px;
    }
    .footer__wrap {
        padding-left: 0px;
        box-sizing: border-box;
    }
    .copyright {
        padding-left: 0px;
        padding-right: 0px;
        width: 100%;
        float: inherit;
        box-sizing: border-box;
    }
    .copyright li {
        list-style-type: none;
        float: inherit;
        margin-right: 0px;
        width: 100%;
        text-align: center;
    }
    .single-specialities .ulpart.ulpartlogo {
        margin-top: 0px;
    }
    .slider-wrapper .fullimg {
        width: 100%;
    }
    .slider-wrapper .fullimg {
        aspect-ratio: 5 / 6;
    }
}

.sec__dropdown,
.swipe {
    display: none;
}

.swipe {
    text-align: center;
    margin: 30px 0px 0px
}

.swipe.active {
    display: block;
}

.swipe__icon {
    width: 61px;
    height: 47px;
    background-size: 61px 47px;
    background-size: 61px 47px;
    background-image: url("../images/swipe.svg");
    display: block;
    margin: auto;
}

@media only screen and (max-width: 560px) {
    .clipped-text {
        margin-right: 80px;
    }
    .ban__title_content.ban__title_content2 {
        left: 0px;
        width: 100vw;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 80px;
        top: 0px;
        -o-transform: none;
        -webkit-transform: none;
        transform: none;
        margin-top: 24px;
    }
    .ban__title_content.ban__title_content2 p {
        padding-left: 0px;
        padding-right: 0px;
    }
    header h1,
    .ban__title_content h1 {
        padding-left: 0px;
        padding-right: 0px;
    }
    .bar__bottom {
        display: none;
    }
    .sec__dropdown {
        display: block;
        margin-top: -80px;
        position: relative;
        z-index: 300;
    }
    .page-id-8 .title__lv1__box {
        width: calc(100% - 60px);
    }
    .ban__title_content h1 {
        margin: 0px auto 30px;
    }
    .select__label {
        background-color: var(--secondary-color);
        color: #F7F7F2;
        list-style-type: none;
        overflow: hidden;
        font-style: normal;
        font-weight: 500;
        font-size: var(--s16);
        line-height: 80px;
        text-align: center;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        box-sizing: border-box;
        cursor: pointer;
        position: relative;
        -o-transition: .5s;
        -webkit-transition: .5s;
        transition: .5s;
        position: relative;
    }
    .uldropdown li {
        list-style: none;
        background-color: var(--secondary-color);
        color: #F7F7F2;
        list-style-type: none;
        overflow: hidden;
        font-style: normal;
        font-weight: 500;
        font-size: var(--s16);
        line-height: 80px;
        text-align: center;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        box-sizing: border-box;
        cursor: pointer;
        position: relative;
        -o-transition: .5s;
        -webkit-transition: .5s;
        transition: .5s;
        position: relative;
        display: none;
    }
    .uldropdown li.active,
    .uldropdown li.active02,
    .post-type-archive-specialities .layout__tab01>ul>li.active02 {
        display: block;
    }
    .dropdown__icon {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        cursor: pointer;
    }
    .dropdown__icon::before {
        content: "";
        width: 12px;
        height: 8px;
        background-size: 12px 8px;
        background-size: 12px 8px;
        background-image: url("../images/mobile_arrow.svg");
        position: absolute;
        left: 26px;
        top: 36px;
    }
    .dropdown__icon.active::before {
        background-image: url("../images/mobile_arrow_active.svg");
    }
    .single-specialities .ban__title_content {
        left: 0;
        width: 100%;
    }
    .ban__title_content {
        padding-left: 30px;
        padding-right: 30px;
    }
    .layout04 .title__lv1 {
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }
    .content_lv1_box4 {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }
    .post-type-archive-specialities .layout__tab01>ul>li {
        list-style: none;
        list-style-type: none;
        overflow: hidden;
        font-style: normal;
        text-align: center;
        text-transform: uppercase;
        box-sizing: border-box;
        cursor: pointer;
        position: relative;
        -o-transition: .5s;
        -webkit-transition: .5s;
        transition: .5s;
        position: relative;
        display: none;
        float: inherit;
        width: 100%;
        background-color: #C7C7C7;
        color: #292938;
    }
    .post-type-archive-specialities .layout__tab01>ul>li.active,
    .post-type-archive-specialities .layout__tab01>ul>li.active02 {
        display: block;
    }
    .swipe {
        display: block;
        text-align: center;
        margin: 30px 0px 0px
    }
    .swipe__icon {
        width: 61px;
        height: 47px;
        background-size: 61px 47px;
        background-size: 61px 47px;
        background-image: url("../images/swipe.svg");
        display: block;
        margin: auto;
    }
    .content_lv1_box3 {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }
    .dropdown__icon02 {
        position: absolute;
        top: 0px;
        left: 30px;
        width: 80px;
        height: 54px;
        cursor: pointer;
    }
    .dropdown__icon02::before {
        content: "";
        width: 12px;
        height: 8px;
        background-size: 12px 8px;
        background-size: 12px 8px;
        background-image: url("../images/mobile_arrow_b.svg");
        position: absolute;
        left: 26px;
        top: 23px;
    }
    .dropdown__icon02.active::before {
        background-image: url("../images/mobile_arrow_b_active.svg");
    }
    .updating2,
    .updating {
        width: 300px !important;
    }
    .layout04.padT0MB {
        padding-top: 0px;
    }
    .layout04 {
        padding-top: 80px;
    }
    .featitem {
        padding: 0px 0px 80px;
    }
    .rp03_title {
        bottom: 36px
    }
    .news__item {
        height: 60vh;
    }
    .popular__news {
        margin-top: 0px;
        margin-bottom: 10px;
    }
    .post-type-archive-news .popular__news .width__content {
        width: calc(100vw - 60px);
    }
    .paging__wrap ul li {
        width: 40px;
    }
    .title__lv1__box4 {
        width: 100%
    }
    .post-type-archive-careers .width__content {
        width: 100%;
    }
    .post-type-archive-careers .newshome li:nth-child(odd),
    .post-type-archive-careers .newshome li:nth-child(even),
    .single-careers .newshome li:nth-child(odd),
    .single-careers .newshome li:nth-child(even) {
        width: 100%;
        float: inherit;
    }
    .post-type-archive-careers .newshome li:nth-child(n+2),
    .whyus li:nth-child(n+2) {
        margin-top: 45px;
    }
    .whyus {
        margin-top: 60px;
    }
    .whyus li {
        width: 100%;
        box-sizing: border-box;
        display: block;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .newshome__title {
        padding-left: 30px;
        padding-right: 30px;
        line-height: 24px;
    }
    .single-careers .width__content {
        width: calc(100% - 60px);
    }
    .single-careers header {
        padding-top: 84px;
    }
    .single-careers header .width__content {
        width: 100%;
        background-color: #f7f7f2;
        padding-top: 30px;
    }
    .single-careers header .newsdetail {
        padding-left: 30px;
        padding-right: 30px;
    }
    .career__title {
        line-height: 24px;
    }
    .team-text {
        padding-left: 0px;
        padding-right: 0px;
    }
    .post-type-archive-specialities .layout04 .title__lv1 {
        padding-left: 0px;
        padding-right: 0px;
    }
    .actioncallul {
        margin: 30px 0px 0px;
    }
    .ulpart.ulpartlogo {
        margin-top: 40px;
    }
    .newshome li .fullimg {
        width: 100%;
    }
    .newshome__short {
        height: 200px;
        position: relative;
        top: 0%;
        left: 0px;
        width: 100%;
        -o-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    .single-specialities header,
    .post-type-archive-specialities header,
    .page-id-99 header {
        height: auto;
        max-height: inherit
    }
    .post-type-archive-specialities .ban__title_content.ban__title_content2,
    .page-id-99 .ban__title_content {
        position: relative;
        top: 0px;
        left: 0px;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
        margin-top: 90px;
        margin-bottom: 60px;
        padding-bottom: 0px;
    }
    .page-id-99 .ban__title_content {
        margin-bottom: 0px;
    }
    .post-type-archive-specialities .sec__dropdown {
        margin-top: 0px;
    }
    .single-specialities .bar__bottom {
        display: block;
        position: relative;
        top: 0px;
        left: 0px;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
    .single-specialities header .bar__bottom .width__content {
        width: 100vw;
        position: relative;
        top: 0px;
        left: 0px;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
    .single-specialities .ban__title_content {
        width: 100vw;
        position: relative;
        top: 0px;
        left: 0px;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
        margin-top: 90px;
        margin-bottom: 60px
    }
    .single-specialities article {
        margin-top: 60px;
    }
    .single-specialities .ulpart li {
        margin-top: 40px;
    }
    .single-specialities .ulpart li img {
        max-width: 100%;
    }
    .single-specialities .ulpart .marquee li {
        margin-top: 0px;
        margin-right: 50px;
    }
    .single-specialities .ulpart .marquee li img {
        max-width: inherit;
    }
    .single-specialities .ulpart.ulpartlogo {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 375px) {
    .team-text-title {
        line-height: 27px;
    }
    .title__lv1,
    .content_lv1_box3 h3,
    .content_lv1_box4 h3,
    .deve_logos h3 {
        font-size: 25px;
        line-height: 46px;
        letter-spacing: 0.2em;
    }
    .vi .title__lv1,
    .content_lv1_box3 h3,
    .vi .content_lv1_box4 h3,
    .vi .deve_logos h3 {
        line-height: 39px;
    }
    .newshome li .fullimg {
        width: 100%;
    }
    .newshome__short {
        height: 200px;
        position: relative;
        top: 0%;
        left: 0px;
        width: 100%;
        -o-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    .content_lv1_box3 {
        padding-top: 0px;
    }
    .ul__1col__li,
    .title__lv1__box5 {
        width: 100%;
    }
    .content_lv1_box2 {
        padding-top: 40px;
    }
    .ul__1col,
    .yearcat-wrap {
        margin-top: 40px
    }
    .single-specialities .ulpart li {
        margin: 40px 0px 0px;
    }
}

@media only screen and (max-width: 320px) {
    .menuhome-wrap,
    .menuhome-wrap__mb {
        font-size: 19px;
        line-height: 36px;
    }
    .pinscroll__circle-wrap {
        padding: 0 15px;
    }
    .pinscroll__circle {
        font-size: 30px;
    }
    header h1,
    .ban__title_content h1 {
        font-size: 20px;
        line-height: 30px;
    }
    .ban__title_content h1 {
        margin: 0px auto 15px;
    }
    .ban__title_content.ban__title_content2 {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 0px;
    }
}

.single-news .full-bgimg {
    background-image: url(../images/bgnews.jpg)
}

.single-news .full-bgimg::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, .5);
}


/* <!-- Tran Thanh Phong  --> */

.btn-view-bdf {
    display: block;
    margin: 1rem 0;
}

@media only screen and (max-width: 1023px) {
    .btn-view-bdf {
        margin-left: 30px;
    }
}

.btn-view-bdf a {
    font-size: 13px;
    font-weight: bold;
    background: red;
    padding: 0.5rem 1rem;
    text-align: center;
    margin: 0 auto;
    color: #fff;
    text-decoration: none;
    border-radius: 0.1rem;
}