@charset "UTF-8";
.active a {
  color: black;
}

.active_mb a {
  color: cadetblue !important;
}

body {
  overflow-x: hidden;
}

header {
  height: 80px;
  background: #FFFFFF;
  position: relative;
  z-index: 199;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
header .custom-mobile {
  display: block;
}
header .custom-mobile2 {
  display: none;
}
header .logo {
  width: 100%;
  height: 50px;
  cursor: pointer;
}
header ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 0;
}
header ul > li {
  cursor: pointer;
  padding: 0 40px;
}
header ul > li > a {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  /* identical to box height */
  color: #1A1A1A;
}
header ul > li > a:hover {
  color: #000000;
  text-decoration: none;
}
header ul > li.country {
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
  border-radius: 20px;
  display: flex;
  padding: 0 15px;
  margin-left: 15px;
}
header ul > li.country a {
  color: #C4C4C4;
  padding: 4px 15px;
}
header ul > li.country a.active {
  color: #1A1A1A;
}
header ul > li.country a:hover {
  color: #1A1A1A;
}
header ul > li.country a:first-child {
  border-right: 1px solid #E5E5E5;
  padding-left: 0;
}
header ul > li.country a:last-child {
  padding-right: 0;
}
header .menu_mb {
  cursor: pointer;
  display: none;
  flex-direction: column;
}
header .menu_mb span {
  margin-top: 5px;
  width: 30px;
  height: 3px;
  background: #000;
}
header .exit_menu {
  position: absolute;
  right: 18%;
  top: 30%;
  display: none;
  z-index: 99;
}
header .exit_menu span {
  font-size: 25px;
  color: #000;
}

@-webkit-keyframes fade_In {
  from {
    opacity: 1;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade_In {
  from {
    opacity: 1;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fade_Out {
  from {
    opacity: 1;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_Out {
  from {
    opacity: 1;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 576px) and (min-width: 300px) {
  .menu_header {
    display: none;
  }

  header .custom-mobile {
    display: none !important;
  }
  header .custom-mobile2 {
    display: block !important;
  }
  header ul {
    justify-content: unset;
    padding: 0;
  }
  header ul li {
    padding: 5px 0;
  }
  header ul > li.country {
    margin-top: 10px;
    margin-left: 15px;
    width: 50%;
  }
  header ul > li.country a {
    padding: 6% 20% !important;
  }
  header .menu_header_moblie {
    position: fixed;
    background: #fafafa;
    left: -100%;
    top: 80px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 10;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  header .menu_header_moblie li {
    width: 100%;
    padding: 20px 20px;
    border-bottom: 1px solid #BDBDBD;
  }
  header .menu_header_moblie li > a {
    color: black;
  }
  header .menu_mb {
    display: flex;
    position: absolute;
    top: 40%;
    z-index: 99;
  }

  .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .menu_mb {
    display: flex;
  }
}
@media only screen and (max-width: 767px) and (min-width: 577px) {
  body {
    overflow-x: hidden;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .menu_header {
    display: none;
  }

  .container {
    max-width: 95%;
  }

  header ul {
    justify-content: unset;
    padding: 0;
  }
  header ul li {
    padding: 5px 0;
  }
  header ul > li.country {
    margin-top: 10px;
    margin-left: 15px;
    width: 50%;
  }
  header ul > li.country a {
    padding: 6% 20% !important;
  }
  header .menu_header_moblie {
    position: fixed;
    background: #fafafa;
    left: -100%;
    top: 80px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  header .menu_header_moblie li {
    width: 100%;
    padding: 20px 20px;
    border-bottom: 1px solid #BDBDBD;
  }
  header .menu_header_moblie li > a {
    color: black;
  }
  header .menu_header_moblie li.country > ul li.active_country {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid cadetblue;
    border-radius: 10.5px;
  }
  header .menu_header_moblie li.country > ul li.active_country a {
    color: cadetblue;
  }
  header .menu_header_moblie li.country > ul li.none_active {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #333333;
    border-radius: 10.5px;
    padding: 3px 9px;
  }
  header .menu_mb {
    display: flex;
    position: absolute;
    right: 15%;
    top: 40%;
    z-index: 99;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .col-sm-3 {
    flex: 0 0 14%;
    max-width: 14%;
  }

  .col-sm-9 {
    flex: 0 0 86%;
    max-width: 86%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .container {
    max-width: 95%;
  }

  header .menu_header_moblie {
    display: none;
  }
  header ul li {
    padding: 0 30px;
  }

  .cover-logo img {
    width: 100% !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 577px) {
  .cover-logo img {
    width: 33% !important;
  }
}
@media only screen and (min-width: 1025px) {
  header .menu_header_moblie {
    display: none;
  }

  .container {
    max-width: 80%;
  }
}
@media only screen and (min-width: 1366px) {
  header .cover-logo img {
    width: 68%;
  }
}
@media only screen and (min-width: 1500px) {
  header .cover-logo img {
    width: 45%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ol, ul, li {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

button, input, textarea {
  border: none;
  outline: none;
  box-sizing: none;
  background: none;
}

footer {
  background: #242424;
  height: 100%;
  position: relative;
}
footer .address_link .icon_follow ul {
  padding-top: 63px;
  display: flex;
}
footer .address_link .icon_follow ul li {
  padding-right: 30px;
}
footer .address_link .icon_follow ul li:last-child {
  padding-right: 0;
}
footer .address_link .icon_follow ul li .fa-facebook-f:before {
  content: "\F39E";
  font-size: 20px;
  color: #7b7b7b;
  opacity: 0.8;
}
footer .address_link .icon_follow ul li .fa-youtube:before {
  content: "\F167";
  font-size: 20px;
  color: #7b7b7b;
  opacity: 0.8;
}
footer .address_link .icon_follow ul li .fa-instagram:before {
  content: "\F16D";
  font-size: 20px;
  color: #7b7b7b;
  opacity: 0.8;
}
footer .address_link .icon_follow ul li .block-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #626262;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}
footer .address_link .icon_follow ul li .block-icon:hover {
  text-decoration: none;
  border: 1px solid #005aa7;
}
footer .address_link .icon_follow ul li .block-icon:hover .fa-facebook-f:before {
  color: #005aa7;
}
footer .address_link .icon_follow ul li .block-icon-fa:hover {
  border: 1px solid #ed213a;
}
footer .address_link .icon_follow ul li .block-icon-fa:hover .fa-youtube:before {
  color: #ed213a;
}
footer .address_link .icon_follow ul li .block-icon-ins:hover {
  border: 1px solid #c94b4b;
}
footer .address_link .icon_follow ul li .block-icon-ins:hover .fa-instagram:before {
  color: #c94b4b;
}
footer .address_link .logo_footer {
  padding-top: 65px;
}
footer .address_link .logo_footer .cover-resize-logo {
  height: 38px;
  width: auto;
  display: block;
  line-height: 83px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .address_link .logo_footer .cover-resize-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: 100%;
}
footer .address_link .to_top {
  position: absolute;
  top: 63px;
  right: 0;
}
footer .address_link .to_top a {
  background: #626262;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .address_link .to_top a i {
  color: white;
  font-size: 13px;
}
footer .border_footer {
  border: 1px solid #626262;
  margin-top: 28px;
  background-color: #626262;
}
footer .border_footerr {
  border: 1px solid #626262;
  margin-top: 28px;
  background-color: #626262;
}
footer .address_contact .icon_follow ul {
  padding-top: 30px;
  margin-bottom: 0px;
}
footer .address_contact .icon_follow ul li {
  text-align: center;
}
footer .address_contact .icon_follow ul li .fa-home:before {
  content: "\F015";
  font-size: 20px;
  color: #7b7b7b;
  opacity: 0.8;
}
footer .address_contact .icon_follow ul li .fa-envelope:before {
  content: "\F0E0";
  font-size: 20px;
  color: #7b7b7b;
  opacity: 0.8;
}
footer .address_contact .icon_follow ul li .fa-phone-alt:before {
  content: "\F879";
  font-size: 20px;
  color: #7b7b7b;
  opacity: 0.8;
}
footer .address_contact .icon_follow ul li .fa-globe:before {
  content: "\F0AC";
  font-size: 20px;
  color: #7b7b7b;
  opacity: 0.8;
}
footer .address_contact .icon_follow ul li a p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 160%;
  color: white;
  margin-top: 15px;
}
footer .address_contact .icon_follow ul li p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  color: #626262;
}
footer .address_contact .icon_follow .hotline-phone-ring-wrap {
  position: fixed;
  bottom: 2px;
  left: 0;
  z-index: 999999;
  overflow: hidden;
  height: 200px;
}
footer .address_contact .icon_follow .hotline-phone-ring {
  position: fixed;
  visibility: visible;
  background-color: transparent;
  width: 110px;
  height: 110px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}
footer .address_contact .icon_follow .hotline-phone-ring-circle {
  width: 85px;
  height: 85px;
  top: 10px;
  left: 10px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid #e60808;
  -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  opacity: 0.5;
}
footer .address_contact .icon_follow .hotline-phone-ring-circle-fill {
  width: 55px;
  height: 55px;
  top: 25px;
  left: 25px;
  position: absolute;
  background-color: rgba(230, 8, 8, 0.7);
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}
footer .address_contact .icon_follow .hotline-phone-ring-img-circle {
  background-color: #e60808;
  width: 38px;
  height: 38px;
  top: 36px;
  left: 36px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .address_contact .icon_follow .hotline-phone-ring-img-circle .pps-btn-img {
  display: flex;
}
footer .address_contact .icon_follow .hotline-phone-ring-img-circle .pps-btn-img img {
  width: 20px;
  height: 20px;
}
footer .address_contact .icon_follow .hotline-bar {
  display: none;
  position: absolute;
  background: rgba(230, 8, 8, 0.75);
  height: 40px;
  width: 170px;
  line-height: 40px;
  border-radius: 3px;
  padding: 0 10px;
  background-size: 100%;
  cursor: pointer;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  z-index: 9;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50px !important;
  left: 33px;
  bottom: 37px;
}
footer .address_contact .icon_follow .hotline-bar > a {
  color: #fff;
  text-decoration: none;
  text-indent: 40px;
  display: block;
  letter-spacing: 1px;
  line-height: 40px;
}
footer .address_contact .icon_follow .hotline-bar > a:active,
footer .address_contact .icon_follow .hotline-bar > a:hover {
  color: #fff;
}
@-webkit-keyframes phonering-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@-webkit-keyframes phonering-alo-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
}
@-webkit-keyframes phonering-alo-circle-img-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
footer .copy_right span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  /* or 22px */
  color: #c4c4c4;
  margin-top: 3px;
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .address_link .btn-top {
    bottom: 22% !important;
  }
}
@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .address_link .btn-top {
    bottom: 22% !important;
  }
}
@media only screen and (min-width: 1366px) {
  .address_contact .icon_follow .btn-top {
    bottom: 31% !important;
    right: 4%;
  }
}
@media only screen and (max-width: 576px) and (min-width: 300px) {
  .address_link .custom-logo-ft {
    display: none;
  }
  .address_link .respon-mobile {
    display: none;
  }
  .address_link .logo_footer {
    padding-top: 0px !important;
    width: 100% !important;
    height: 100% !important;
    margin-left: 0;
    margin-top: 30px;
  }
  .address_link .to_top {
    position: absolute;
    top: -54px !important;
    right: -22% !important;
  }

  .address_contact .icon_follow .custom-position {
    padding-left: 0px !important;
    margin-right: 40px !important;
  }
  .address_contact .icon_follow .fadeclass {
    display: flex !important;
    justify-content: center !important;
  }
  .address_contact .icon_follow .fadeclass ul {
    padding-top: 10px !important;
  }
  .address_contact .icon_follow .fadeclass ul li {
    text-align: inherit !important;
  }
  .address_contact .icon_follow .fadeclass ul li a {
    display: flex;
    align-items: center;
  }
  .address_contact .icon_follow .fadeclass ul li a i {
    margin-right: 15px;
  }
  .address_contact .icon_follow .fadeclass ul li p {
    text-align: inherit;
    word-break: break-word;
  }
  .address_contact .icon_follow .hotline-phone-ring-img-circle {
    left: 10px !important;
  }

  .col-xs-12 {
    flex: 0 0 79%;
    max-width: 100%;
    width: 79% !important;
  }

  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50% !important;
  }

  .exit_menu {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 576px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .to_top {
    margin-left: -15px;
  }
}
body {
  font-size: 1rem;
  overflow-x: hidden;
}

@-webkit-keyframes VideoImg {
  from {
    transform: scale(1.1) translateX(60px);
    transition: 1s ease-in;
  }
  to {
    transition: 1s ease-in;
  }
}

@keyframes VideoImg {
  from {
    transform: scale(1.1) translateX(60px);
    transition: 1s ease-in;
  }
  to {
    transition: 1s ease-in;
  }
}
@-webkit-keyframes backInDown {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(-100px);
  }
  10% {
    opacity: 0.1;
    transform: scale(0.6) translateY(-90px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes backInDown {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(-100px);
  }
  10% {
    opacity: 0.1;
    transform: scale(0.6) translateY(-90px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@-webkit-keyframes toLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes toRight {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes toRight {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes colorCountDown {
  from {
    width: 0;
    background: white;
  }
  to {
    width: 100%;
    background-color: white;
  }
}
@keyframes colorCountDown {
  from {
    width: 0;
    background: white;
  }
  to {
    width: 100%;
    background-color: white;
  }
}
@-webkit-keyframes ZoomIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 0.3;
    transform: scale(1);
  }
}
@keyframes ZoomIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 0.3;
    transform: scale(1);
  }
}
.animate_backInDown {
  -webkit-animation: backInDown 1s forwards;
          animation: backInDown 1s forwards;
}

.animate__fadeOutDownBig {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.slick-active p.name {
  -webkit-animation: backInDown 1s 1.3s forwards;
          animation: backInDown 1s 1.3s forwards;
}
.slick-active p.company {
  -webkit-animation: toRight 1s 1.6s forwards;
          animation: toRight 1s 1.6s forwards;
}
.slick-active p.address {
  -webkit-animation: toLeft 1s 2s forwards;
          animation: toLeft 1s 2s forwards;
}
.slick-active p.rectangle {
  -webkit-animation: ZoomIn 1s 1.3s forwards;
          animation: ZoomIn 1s 1.3s forwards;
}
.slick-active img {
  overflow: hidden;
  -webkit-animation: VideoImg 4s forwards;
          animation: VideoImg 4s forwards;
  margin-top: 80px;
  -o-object-fit: fill;
     object-fit: fill;
}

.cover-logo {
  width: auto;
  height: 100%;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
.cover-logo img {
  width: 68%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

li.slick-active button {
  border: 2px solid #000000 !important;
  border-radius: 100% !important;
  color: #ffffff !important;
  opacity: 0.6 !important;
  width: 18px !important;
  height: 18px !important;
}
li.slick-active button:before {
  line-height: 22px !important;
  left: -1px !important;
  color: #ffffff !important;
  opacity: 1 !important;
  width: 19px !important;
  height: 18px !important;
  top: -1px !important;
}

.homepage {
  position: relative;
}
.homepage .scroll-bar {
  width: 600px;
  display: flex;
  align-items: center;
  position: absolute;
  right: -10%;
  bottom: 32%;
  transform: rotate(90deg);
}
.homepage .scroll-bar .css-scroll {
  width: 380px;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.3;
  margin-right: 10px;
}
.homepage .scroll-bar .css-text-scroll {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}
.homepage .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.homepage .banner_slider {
  overflow-x: hidden;
  margin-top: -80px;
}
.homepage .banner_slider .image {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  position: relative;
  width: 100%;
}
.homepage .banner_slider .image .title {
  position: absolute;
  left: 10%;
  bottom: 10%;
  z-index: 2;
  width: 52%;
}
.homepage .banner_slider .image .title p.rectangle {
  opacity: 0;
  width: 130px;
  height: 18px;
  background: #ffffff;
  mix-blend-mode: soft-light;
  position: relative;
}
.homepage .banner_slider .image .title p.name {
  mix-blend-mode: normal;
  opacity: 0;
}
.homepage .banner_slider .image .title p.name a {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 54px;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  outline: none;
  border: 1px solid #ffffff;
  border-radius: 90px;
  box-sizing: border-box;
  width: 236px;
  height: 55px;
  text-decoration: none;
}
.homepage .banner_slider .image .title p.name a span {
  padding-left: 10px;
}
.homepage .banner_slider .image .title p.name a:hover {
  text-decoration: none;
}
.homepage .banner_slider .image .title p.company {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 46px;
  line-height: 64px;
  color: #ffffff;
  mix-blend-mode: normal;
  opacity: 0;
  margin-bottom: 40px;
}
.homepage .banner_slider .image .title p.address {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0;
}
.homepage .banner_slider .image .icon_contact {
  z-index: 2;
  cursor: pointer;
  position: absolute;
  left: 10%;
  bottom: 5%;
}
.homepage .banner_slider .image .icon_contact ul li {
  padding-right: 30px;
}
.homepage .banner_slider .image .icon_contact ul li .fa-facebook-f:before {
  content: "\F39E";
  font-size: 25px;
  color: white;
  opacity: 0.8;
}
.homepage .banner_slider .image .icon_contact ul li .fa-youtube:before {
  content: "\F167";
  font-size: 23px;
  color: white;
  opacity: 0.8;
}
.homepage .banner_slider .image .icon_contact ul li .fa-instagram:before {
  content: "\F16D";
  font-size: 25px;
  color: white;
  opacity: 0.8;
}
.homepage .banner_slider .image .icon_contact ul li .block-icon {
  display: block;
  padding: 7px 14px;
  border: 1px solid white;
  border-radius: 100%;
}
.homepage .banner_slider .image .icon_contact ul li .block-icon:hover {
  border: 1px solid #005aa7;
}
.homepage .banner_slider .image .icon_contact ul li .block-icon:hover .fa-facebook-f:before {
  color: #005aa7;
}
.homepage .banner_slider .image .icon_contact ul li .block-icon-fa {
  display: block;
  padding: 8px 10px;
  border: 1px solid white;
  border-radius: 100%;
}
.homepage .banner_slider .image .icon_contact ul li .block-icon-fa:hover {
  border: 1px solid #ed213a;
}
.homepage .banner_slider .image .icon_contact ul li .block-icon-fa:hover .fa-youtube:before {
  color: #ed213a;
}
.homepage .banner_slider .image .icon_contact ul li .block-icon-ins {
  display: block;
  padding: 7px 11px;
  border: 1px solid white;
  border-radius: 100%;
}
.homepage .banner_slider .image .icon_contact ul li .block-icon-ins:hover {
  border: 1px solid #c94b4b;
}
.homepage .banner_slider .image .icon_contact ul li .block-icon-ins:hover .fa-instagram:before {
  color: #c94b4b;
}
.homepage .banner_slider .image img {
  width: 100%;
  height: 100vh;
}
.homepage .banner_slider .slick-dots {
  bottom: 45% !important;
  right: 0;
  transform: rotate(90deg);
  width: auto !important;
  height: auto !important;
}
.homepage .banner_slider .slick-dots li {
  margin-left: 40px;
}
.homepage .banner_slider .slick-dots li button:before {
  font-size: 8px !important;
  color: #626262 !important;
  opacity: 0.3;
}
.homepage .banner_slider .slick-next {
  display: none !important;
}
.homepage .banner_slider .slick-prev {
  display: none !important;
}

section .title-home h1 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 46px;
  color: #1A1A1A;
  margin-top: 50px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 576px) and (min-width: 300px) {
  .homepage .banner_slider {
    overflow-x: hidden;
    margin-top: 15px;
  }
  .homepage .banner_slider .image img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100% !important;
  }
  .homepage .banner_slider .image .title {
    left: 5%;
    right: 5%;
  }
  .homepage .banner_slider .image .title p.name {
    font-size: 45px;
    line-height: 60px;
  }
  .homepage .banner_slider .image .title p.name a {
    width: 160px !important;
    font-size: 14px !important;
  }
  .homepage .banner_slider .image .title p.company {
    font-size: 22px;
    line-height: 40px;
    margin-bottom: 30px !important;
  }
  .homepage .banner_slider .slick-next {
    top: 92%;
    left: 87%;
  }
  .homepage .banner_slider .slick-prev {
    top: 92%;
  }
  .homepage .banner_slider .slick-dots li {
    margin-left: 20px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 577px) {
  .homepage .banner_slider {
    overflow-x: hidden;
  }
  .homepage .banner_slider .image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homepage .banner_slider .image .title {
    left: 5%;
    right: 5%;
  }
  .homepage .banner_slider .image .title p.name {
    font-size: 45px;
    line-height: 60px;
  }
  .homepage .banner_slider .image .title p.company {
    font-size: 29px;
    line-height: 40px;
  }
  .homepage .banner_slider .slick-dots {
    right: 0;
  }
  .homepage .banner_slider .slick-next {
    top: 92%;
    left: 87%;
  }
  .homepage .banner_slider .slick-prev {
    top: 92%;
  }
  .homepage .scroll-bar {
    right: -30% !important;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .homepage .scroll-bar {
    left: 56% !important;
  }
  .homepage .banner_slider .slick-dots {
    right: 0% !important;
  }
}
@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .homepage .scroll-bar {
    left: 56% !important;
  }
  .homepage .banner_slider .slick-dots {
    right: 0% !important;
  }
}
@media only screen and (max-width: 576px) and (min-width: 400px) {
  .scroll-bar {
    right: -39% !important;
  }
}
@media only screen and (max-width: 400px) and (min-width: 300px) {
  .scroll-bar {
    right: -70% !important;
    bottom: 36% !important;
  }

  .slick-dots {
    right: -13% !important;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .homepage .scroll-bar {
    right: -20%;
    bottom: 43%;
  }
  .homepage .scroll-bar .css-scroll {
    width: 500px;
  }
  .homepage .banner_slider {
    overflow-x: hidden;
  }
  .homepage .banner_slider .image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homepage .banner_slider .slick-dots {
    right: 0;
  }
  .homepage .banner_slider .slick-next {
    top: 89%;
    left: 84%;
  }
  .homepage .banner_slider .slick-prev {
    top: 89%;
  }
}
.nopadding {
  padding-left: 0;
  padding-right: 0;
}

.pd-30 {
  padding-right: 30px;
}

.contact {
  margin-bottom: 50px;
  margin-top: 50px;
}
.contact .contact-detail .ct-img .block-img {
  display: block;
  width: 100%;
  height: 600px;
}
.contact .contact-detail .ct-img .block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact .contact-detail .map-center #map {
  width: 380px;
  height: 600px;
  filter: grayscale(1);
}
.contact .contact-detail .ct-detail h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  color: #1A1A1A;
  margin-bottom: 30px;
  margin-top: 0px;
}
.contact .contact-detail .ct-detail p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 10px;
  color: #626262;
}
.contact .contact-detail .ct-detail .ct-form {
  margin-top: 41px;
}
.contact .contact-detail .ct-detail .ct-form input {
  padding-left: 20px;
  height: 40px !important;
  padding-bottom: 10px;
  border: 1px solid #E5E5E5;
}
.contact .contact-detail .ct-detail .ct-form input::-moz-placeholder {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #C4C4C4;
}
.contact .contact-detail .ct-detail .ct-form input:-ms-input-placeholder {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #C4C4C4;
}
.contact .contact-detail .ct-detail .ct-form input::placeholder {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #C4C4C4;
}
.contact .contact-detail .ct-detail .ct-form textarea {
  width: 100%;
  height: 100px;
  padding-left: 20px;
  padding-top: 10px;
  border: 1px solid #E5E5E5;
}
.contact .contact-detail .ct-detail .ct-form textarea::-moz-placeholder {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #C4C4C4;
}
.contact .contact-detail .ct-detail .ct-form textarea:-ms-input-placeholder {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #C4C4C4;
}
.contact .contact-detail .ct-detail .ct-form textarea::placeholder {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #C4C4C4;
}
.contact .contact-detail .ct-detail .ct-form .form-group {
  margin-bottom: 20px;
}
.contact .contact-detail .ct-detail .ct-form .form-control:focus {
  box-shadow: none;
  border: 1px solid #1A1A1A;
  transition: 0.3s ease-in;
}
.contact .contact-detail .ct-detail .ct-form .form-control:focus::-moz-placeholder {
  font-size: 14px;
  color: #2C2C2C;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.contact .contact-detail .ct-detail .ct-form .form-control:focus:-ms-input-placeholder {
  font-size: 14px;
  color: #2C2C2C;
  -ms-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.contact .contact-detail .ct-detail .ct-form .form-control:focus::placeholder {
  font-size: 14px;
  color: #2C2C2C;
  transition: 0.3s ease-in;
}
.contact .contact-detail .ct-detail button {
  width: 100%;
  height: 40px;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  align-items: center;
  background-color: #1A1A1A;
  color: white;
  border-radius: 3px;
  line-height: 19px;
}
.contact .contact-detail .row-padding {
  padding-left: 35px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .ct-detail {
    margin-top: 50px;
  }

  #map {
    width: 100% !important;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1024px) {
  .ct-detail {
    margin-top: 50px;
  }

  #map {
    width: 100% !important;
  }
}
@media only screen and (min-width: 1366px) {
  #map {
    width: 100% !important;
  }
}
@media only screen and (max-width: 576px) and (min-width: 300px) {
  .ct-detail {
    margin-top: 50px;
  }

  #map {
    width: 100% !important;
  }

  .map-center {
    margin-top: 50px;
  }

  .block-img {
    height: 300px !important;
  }

  .row-padding {
    padding-left: 0px !important;
  }

  .pd-30 {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 576px) {
  .ct-detail {
    margin-top: 50px;
  }

  #map {
    width: 100% !important;
  }

  .pd-30 {
    padding-right: 15px;
  }
}
section .pdl-convert {
  margin-bottom: 50px;
}
section .banner img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}
section .port-detail {
  margin-top: 50px;
}
section .port-detail .port-img {
  width: 97%;
}
section .port-detail .port-img .cover-img {
  display: block;
}
section .port-detail .port-img .cover-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section .port-detail .port-img .port-detail-img {
  margin-top: 7px;
}
section .port-detail .port-img .port-detail-img h1 {
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #1A1A1A;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-bottom: 0px !important;
}
section .port-detail .port-img .port-detail-img p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #626262;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .port-img {
    width: 100% !important;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1024px) {
  .port-img {
    width: 100% !important;
  }
}
@media only screen and (min-width: 1366px) {
  .banner .banner-resize {
    width: 100%;
    height: 100%;
  }
  .banner .banner-resize img {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) and (min-width: 300px) {
  .port-img {
    width: 100% !important;
  }

  .banner img {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 576px) {
  .port-img {
    width: 100% !important;
  }
}
section .banner-detail {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 50px;
}
section .banner-detail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section .text-box {
  width: 100%;
}
section .text-box .detail-text-box {
  width: 100%;
}
section .text-box .detail-text-box h1 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #1A1A1A;
  margin-bottom: 38px;
}
section .text-box .detail-text-box p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #626262;
}
section .detail {
  margin-top: 50px;
}
section .detail .cover-hight {
  width: 100%;
  height: 100%;
  display: block;
}
section .detail .cover-hight img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section .detail .cover-toang {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
section .detail .cover-toang img {
  width: 100%;
  height: 63%;
  -o-object-fit: cover;
     object-fit: cover;
}
section .detail .detail-why span {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 28px;
}
section .detail .detail-why ul > li {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #626262;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
}
section .photo-grab {
  margin-top: 50px;
}
section .photo-grab img {
  width: 100%;
}
section .photo-grab2 {
  margin-top: 50px;
  margin-bottom: 50px;
}
section .photo-grab2 img {
  width: 100%;
}

.padding-le {
  padding-left: 50px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .port-img {
    width: 100% !important;
  }

  .detail .padding-le {
    padding-left: 15px !important;
    margin-top: 50px;
  }

  .text-box .detail-text-box {
    width: 90% !important;
  }

  .banner-detail {
    height: 100% !important;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1024px) {
  .text-box .detail-text-box {
    width: 90% !important;
  }

  .banner-detail {
    height: 100% !important;
  }

  .detail .padding-le {
    padding-left: 15px !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .banner-detail {
    height: 428px !important;
  }
}
@media only screen and (min-width: 1366px) {
  .photo-grab .resizze {
    width: 100%;
  }

  .photo-grab2 .resizze {
    width: 100%;
  }

  .banner-detail .cover-resize {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 576px) and (min-width: 300px) {
  .text-box .detail-text-box {
    width: 90% !important;
  }
  .text-box .detail-text-box p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
  }

  .banner-detail {
    height: 100% !important;
  }

  .detail .nopadding {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .detail .nopadding .cover-toang img {
    height: 85% !important;
  }
}
@media only screen and (max-width: 768px) and (min-width: 576px) {
  .text-box .detail-text-box {
    width: 90% !important;
  }

  .banner-detail {
    height: 100% !important;
  }
}
section .banner-prolife {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 50px;
}
section .banner-prolife img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section .prolife-detail h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28px;
  font-size: 24px;
  margin-bottom: 58px;
}
section .prolife-detail .project-hide {
  position: relative;
}
section .prolife-detail .project-hide .prolife-text .prolife-font {
  display: flex;
  margin-top: 5px;
}
section .prolife-detail .project-hide .prolife-text .prolife-font .text-font {
  color: #626262;
  font-family: "Parisienne", cursive;
  font-size: 80px;
  font-weight: 400;
  line-height: 78px;
}
section .prolife-detail .project-hide .prolife-text .prolife-font .text-infoma {
  margin-left: 20px;
}
section .prolife-detail .project-hide .prolife-text .prolife-font .text-infoma h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  color: #1A1A1A;
  margin-bottom: 5px;
}
section .prolife-detail .project-hide .prolife-text .prolife-font .text-infoma p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #1A1A1A;
}
section .prolife-detail .project-hide .prolife-text .textp p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  color: #626262;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
}
section .prolife-detail .project-hide .positon-img img {
  position: absolute;
  top: -17%;
  left: -63%;
  z-index: -1;
  width: 212px;
  cursor: pointer;
}
section .prolife-detail .project-hide .image-background {
  position: relative;
}
section .prolife-detail .project-hide .image-background img {
  width: 82%;
  margin-left: 10%;
  height: 338px;
}
section .prolife-detail .project-hide .image-pro {
  width: 100%;
}
section .prolife-detail .project-hide .image-pro img {
  width: 78%;
  position: absolute;
  top: -7%;
  left: 4%;
  cursor: pointer;
}
section .prolife-detail .project-hide .hidden-img {
  padding-right: 0px;
}
section .prolife-detail .infomation-design .tryhard {
  margin-top: 9%;
}
section .prolife-detail .infomation-design .tryhard .design-image img {
  cursor: auto;
  width: 308px;
  position: absolute;
  z-index: -12;
}
section .prolife-detail .infomation-design .tryhard .prolife-text .prolife-font {
  display: flex;
  margin-top: 5px;
}
section .prolife-detail .infomation-design .tryhard .prolife-text .prolife-font .text-font {
  color: #626262;
  font-family: "Parisienne", cursive;
  font-size: 80px;
  font-weight: 400;
  line-height: 78px;
}
section .prolife-detail .infomation-design .tryhard .prolife-text .prolife-font .text-infoma {
  margin-left: 20px;
}
section .prolife-detail .infomation-design .tryhard .prolife-text .prolife-font .text-infoma h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  color: #1A1A1A;
  margin-bottom: 5px;
}
section .prolife-detail .infomation-design .tryhard .prolife-text .prolife-font .text-infoma p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #1A1A1A;
}
section .prolife-detail .infomation-design .tryhard .prolife-text .textp p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  color: #626262;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 14;
}
section .prolife-detail .infomation-design .tryhard .prinfomation-led {
  position: relative;
}
section .prolife-detail .infomation-design .tryhard .prinfomation-led img {
  width: 85%;
  margin-left: 15%;
  height: 334px;
  margin-top: 6%;
}
section .prolife-detail .infomation-design .tryhard .prinfomation-load {
  width: 100%;
}
section .prolife-detail .infomation-design .tryhard .prinfomation-load img {
  width: 78%;
  position: absolute;
  top: -2%;
  left: 9%;
  cursor: pointer;
}
section .prolife-detail .infomation-atris {
  margin-top: 90px;
  position: relative;
}
section .prolife-detail .infomation-atris .project-hide .positon-imgg img {
  position: absolute;
  top: 63%;
  left: -47%;
  z-index: -1;
  width: 126px;
  cursor: pointer;
}
section .prolife-detail .project-stuido {
  margin-top: 90px;
}
section .prolife-detail .project-stuido .display-box {
  display: flex;
  align-items: center;
}
section .prolife-detail .project-stuido .project-ptext {
  width: 96%;
}
section .prolife-detail .project-stuido .project-ptext .project-prtext h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 0;
  color: #1A1A1A;
}
section .prolife-detail .project-stuido .project-ptext .project-prtext p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #1A1A1A;
  margin-bottom: 20px;
}
section .prolife-detail .project-stuido .project-ptext .css-prtext p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  text-align: justify;
  color: #626262;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
section .prolife-detail .project-stuido .projectimg img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
section .prolife-detail .banner-slide {
  margin-top: 50px;
}
section .prolife-detail .banner-slide .slide-dt .cover-revert {
  display: block;
  width: 100%;
  height: 500px;
}
section .prolife-detail .banner-slide .slide-dt .cover-revert img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section .prolife-detail .banner-slide .slide-dt .css-text-slide h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #1A1A1A;
  margin-top: 30px;
  margin-bottom: 20px;
}
section .prolife-detail .banner-slide .slide-dt .css-text-slide p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-align: justify;
  line-height: 22px;
  color: #626262;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
section .prolife-detail .banner-slide .slide-dt-hid .cover-revert {
  display: block;
  width: 100%;
  height: 500px;
}
section .prolife-detail .banner-slide .slide-dt-hid .cover-revert img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section .prolife-detail .banner-slide .slide-dt-hid .css-text-slide h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #1A1A1A;
  margin-top: 30px;
  margin-bottom: 20px;
}
section .prolife-detail .banner-slide .slide-dt-hid .css-text-slide p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-align: justify;
  line-height: 22px;
  color: #626262;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
section .prolife-detail .old-secondary {
  margin-top: 50px;
  margin-bottom: 50px;
}
section .prolife-detail .old-secondary .cover-revert {
  width: 100%;
  height: 100%;
  display: block;
}
section .prolife-detail .old-secondary .cover-revert img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section .prolife-detail .old-secondary .resize-revert {
  display: flex;
  align-items: center;
}
section .prolife-detail .old-secondary .resize-revert .old-revert-text {
  width: 96%;
  margin-left: auto;
}
section .prolife-detail .old-secondary .resize-revert .old-revert-text h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #1A1A1A;
  margin-bottom: 20px;
}
section .prolife-detail .old-secondary .resize-revert .old-revert-text p {
  font-family: "Montserrat", sans-serif;
  color: #626262;
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

@media only screen and (min-width: 1367px) {
  .banner-prolife .resize-top {
    width: 100% !important;
  }

  .prolife-detail .project-hide .image-background img {
    width: 94% !important;
    height: unset !important;
  }

  .prolife-detail .infomation-design .tryhard .prinfomation-led img {
    width: 94% !important;
    height: unset !important;
  }
}
@media only screen and (min-width: 1999px) {
  .prolife-detail .project-hide .image-background img {
    width: 124% !important;
    height: unset !important;
  }
  .prolife-detail .infomation-design .tryhard .prinfomation-led img {
    width: 125% !important;
    height: unset !important;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .prolife-detail .infomation-design .tryhard .hidden-class {
    display: none;
  }
  .prolife-detail .infomation-design .tryhard .prinfomation-led img {
    width: 88% !important;
    height: 354px !important;
  }
  .prolife-detail .project-hide .image-background img {
    width: 88% !important;
    height: 354px !important;
  }
  .prolife-detail .old-secondary .cover-revert {
    height: auto !important;
  }
  .prolife-detail .old-secondary .resize-revert .old-revert-text {
    width: 100% !important;
    margin-left: 0px;
    margin-top: 20px;
  }

  .banner-slide .slide-dt .cover-revert {
    height: auto !important;
  }
  .banner-slide .slide-dt-hid .cover-revert {
    height: auto !important;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1024px) {
  .prolife-detail .infomation-design .tryhard .hidden-class {
    display: none;
  }
  .prolife-detail .old-secondary .cover-revert {
    height: auto !important;
  }
  .prolife-detail .old-secondary .resize-revert .old-revert-text {
    width: 100% !important;
    margin-left: 0px;
    margin-top: 20px;
  }

  .banner-slide .slide-dt .cover-revert {
    height: auto !important;
  }
  .banner-slide .slide-dt-hid .cover-revert {
    height: auto !important;
  }
}
@media only screen and (max-width: 768px) and (min-width: 576px) {
  .prolife-detail .project-hide .prolife-text {
    margin-top: 33% !important;
  }
}
@media only screen and (max-width: 576px) and (min-width: 300px) {
  .prolife-detail .project-stuido {
    margin-top: 20px !important;
  }
  .prolife-detail .project-stuido .project-ptext {
    width: 100% !important;
  }
  .prolife-detail .project-hide .image-background img {
    width: 86% !important;
    margin-left: 14% !important;
    height: 345px !important;
  }
  .prolife-detail .project-hide .image-pro img {
    width: 78% !important;
    top: -7% !important;
    left: 9% !important;
  }
  .prolife-detail .infomation-design .tryhard .padding-led {
    margin-top: 10px;
  }
  .prolife-detail .infomation-design .tryhard .design-image {
    display: none;
  }
  .prolife-detail .infomation-design .tryhard .prinfomation-led img {
    height: 345px !important;
  }
  .prolife-detail .banner-slide .slide-dt .cover-revert {
    height: auto !important;
  }
  .prolife-detail .banner-slide .slide-dt-hid .cover-revert {
    height: auto !important;
  }
  .prolife-detail .old-secondary .resize-revert .old-revert-text {
    margin-top: 20px;
    width: 100% !important;
  }
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1000;
}

/* Loaded */
.loaded #loader {
  opacity: 0;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-animation: fadeout 2s forwards;
          animation: fadeout 2s forwards;
  transition: all 1s;
}

.loaded #content {
  visibility: hidden;
}

#content {
  position: fixed;
  z-index: 1000;
  bottom: 50%;
  left: 45%;
  -webkit-animation: in_out 0.8s forwards;
          animation: in_out 0.8s forwards;
}

@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes in_out {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes in_out {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media only screen and (max-width: 576px) and (min-width: 300px) {
  #content {
    left: 29%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 577px) {
  #content {
    left: 38%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  #content {
    left: 43%;
  }
}
@media only screen and (max-width: 1366px) and (min-width: 1025px) {
  #content {
    left: 45%;
  }
}
section h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 50px;
  margin-top: 50px;
  color: #1A1A1A;
}
section .recruitment .cover-cover {
  display: block;
}
section .recruitment .cover-cover img {
  width: 100%;
  height: 100%;
}
section .recruitment .recruiment-title p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 30px;
  font-size: 16px;
  color: #1A1A1A;
}

.wrapper {
  overflow-y: hidden;
}