@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppin/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/poppin/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppin/Poppins-Bold.woff2") format("woff2"), url("../fonts/poppin/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppin/Poppins-Medium.woff2") format("woff2"), url("../fonts/poppin/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppin/Poppins-Regular.woff2") format("woff2"), url("../fonts/poppin/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppin/Poppins-Light.woff2") format("woff2"), url("../fonts/poppin/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/*======================================== config =================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  margin: 0px;
}

a {
  text-decoration: none;
  color: #000000;
  transition: 0.3s all !important;
}
a:hover {
  color: #00c9cb;
}

a:hover,
a:focus {
  text-decoration: none;
}

input {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html.open_menu {
  overflow: hidden;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  color: #031322;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Poppins";
  background: #fff;
  letter-spacing: -0.25px;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.container {
  max-width: 1400px;
  padding: 0 50px;
}
@media (max-width: 1023px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 24px;
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none !important;
}

/*======================================== end config =================================*/
.header-menu {
  padding: 20px 0 10px 0;
  background-color: rgb(15, 17, 30);
  border-bottom: 1px solid rgb(0, 0, 0);
}
@media (max-width: 1023px) {
  .header-menu {
    display: none;
  }
}
.header-menu ul {
  list-style: none;
}
.header-menu a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.header-menu a:hover {
  color: #00c9cb;
}
.header-menu .menu-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.h-menu ul {
  display: flex;
  align-items: center;
}
.h-menu ul li {
  margin-right: 50px;
}
.h-menu ul li:last-child {
  margin-right: 0;
}
.h-menu ul li a {
  border-bottom: 2px solid transparent;
}
.h-menu ul li a:hover {
  border-bottom: 2px solid #00f8fa;
  color: #fff;
}
.h-menu ul li.current-menu-item a {
  border-bottom: 2px solid #00f8fa;
}

.translate {
  margin-left: 50px;
}
.translate ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
@media (max-width: 1023px) {
  .translate ul {
    justify-content: flex-end;
  }
}
.translate ul li {
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
}
.translate ul li:after {
  content: "|";
  font-weight: 600;
  position: absolute;
  top: 0;
  right: -1px;
  color: #fff;
}
.translate ul li a {
  color: #fff;
  font-weight: 600;
}
.translate ul li.current-lang a {
  color: #00f8fa;
}
.translate ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.translate ul li:last-child:after {
  display: none;
}
.translate a.active {
  color: #00c9cb;
}

.btn-menu {
  display: flex;
}
.btn-menu a {
  display: inline-flex;
  align-items: center;
}

.menu-mobile {
  background-color: rgb(15, 17, 30);
  border-bottom: 1px solid rgb(0, 0, 0);
  padding: 15px 0;
}
@media (max-width: 1023px) {
  .menu-mobile {
    display: block !important;
  }
}

.nav-mobile {
  background: #0f111e;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s all !important;
}
.nav-mobile.open_menu {
  left: 0;
}
.nav-mobile ul li {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .nav-mobile ul li {
    margin-bottom: 16px;
  }
}
.nav-mobile ul li:last-child {
  margin-bottom: 0;
}
.nav-mobile ul li.current-menu-item a {
  color: #00f8fa;
}
.nav-mobile ul li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 767px) {
  .nav-mobile ul li a {
    font-size: 16px;
  }
}
.nav-mobile .close-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  position: absolute;
  top: 10px;
  right: 10px;
}
@media (max-width: 767px) {
  .nav-mobile .close-menu a {
    width: 30px;
    height: 30px;
    padding: 5px;
    z-index: 1002;
  }
}

footer {
  background: #0f111e;
  color: #fff;
}
@media (max-width: 1023px) {
  footer {
    font-size: 14px;
  }
}
footer ul {
  list-style: none;
}

.fter-top {
  padding: 25px 0;
}
@media (max-width: 767px) {
  .fter-top {
    text-align: center;
  }
}
.fter-top .social ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .fter-top .social ul {
    justify-content: center;
    margin-top: 25px;
  }
}
.fter-top .social ul li {
  margin-right: 32px;
}
.fter-top .social ul li:last-child {
  margin-right: 0;
}

.fter-bot {
  padding: 0 0 48px 0;
}
@media (max-width: 767px) {
  .fter-bot {
    padding: 0 0 25px 0;
  }
}
.fter-bot .info-fter ul {
  display: flex;
}
@media (max-width: 767px) {
  .fter-bot .info-fter ul {
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 25px;
  }
}
.fter-bot .info-fter ul li {
  border-left: 4px solid #00f8fa;
  padding-left: 15px;
  margin-right: 140px;
}
@media (max-width: 1023px) {
  .fter-bot .info-fter ul li {
    margin-right: 32px;
  }
}
@media (max-width: 767px) {
  .fter-bot .info-fter ul li {
    margin-right: 0;
    border-left: 2px solid #00f8fa;
    padding-left: 10px;
  }
}
.fter-bot .info-fter ul li:last-child {
  margin-right: 0;
}
.fter-bot .info-fter ul li a {
  color: #fff;
}

.copyright {
  text-align: right;
  font-size: 12px;
}
@media (max-width: 767px) {
  .copyright {
    font-size: 10px;
    text-align: center;
  }
}
.copyright h4 {
  font-weight: normal;
  font-size: 16px;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .copyright h4 {
    font-size: 14px;
  }
}

.title {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .title {
    margin-bottom: 25px;
  }
}
.title h2 {
  font-weight: bold;
  font-size: 48px;
}
.title h2 span {
  color: #00c9cb;
}
@media (max-width: 1250px) {
  .title h2 {
    font-size: 36px;
  }
}
@media (max-width: 1023px) {
  .title h2 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .title h2 {
    font-size: 24px;
  }
}
.title .desc-title {
  font-size: 20px;
  font-weight: 500;
  max-width: 790px;
  margin: 15px auto 0 auto;
}
@media (max-width: 1250px) {
  .title .desc-title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .title .desc-title {
    font-size: 14px;
  }
}

.btn-main a {
  display: inline-flex;
  height: 45px;
  padding: 0 40px;
  align-items: center;
  text-transform: uppercase;
  font-weight: bold;
  background: #00f8fa;
  border: 1px solid #00f8fa;
  border-radius: 6px;
  color: #000;
  justify-content: center;
  text-align: center;
}
@media (max-width: 1200px) {
  .btn-main a {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .btn-main a {
    height: 36px;
    font-size: 13px;
    font-weight: 500;
  }
}
.btn-main a img {
  margin-right: 12px;
}
.btn-main a:hover {
  color: #00c9cb;
  background: #fff;
}

.box-banner {
  position: relative;
}
.box-banner .content-banner-home {
  background: url("../images/bn-banner.png") no-repeat center;
  background-size: cover;
  background-position: bottom;
  padding: 80px 0 10px 0;
  text-align: right;
}
@media (max-width: 767px) {
  .box-banner .content-banner-home {
    padding: 24px 0 10px 0;
  }
}

.info-banner {
  position: relative;
  color: #fff;
  /*text-transform: uppercase; */
}
.info-banner h1 {
  font-size: 60px;
  font-weight: bold;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.1;
}
@media (max-width: 1250px) {
  .info-banner h1 {
    font-size: 46px;
  }
}
@media (max-width: 1023px) {
  .info-banner h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .info-banner h1 {
    font-size: 24px;
    line-height: initial;
  }
}
.info-banner ul {
  margin-bottom: 20px;
  list-style: none;
}
.info-banner ul li a {
  font-size: 60px;
  font-weight: bold;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
}
.info-banner ul li a:hover {
  color: #00c9cb;
}
@media (max-width: 1250px) {
  .info-banner ul li a {
    font-size: 46px;
  }
}
@media (max-width: 1023px) {
  .info-banner ul li a {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .info-banner ul li a {
    line-height: initial;
  }
}
.info-banner .txt-banner {
  text-align: left;
  position: absolute;
  width: 48%;
  top: -20px;
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 40px;
  font-size: 20px;
  font-weight: 500;
}
.info-banner ul li {
    margin-bottom: 15px;
}
.info-banner ul li:last-child {
    margin-bottom: 0;
}
@media (max-width: 1023px) {
  .info-banner .txt-banner {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .info-banner .txt-banner {
    top: 0;
    left: 0;
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 25px;
    padding: 0;
  }
}
.info-banner .avr-banner {
  width: 52%;
  margin-left: auto;
  position: relative;
  top: 34px;
}
@media (max-width: 767px) {
  .info-banner .avr-banner {
    width: 100%;
    top: 0;
  }
}
.info-banner .avr-banner img {
  width: 100%;
}

.box-recover {
  padding: 130px 0;
}
@media (max-width: 767px) {
  .box-recover {
    padding: 40px 0;
  }
}

.list-recover .btn-main {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .list-recover .btn-main {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .list-recover .col-md-4 {
    margin-bottom: 35px;
  }
  .list-recover .col-md-4:last-child {
    margin-bottom: 0;
  }
}

.item-recover h3 {
  font-weight: bold;
  font-size: 24px;
  margin-top: 15px;
  color: #00c9cb;
}
@media (max-width: 1250px) {
  .item-recover h3 {
    font-size: 20px;
  }
}
@media (max-width: 1023px) {
  .item-recover h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .item-recover h3 {
    font-size: 16px;
  }
}

.content-text-partner .row {
  margin: 0 -25px;
}
.content-text-partner .row > div {
  padding: 0 25px;
}
@media (max-width: 1023px) {
  .content-text-partner .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 1023px) {
  .txt-partner {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .txt-partner {
    margin-top: 24px;
  }
}
.txt-partner h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 15px;
}
@media (max-width: 1250px) {
  .txt-partner h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .txt-partner h2 {
    font-size: 24px;
  }
}

.caption-partner {
  padding: 60px 0;
  font-size: 48px;
  color: #d4d4d4;
  font-weight: bold;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.3;
}
@media (max-width: 1250px) {
  .caption-partner {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .caption-partner {
    font-size: 24px;
    padding: 32px 0;
  }
}

.slide-part {
  margin: 0 -25px;
}
.slide-part .slick-list {
  display: flex;
}
.slide-part .slick-list .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-part .item-slide {
  padding: 0 25px;
}
.slide-part .item-part {
  text-align: center;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.slide-part .item-part img {
  display: inline;
  max-height: 100px;
}
@media (max-width: 767px) {
  .slide-part .item-part img {
    max-height: 80px;
  }
}
.slide-part .slick-dots {
  position: relative;
  bottom: 0;
  padding-top: 45px;
}
.slide-part .slick-dots button {
  display: none !important;
}
.slide-part .slick-dots li {
  width: 12px;
  height: 12px;
  border: 4px solid #e9e9e9;
  border-radius: 100%;
  background: transparent;
}
.slide-part .slick-dots li.slick-active {
  border: 4px solid #00d8fa;
}

.box-content-partner {
  padding: 0 0 80px 0;
}
@media (max-width: 767px) {
  .box-content-partner {
    padding: 0 0 40px 0;
  }
}

.box-member {
  padding: 60px 0;
  background: #f4f4f4;
}
@media (max-width: 767px) {
  .box-member {
    padding: 40px 0;
  }
}
.box-member .title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .box-member .title {
    margin-bottom: 25px;
  }
}

.slide-member {
  margin: 0 -10px;
}
.slide-member .item-slide {
  padding: 0 10px;
}

.item-member {
  text-align: center;
}
.item-member img {
  display: inline;
}
.item-member .avarta {
  margin-bottom: 30px;
}
.item-member .desc h6 {
  font-size: 16px;
  font-weight: bold;
}

.box-gesprek {
  padding: 140px 0;
}
@media (max-width: 767px) {
  .box-gesprek {
    padding: 40px 0;
  }
}
.box-gesprek .title {
  margin-bottom: 25px;
}

.box-b2b {
  background: #00f8fa;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .box-b2b {
    padding: 40px 0;
  }
}
.box-b2b .content-b2b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .box-b2b .content-b2b {
    display: block;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .box-b2b .content-b2b .left img {
    height: 40px;
  }
}
.box-b2b .content-b2b .txt-b2b {
  padding: 0 35px;
  flex: 0 0 calc(100% - 360px);
}
@media (max-width: 1023px) {
  .box-b2b .content-b2b .txt-b2b {
    padding: 20px 0;
  }
}
.box-b2b .content-b2b .txt-b2b h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .box-b2b .content-b2b .txt-b2b h4 {
    font-size: 16px;
  }
}
.box-b2b .btn-main a {
  padding: 0 30px;
  background: #fff !important;
  border: 0 !important;
  color: #000000;
  padding-top: 4px;
}

.box-banner-bread {
  position: relative;
  padding: 120px 0 100px 0;
  background: url("../images/banner-bread.png") no-repeat center;
  background-size: cover;
  color: #fff;
}
@media (max-width: 767px) {
  .box-banner-bread {
    padding: 40px 0;
  }
}
.box-banner-bread h1, .box-banner-bread .item-txt-bread {
  font-weight: bold;
  font-size: 48px;
}
@media (max-width: 1250px) {
  .box-banner-bread h1, .box-banner-bread .item-txt-bread {
    font-size: 36px;
  }
}
@media (max-width: 1023px) {
  .box-banner-bread h1, .box-banner-bread .item-txt-bread {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .box-banner-bread h1, .box-banner-bread .item-txt-bread {
    font-size: 24px;
  }
}
.box-banner-bread h1 span, .box-banner-bread .item-txt-bread span {
  color: #00c9cb;
}
.box-banner-bread.bread-product {
  padding: 100px 0 0 0;
}
@media (max-width: 767px) {
  .box-banner-bread.bread-product {
    padding: 40px 0 0 0;
  }
}

.slide-caption-bread {
  pointer-events: none;
  margin-bottom: 0;
}

.cate-prd {
  padding: 30px 0 60px 0;
  overflow: auto;
}
@media (max-width: 767px) {
  .cate-prd {
    padding: 20px 0 40px 0;
  }
}
.cate-prd ul {
  list-style: none;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  text-transform: uppercase;
  width: max-content;
}
.cate-prd ul li {
  padding: 0 12px;
}
.cate-prd ul li a {
  display: inline-block;
  font-size: 33px;
  font-weight: bold;
  color: #fff;
  border-bottom: 3px solid transparent;
}
@media (max-width: 1250px) {
  .cate-prd ul li a {
    font-size: 24px;
  }
}
@media (max-width: 1023px) {
  .cate-prd ul li a {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .cate-prd ul li a {
    font-size: 14px;
    border-bottom: 1px solid transparent;
  }
}
.cate-prd ul li a.active, .cate-prd ul li a:hover {
  color: #00fdff;
  border-bottom: 3px solid #00fdff;
}
@media (max-width: 767px) {
  .cate-prd ul li a.active, .cate-prd ul li a:hover {
    border-bottom: 1px solid #00fdff;
  }
}

.item-how {
  display: flex;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .item-how {
    display: block;
    margin-bottom: 24px;
  }
}
.item-how .avarta {
  margin-right: 80px;
  flex: 0 0 470px;
  max-width: 470px;
}
@media (max-width: 1200px) {
  .item-how .avarta {
    margin-right: 40px;
    flex: 0 0 400px;
    max-width: 400px;
  }
}
@media (max-width: 1023px) {
  .item-how .avarta {
    margin-right: 20px;
    flex: 0 0 45%;
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .item-how .avarta {
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 15px;
  }
}
.item-how .info h3 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 25px;
}
@media (max-width: 1250px) {
  .item-how .info h3 {
    font-size: 32px;
  }
}
@media (max-width: 1250px) {
  .item-how .info h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.item-how .info .desc p {
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .item-how .info .desc p {
    margin-bottom: 10px;
  }
}
.item-how .info .desc p:last-child {
  margin-bottom: 0;
}

.item-memb-how {
  max-width: 925px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .item-memb-how {
    display: block;
    text-align: center;
  }
}
.item-memb-how .avr-mem {
  margin-right: 30px;
  flex: 0 0 190px;
}
@media (max-width: 1023px) {
  .item-memb-how .avr-mem {
    flex: 0 0 140px;
  }
}
@media (max-width: 767px) {
  .item-memb-how .avr-mem {
    margin: 0 auto 25px auto;
    width: 120px;
  }
}
.item-memb-how .caption-mem {
  color: #d4d4d4;
  font-size: 37px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media (max-width: 1250px) {
  .item-memb-how .caption-mem {
    font-size: 30px;
  }
}
@media (max-width: 1023px) {
  .item-memb-how .caption-mem {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .item-memb-how .caption-mem {
    font-size: 18px;
  }
}

.item-recover-room {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .item-recover-room {
    padding: 40px 0;
  }
}
.item-recover-room .container {
  padding: 0;
  max-width: 1090px;
}
@media (max-width: 1200px) {
  .item-recover-room .container {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .item-recover-room .container {
    padding: 0 24px;
  }
}
.item-recover-room:nth-child(2n) {
  background: #f4f4f4;
}
.item-recover-room:nth-child(2n) .item-how .avarta {
  order: 2;
  margin: 0 0 0 80px;
}
@media (max-width: 1023px) {
  .item-recover-room:nth-child(2n) .item-how .avarta {
    margin: 0 0 0 20px;
  }
}
@media (max-width: 1023px) {
  .item-recover-room:nth-child(2n) .item-how .avarta {
    margin: 0 auto 25px auto;
  }
}
.item-recover-room:nth-child(2n) .item-how .info {
  order: 1;
}

.bottom-howwork {
  padding: 100px 0 160px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .bottom-howwork {
    padding: 40px 0;
    border-top: 1px solid #ebebeb;
  }
}
.bottom-howwork .desc-content {
  font-size: 32px;
  font-weight: bold;
  max-width: 925px;
  margin: 0 auto;
  line-height: 1.3;
}
@media (max-width: 1023px) {
  .bottom-howwork .desc-content {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .bottom-howwork .desc-content {
    font-size: 20px;
  }
}
.bottom-howwork .desc-content span {
  background: #00fdff;
}
.bottom-howwork .btn-bott {
  margin-top: 40px;
}
.bottom-howwork .btn-bott ul {
  list-style: none;
  display: flex;
  margin: 0 -20px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .bottom-howwork .btn-bott ul {
    margin: 0 -5px;
  }
}
.bottom-howwork .btn-bott ul li {
  padding: 0 20px;
}
@media (max-width: 767px) {
  .bottom-howwork .btn-bott ul li {
    padding: 0 5px;
  }
}

.box-sapo {
  padding: 85px 0 50px 0;
}
@media (max-width: 767px) {
  .box-sapo {
    padding: 40px 0;
  }
}

.desc-sapo-who {
  max-width: 1090px;
  margin: 0 auto;
}
.desc-sapo-who h3 {
  margin-bottom: 25px;
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .desc-sapo-who h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .desc-sapo-who h3 {
    font-size: 24px;
  }
}
.desc-sapo-who p {
  margin-bottom: 20px;
}
.desc-sapo-who p:last-child {
  margin-bottom: 0;
}

.box-step {
  background: #f4f4f4;
  padding: 70px 0;
}
@media (max-width: 767px) {
  .box-step {
    padding: 40px 0;
  }
}
.box-step .btn-main {
  padding-left: 65px;
}

.content-step {
  max-width: 780px;
  margin: 0 auto;
}

.list-step {
  padding-left: 65px;
  border-left: 3px solid #00c9cb;
  position: relative;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .list-step {
    border: 0;
    padding: 0;
    margin-bottom: 24px;
  }
}
.list-step:after {
  content: "";
  width: 48px;
  height: 23px;
  background: url(../images/arr-down.png) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -3px;
  left: -26px;
}
@media (max-width: 767px) {
  .list-step:after {
    display: none;
  }
}
.list-step .item-step {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .list-step .item-step {
    margin-bottom: 24px;
  }
}
.list-step .item-step:last-child {
  margin-bottom: 0;
}
.list-step .item-step .title-step {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 1250px) {
  .list-step .item-step .title-step {
    font-size: 32px;
  }
}
@media (max-width: 1023px) {
  .list-step .item-step .title-step {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .list-step .item-step .title-step {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.list-step .item-step p {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .list-step .item-step p {
    margin-bottom: 10px;
  }
}
.list-step .item-step p:last-child {
  margin-bottom: 0;
}

.box-partner-who {
  padding: 100px 0 50px 0;
}
@media (max-width: 767px) {
  .box-partner-who {
    padding: 40px 0;
  }
}

.list-part-who {
  max-width: 1000px;
  margin: 0 auto;
}
.list-part-who .item-part-who {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .list-part-who .item-part-who {
    margin-bottom: 32px;
    display: block;
  }
}
.list-part-who .item-part-who:last-child {
  margin-bottom: 0;
}
.list-part-who .item-part-who:nth-child(2n) .avarta {
  margin-right: 0;
  order: 2;
}
.list-part-who .item-part-who:nth-child(2n) .info {
  padding-right: 80px;
  order: 1;
}
@media (max-width: 1250px) {
  .list-part-who .item-part-who:nth-child(2n) .info {
    padding-right: 40px;
  }
}
@media (max-width: 1023px) {
  .list-part-who .item-part-who:nth-child(2n) .info {
    padding-right: 20px;
  }
}
.list-part-who .item-part-who .avarta {
  flex: 0 0 394px;
  margin-right: 80px;
}
@media (max-width: 1200px) {
  .list-part-who .item-part-who .avarta {
    margin-right: 40px;
  }
}
@media (max-width: 1023px) {
  .list-part-who .item-part-who .avarta {
    margin-right: 20px;
    flex: 0 0 45%;
  }
}
@media (max-width: 767px) {
  .list-part-who .item-part-who .avarta {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.list-part-who .item-part-who h3 a {
  font-size: 48px;
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
  color: #000000;
}
@media (max-width: 1250px) {
  .list-part-who .item-part-who h3 a {
    font-size: 36px;
  }
}
@media (max-width: 1023px) {
  .list-part-who .item-part-who h3 a {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .list-part-who .item-part-who h3 a {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.list-part-who .item-part-who .link-part {
  margin-top: 10px;
}
.list-part-who .item-part-who .link-part a {
  color: #00c9cb;
}

.title-part-who {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .title-part-who {
    margin-bottom: 24px;
  }
}
.title-part-who h2 {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .title-part-who h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .title-part-who h2 {
    font-size: 24px;
  }
}

.box-products {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .box-products {
    padding: 40px 0;
  }
}
.box-products .list-product {
  max-width: 1200px;
}

.item-product {
  margin-bottom: 100px;
  display: flex;
}
@media (max-width: 1023px) {
  .item-product {
    display: block;
  }
}
@media (max-width: 767px) {
  .item-product {
    margin-bottom: 32px;
  }
}
.item-product:last-child {
  margin-bottom: 0;
}
.item-product .avarta {
  flex: 0 0 470px;
  margin-right: 30px;
  position: relative;
  max-width: 470px;
}
@media (max-width: 1200px) {
  .item-product .avarta {
    flex: 0 0 380px;
    max-width: 380px;
  }
}
@media (max-width: 1023px) {
  .item-product .avarta {
    margin: 0 auto;
  }
} 
.item-product .avarta img {
  width: 100%;
}
.item-product .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.item-product .slick-dots button {
    display: none !important;
}

.item-product .slick-dots li {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 100%;
    border: 1px solid #00c9cb;
    margin: 0 4px;
}

.item-product .slick-dots li.slick-active {
    background: #00c9cb;
}

.item-product .slick-dots {
    bottom: -30px;
}
.item-product .avarta .item-avr-gall img {
    width: auto;
    margin: 0 auto;
}
@media (max-width: 1023px) {
  .item-product .info {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .item-product .info {
    margin-top: 15px;
  }
}
.item-product .info ul {
  list-style: none;
  display: flex;
  align-items: center;
}
.item-product .info ul li {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .item-product .info ul li {
    margin-right: 10px;
  }
}
.item-product .info ul li:last-child {
  margin-right: 0;
}
.item-product .info .brand {
  padding: 15px 0 20px 0;
}
.item-product .info h3 a {
  font-size: 48px;
  font-weight: bold;
  display: inline-block;
}
@media (max-width: 1250px) {
  .item-product .info h3 a {
    font-size: 36px;
  }
}
@media (max-width: 1023px) {
  .item-product .info h3 a {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .item-product .info h3 a {
    font-size: 24px;
  }
}
.item-avr-gall {
    position: relative;
    padding-top: 100%;
    background: #f9f9f9;
}

.item-avr-gall img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
    object-fit: contain;
}
.item-product .info .desc {
  padding: 0 0 20px 0;
}

.box-tabpane-content {
  position: relative;
  overflow: hidden;
}
.box-tabpane-content .box-tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1002;
  opacity: 0;
}
.box-tabpane-content .box-tab-content.active {
  position: relative;
  z-index: 10;
  opacity: 1;
}

.box-slide-enkele {
  padding: 60px 0;
  background: #f4f4f4;
  position: relative;
}
@media (max-width: 767px) {
  .box-slide-enkele {
    padding: 40px 0;
  }
}
.box-slide-enkele .title-slide-ek {
  margin-bottom: 45px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .box-slide-enkele .title-slide-ek {
    margin-bottom: 32px;
    font-size: 24px;
  }
}

.conent-slide-enkele {
  position: relative;
}

.slide-enkele {
  margin-bottom: 0;
}
.slide-enkele .item-slide {
  padding: 0 25px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s all !important;
}
.slide-enkele .item-slide.slick-active {
  opacity: 1;
  pointer-events: unset;
}
.slide-enkele .slick-list {
  z-index: 2;
  overflow: unset;
}
.slide-enkele .slick-dots {
  position: relative;
  bottom: 0;
  padding-top: 45px;
}
.slide-enkele .slick-dots button {
  display: none !important;
}
.slide-enkele .slick-dots li {
  width: 18px;
  height: 18px;
  border: 5px solid #e9e9e9;
  border-radius: 100%;
  background: transparent;
}
.slide-enkele .slick-dots li.slick-active {
  border: 5px solid #00d8fa;
}

.item-enkele {
  position: relative;
}
.item-enkele:hover .desc-hver {
  opacity: 1;
}
.item-enkele .icon {
  background-image: -moz-linear-gradient(-63deg, rgb(0, 255, 234) 0%, rgb(0, 204, 255) 100%);
  background-image: -webkit-linear-gradient(-63deg, rgb(0, 255, 234) 0%, rgb(0, 204, 255) 100%);
  background-image: -ms-linear-gradient(-63deg, rgb(0, 255, 234) 0%, rgb(0, 204, 255) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 12px;
  border-radius: 100%;
  text-align: center;
  margin: 0 auto;
}
.item-enkele .info {
  padding-top: 12px;
}
.item-enkele .info p {
  margin-bottom: 8px;
  font-weight: 500;
}
.item-enkele .info ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
.item-enkele .info ul li {
  padding: 0 4px;
}
.item-enkele .desc-hver {
  background: #0f111e;
  color: #fff;
  width: 325px;
  border-radius: 5px;
  position: absolute;
  left: calc(50% - 162px);
  padding: 12px;
  text-align: left;
  top: 135px;
  transition: 0.3s all !important;
  pointer-events: none;
  opacity: 0;
}
.item-enkele .desc-hver:after {
  content: "";
  width: 40px;
  height: 40px;
  background: #0f111e;
  position: absolute;
  top: -19px;
  left: calc(50% - 20px);
  transform: rotate(45deg);
  z-index: -1;
  pointer-events: none;
}

.box-partner-prd {
  padding: 150px 0;
}
@media (max-width: 767px) {
  .box-partner-prd {
    padding: 40px 0;
  }
}

.bread-contact {
  padding: 150px 0 230px 0;
}
@media (max-width: 767px) {
  .bread-contact {
    padding: 40px 0;
  }
}
.bread-contact h1 {
  font-size: 55px;
}
@media (max-width: 1250px) {
  .bread-contact h1 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .bread-contact h1 {
    font-size: 24px;
  }
}
.bread-contact h1 span {
  display: block;
}

.box-form-contact {
  position: relative;
  margin-top: -7%;
}
@media (max-width: 1023px) {
  .box-form-contact {
    margin-top: -20%;
  }
}
@media (max-width: 767px) {
  .box-form-contact {
    margin: 24px 0 0 0;
  }
}
.box-form-contact .content-form {
  box-shadow: 0px 8px 55.25px 9.75px rgba(0, 0, 0, 0.08);
  max-width: 1015px;
  width: 100%;
  background: #fff;
  padding: 30px 50px;
  border-radius: 8px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .box-form-contact .content-form {
    padding: 24px;
  }
}

.list-frm .item-frm {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .list-frm .item-frm {
    margin-bottom: 24px;
  }
}
.list-frm .item-frm:last-child {
  margin-bottom: 0;
}
.list-frm .item-frm label {
  font-size: 12px;
  color: #9a9a9a;
  text-transform: uppercase;
}
.list-frm .item-frm .txt_field {
  width: 100%;
  height: 35px;
  outline: none;
  border: 0;
  border-bottom: 2px solid #6c6c6c;
  font-size: 20px;
}
@media (max-width: 767px) {
  .list-frm .item-frm .txt_field {
    font-size: 16px;
  }
}
.list-frm .item-frm .txt_field:focus {
  border-bottom: 2px solid #00c9cb;
}
.list-frm .item-frm .txt_field::placeholder {
  color: #b9b9b9;
}
.list-frm .item-frm .btn_field {
  height: 46px;
  width: 210px;
  font-weight: bold;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  background: #00c9cb;
  border: 1px solid #00c9cb;
}
.list-frm .item-frm .btn_field:hover {
  color: #00c9cb;
  background: #fff;
}

.box-bookingtool {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .box-bookingtool {
    padding: 40px 0;
  }
}

.title-contact {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .title-contact {
    margin-bottom: 24px;
  }
}
.title-contact h2 {
  font-size: 55px;
  font-weight: bold;
}
@media (max-width: 1250px) {
  .title-contact h2 {
    font-size: 42px;
  }
}
@media (max-width: 1023px) {
  .title-contact h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .title-contact h2 {
    font-size: 24px;
  }
}
.title-contact span {
  color: #00c9cb;
}

.box-showroom {
  padding: 0 0 80px 0;
}
@media (max-width: 767px) {
  .box-showroom {
    padding: 0 0 40px 0;
  }
}

.content-showroom {
  margin: 0 auto;
  max-width: 1015px;
  width: 100%;
}

.list-showroom .row {
  margin: 0 -8px;
}
.list-showroom .row > div {
  padding: 0 8px;
}
@media (max-width: 767px) {
  .list-showroom .row > div {
    margin-bottom: 24px;
  }
  .list-showroom .row > div:last-child {
    margin-bottom: 0;
  }
}

.txt-showroom .desc {
  padding: 45px 0 35px 0;
}
.txt-showroom ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.txt-showroom ul li {
  padding: 0 8px;
}
@media (max-width: 767px) {
  .txt-showroom ul li {
    margin-bottom: 10px;
  }
  .txt-showroom ul li:last-child {
    margin-bottom: 0;
  }
}
.txt-showroom ul li a {
  width: 215px;
  padding: 0 15px;
  justify-content: center;
}

.dialog-booking {
  max-width: 800px;
}
.dialog-booking .modal-header {
  padding: 0;
}
.dialog-booking .modal-body {
  padding: 0;
}
.dialog-booking .modal-content {
  border: 0;
  border-radius: 8px;
}

.content-popup {
  padding: 30px;
  font-size: 14px;
  position: relative;
}
.content-popup .title-popup {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.content-popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  outline: none;
}

.frm-popup .item-frm {
  margin-bottom: 25px;
}
.frm-popup .item-frm label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: #999999;
}
.frm-popup .item-frm .txt_field {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  outline: none;
}
.frm-popup .item-frm .txt_field:focus {
  border: 1px solid #00c9cb;
}

.info-booking {
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 25px;
}
.info-booking h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.info-booking ul {
  list-style: none;
}
.info-booking ul li {
  margin-bottom: 15px;
  display: flex;
}
.info-booking ul li:last-child {
  margin-bottom: 0;
}
.info-booking ul li p {
  flex: 0 0 50%;
  max-width: 50%;
}

.check-rememb {
  margin-bottom: 30px;
}
.check-rememb ul {
  list-style: none;
}
.check-rememb ul li {
  margin-bottom: 0;
  margin-bottom: 10px;
}
.check-rememb ul li:last-child {
  margin-bottom: 0;
}
.check-rememb ul li input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.check-rememb ul li input:checked + label:after {
  border: 1px solid #00c9cb;
}
.check-rememb ul li input:checked + label:before {
  transform: scale(1);
}
.check-rememb ul li label {
  margin-bottom: 0;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}
.check-rememb ul li label:after {
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #aaa;
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
}
.check-rememb ul li label:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #00c9cb;
  position: absolute;
  top: calc(50% - 4px);
  left: 4px;
  z-index: 2;
  transition: 0.3s all !important;
  transform: scale(0);
}

.btn-booking-send .btn_field {
  cursor: pointer;
  padding: 0 25px;
  height: 46px;
  border: 1px solid #00c9cb;
  text-transform: uppercase;
  font-weight: bold;
  background: #00c9cb;
  color: #fff;
}
.btn-booking-send .btn_field:hover {
  background: #fff;
  color: #00c9cb;
}

.step-2 {
  display: none;
}

.date-picker {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  transition: all 0.3s 0s ease-in-out;
  border: 1px solid #ebebeb;
  overflow: hidden;
  border-radius: 6px;
  margin-top: 25px;
}

.date-picker .ui-datepicker-calendar thead tr th {
  padding-bottom: 15px;
  text-align: center;
}

.date-picker .input {
  width: 100%;
  height: 50px;
  font-size: 0;
  cursor: pointer;
}

.date-picker .input .result, .date-picker .input button {
  display: inline-block;
  vertical-align: top;
}

.date-picker .input .result {
  width: calc(100% - 50px);
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  padding: 0 10px;
  color: grey;
  box-sizing: border-box;
}

.date-picker .input button {
  width: 50px;
  height: 50px;
  background-color: #8392A7;
  color: white;
  line-height: 50px;
  border: 0;
  font-size: 18px;
  padding: 0;
}

.date-picker .input button:hover {
  background-color: #68768A;
}

.date-picker .input button:focus {
  outline: 0;
}

.date-picker .calendar {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
}

.date-picker .ui-datepicker-inline {
  position: relative;
  width: 100%;
}

.date-picker .ui-datepicker-header {
  height: 100%;
  font-weight: 600;
  font-size: 18px;
  padding: 25px 0;
  margin-bottom: 15px;
  position: relative;
}

.date-picker .ui-datepicker-prev {
  float: left;
  margin-left: 12px;
  position: relative;
}

.date-picker .ui-datepicker-prev:after {
  content: url("../images/ar-left.png");
  position: absolute;
  left: 0;
  top: 50%;
}

.date-picker .ui-datepicker-next {
  float: right;
  margin-right: 12px;
  position: relative;
  position: relative;
}

.date-picker .ui-datepicker-next:after {
  content: url("../images/ar-right.png");
  position: absolute;
  right: 0;
  top: 50%;
}

.date-picker .ui-datepicker-title {
  text-align: center;
}

.date-picker .ui-datepicker-calendar {
  width: 100%;
  text-align: center;
}

.date-picker .ui-datepicker-calendar thead tr th span {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  font-size: 13px;
}

.date-picker .ui-state-default {
  display: block;
  text-decoration: none;
  line-height: 40px;
  font-size: 14px;
  position: relative;
}

.date-picker .ui-state-highlight {
  font-weight: bold;
}

.date-picker .ui-state-active {
  color: #fff;
  background-color: rgb(0, 201, 203);
  font-weight: 600;
}

.date-picker .ui-datepicker-unselectable .ui-state-default {
  color: #eee;
  border: 2px solid transparent;
}

.date-picker.open {
  max-height: 400px;
}

.date-picker.open .input button {
  background: #68768A;
}

td.ui-datepicker-week-end {
  opacity: 0.5;
  pointer-events: none;
}

.ui-icon-circle-triangle-e {
  display: none;
}

span.ui-icon.ui-icon-circle-triangle-w {
  display: none;
}

.choose-time {
  padding: 30px 0 0 0;
}
.choose-time h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.choose-time ul {
  list-style: none;
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.choose-time ul li {
  padding: 5px;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.choose-time ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d3e0f1;
  height: 45px;
  border-radius: 5px;
}
.choose-time ul li a.active, .choose-time ul li a:hover {
  background: #00c9cb;
  color: #fff;
}

/*# sourceMappingURL=style.css.map */

.box-banner-optional {
    padding: 130px 0 0 0;
}
@media (max-width: 767px) {
  .box-banner-optional {
      padding: 24px 0 0 0;
  }
}