@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@200;300;400;500;600;700;800&display=swap");
* {
  font-family: 'Lexend Deca', sans-serif; }

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

a {
  text-decoration: none; }

p {
  color: #4a6f8a; }

.img {
  display: block;
  width: 100%; }

.default-btn {
  padding: 13px 25px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  background: #1378c0;
  border-radius: 5px;
  cursor: pointer; }
  .default-btn.only-border {
    color: #233259;
    background: transparent;
    border: 1px solid #233259; }

.title-content {
  max-width: 700px; }
  .title-content.center {
    margin: 0 auto; }
    .title-content.center h2, .title-content.center p {
      text-align: center; }
  .title-content h2 {
    margin-bottom: 15px;
    font-size: 42px; }
  .title-content p {
    margin-bottom: 0;
    font-size: 20px;
    color: #8791b0;
    line-height: 32px; }

@media only screen and (max-width: 767.98px) {
  .title-content h2 {
    font-size: 28px; }
  .title-content p {
    font-size: 18px;
    line-height: 28px; } }
@media only screen and (max-width: 575px) {
  .title-content h2 {
    margin-bottom: 10px;
    font-size: 20px; }
  .title-content p {
    font-size: 15px;
    line-height: 24px; }

  .default-btn {
    padding: 10px 20px;
    font-size: 14px; } }
header {
  background: #fff; }

.navbar-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 15px 0; }

.logo img {
  width: 150px; }

#menu ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  #menu ul li a {
    display: block;
    padding: 10px 20px;
    color: #454545;
    font-weight: 500; }
    #menu ul li a:hover {
      color: #1378c0; }

#button-header ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  #button-header ul li {
    margin-right: 10px; }
    #button-header ul li:last-child {
      margin-right: 0; }
    #button-header ul li a {
      display: block;
      background: #233259; }
      #button-header ul li a .bi {
        margin-right: 7px;
        font-size: 20px;
        color: #ff612f;
        line-height: 1px;
        vertical-align: -2px; }

.toggle-menu {
  display: none;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 22px;
  height: 50px;
  cursor: pointer;
  transition: .3s; }
  .toggle-menu:hover span:before, .toggle-menu:hover span:after {
    transition: .2s; }
  .toggle-menu:hover span:before {
    left: 5px; }
  .toggle-menu:hover span:after {
    left: -5px; }
  .toggle-menu span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background: #222; }
    .toggle-menu span:before, .toggle-menu span:after {
      position: absolute;
      content: '';
      left: 0;
      width: 100%;
      height: 100%;
      background: #222; }
    .toggle-menu span:before {
      top: -6px; }
    .toggle-menu span:after {
      bottom: -6px; }

.top-menu-mobile {
  display: none;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  padding: 10px 15px;
  height: 70px;
  background: #233259; }
  .top-menu-mobile h3 {
    margin-bottom: 0;
    font-size: 18px;
    color: #fff; }
  .top-menu-mobile span {
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 24px;
    color: #fff;
    transform: translateY(-50%);
    cursor: pointer; }

@media only screen and (max-width: 991.8px) {
  .navbar-header {
    padding: 10px 0; }

  .toggle-menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }

  #menu {
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -310px;
    opacity: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: 3px 0px 10px rgba(221, 221, 221, 0.3);
    overflow-y: auto;
    transition: .3s;
    z-index: 99; }
    #menu.active {
      visibility: visible;
      left: 0;
      opacity: 1;
      transition: .3s; }
    #menu ul {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      #menu ul li {
        border-bottom: 1px solid rgba(221, 221, 221, 0.2); }
        #menu ul li:last-child {
          border-bottom: none; }
        #menu ul li a {
          padding: 15px 20px;
          font-size: 14px; }
          #menu ul li a:hover {
            background: rgba(221, 221, 221, 0.5); }

  .top-menu-mobile {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }

  #button-header ul li a .bi {
    margin-right: 0; }
  #button-header ul li a span {
    display: none; }
  #button-header ul li a.default-btn {
    padding: 10px 13px;
    line-height: 20px; } }
#title-page {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  height: 280px;
  background: url("../images/bg-line.png"), #1378c0;
  background-position: center top;
  background-size: cover; }

.content-title-page {
  text-align: center; }
  .content-title-page h2, .content-title-page p {
    color: #fff; }
  .content-title-page h2 {
    font-size: 42px; }
  .content-title-page p {
    font-size: 18px;
    font-weight: 500; }

@media only screen and (max-width: 575.98px) {
  #title-page {
    height: 150px; }

  .content-title-page h2 {
    font-size: 28px; }
  .content-title-page p {
    font-size: 16px; } }
#banner {
  position: relative;
  padding: 70px 0;
  background: #1378c0;
  overflow: hidden; }
  #banner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: #233259;
    z-index: 0; }
  #banner::after {
    position: absolute;
    content: '';
    top: 0;
    left: 100px;
    width: 500px;
    height: 150%;
    background: #233259;
    transform: rotate(-20deg);
    z-index: 0; }

.bg-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/map.png");
  background-size: contain;
  background-position: center center;
  z-index: 1; }

.img-banner {
  position: relative;
  padding-right: 50px;
  z-index: 1; }

.content-banner {
  position: relative;
  z-index: 1; }
  .content-banner h2 {
    margin-bottom: 30px;
    font-size: 60px;
    color: #fff;
    font-weight: 600; }
  .content-banner p {
    margin-bottom: 50px;
    font-size: 20px;
    color: #fff;
    line-height: 32px; }

.btn-banner {
  display: inline-block;
  margin-right: 15px;
  width: 200px;
  background: #233259;
  border-radius: 10px; }
  .btn-banner:hover {
    color: #fff;
    background: #ff4e16; }
  .btn-banner .bi {
    margin-left: 20px;
    font-size: 17px;
    color: #ff612f; }

.btn-banner-border {
  color: #ff612f !important;
  font-weight: 600;
  background: #fff !important;
  border: 2px solid #ff612f !important;
  border-radius: 10px; }
  .btn-banner-border .bi {
    font-size: 18px; }

@media only screen and (max-width: 1399.98px) {
  .content-banner h2 {
    margin-bottom: 25px;
    font-size: 40px; }
  .content-banner p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 28px; } }
@media only screen and (max-width: 1199.98px) {
  .content-banner h2 {
    font-size: 32px; } }
@media only screen and (max-width: 1024px) {
  .btn-banner {
    line-height: 20px;
    border: 2px solid #ff612f; } }
@media only screen and (max-width: 575.98px) {
  .content-banner h2 {
    font-size: 24px; }
  .content-banner p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 24px; }
  .content-banner .btn-banner, .content-banner .btn-banner-border {
    display: block;
    margin-right: 0;
    width: 100%;
    line-height: 20px; }
  .content-banner .btn-banner {
    margin-bottom: 15px; } }
#about {
  padding: 100px 0; }

.img-about {
  position: relative; }
  .img-about:before {
    position: absolute;
    content: '';
    top: 35px;
    left: -35px;
    width: 100%;
    height: 100%;
    border-radius: 25px; }
  .img-about img {
    position: relative;
    width: 100%;
    border-radius: 25px;
    z-index: 2; }

.content-about {
  padding-left: 50px; }
  .content-about h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ff612f; }
  .content-about h2 {
    margin-bottom: 30px;
    font-size: 48px; }
  .content-about > p {
    color: #19274d;
    line-height: 28px; }
  .content-about ul {
    margin-top: 40px; }
    .content-about ul li {
      position: relative;
      padding-left: 70px;
      margin-bottom: 30px;
      color: #19274d; }
      .content-about ul li::before {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        position: absolute;
        content: '\F633';
        left: 0;
        width: 50px;
        height: 50px;
        font-family: "bootstrap-icons";
        font-size: 28px;
        color: #ff612f;
        background: #ffd5c8;
        border-radius: 50%; }
      .content-about ul li h3 {
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: 600; }
      .content-about ul li p {
        color: #19274d;
        line-height: 28px; }

#pricing {
  padding: 100px 0;
  background: #f4f5fe; }

.price-type {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-top: 50px; }
  .price-type li:first-child a {
    padding-left: 35px;
    border-radius: 30px 0 0 30px; }
  .price-type li:last-child a {
    padding-right: 35px;
    border-radius: 0 30px 30px 0; }
  .price-type li a {
    display: block;
    padding: 13px 30px;
    color: #233259;
    background: #fff; }
    .price-type li a .bi {
      margin-right: 10px;
      font-size: 18px;
      color: #ff612f; }
    .price-type li a.active, .price-type li a:hover {
      color: #fff;
      background: #ff612f; }
      .price-type li a.active .bi, .price-type li a:hover .bi {
        color: #fff; }

.wrap-box-price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  padding: 20px 0;
  margin-top: 30px; }
  .wrap-box-price .owl-stage-outer .owl-stage {
    padding-top: 20px;
    padding-bottom: 20px; }

.box-price {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  transition: .3s; }
  .box-price.active, .box-price:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-10px);
    transition: .3s; }
  .box-price .box-price-header {
    padding: 20px 30px;
    text-align: center; }
    .box-price .box-price-header h3 {
      margin-bottom: 0;
      font-size: 24px; }
  .box-price .box-price-price {
    padding: 17px 30px;
    text-align: center;
    border-top: 2px dashed #f4f5fe;
    border-bottom: 2px dashed #f4f5fe; }
    .box-price .box-price-price h3 {
      margin-bottom: 0;
      color: #ff612f; }
      .box-price .box-price-price h3 span, .box-price .box-price-price h3 sup {
        font-size: 14px;
        color: #4a6f8a; }
  .box-price .box-price-body {
    padding: 30px 25px; }
    .box-price .box-price-body.per-4 ul {
      padding-left: 0; }
    .box-price .box-price-body ul {
      margin: 0; }
      .box-price .box-price-body ul li {
        margin-bottom: 10px;
        color: #4a6f8a;
        list-style: none; }
        .box-price .box-price-body ul li:before {
          margin-right: 13px;
          content: '\F4B5';
          font-family: 'bootstrap-icons';
          color: #13c4a1; }
  .box-price .box-price-footer {
    padding-bottom: 30px;
    text-align: center; }
    .box-price .box-price-footer a {
      display: inline-block; }

#price-detail {
  margin-top: 50px; }

.section-price {
  margin-bottom: 50px; }
  .section-price:last-child {
    margin-bottom: 0; }

.title-price {
  padding: 15px 0;
  color: #ff612f;
  background: #233259;
  text-align: center;
  text-transform: capitalize; }

.item-price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #989898; }
  .item-price:last-child {
    border-bottom: none; }

.box-title-price {
  width: 400px; }
  .box-title-price h3 {
    margin-bottom: 15px;
    font-size: 24px; }
  .box-title-price h4 {
    color: #ff612f; }
    .box-title-price h4 sup, .box-title-price h4 span {
      color: #989898; }
    .box-title-price h4 span {
      font-size: 16px; }

.box-content-price {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1; }
  .box-content-price ul {
    margin-bottom: 0; }
    .box-content-price ul li {
      margin-bottom: 10px;
      white-space: nowrap;
      list-style: none; }
      .box-content-price ul li:before {
        margin-right: 13px;
        content: '\F4B5';
        font-family: 'bootstrap-icons';
        color: #13c4a1; }
      .box-content-price ul li:last-child {
        margin-bottom: 0; }

@media only screen and (max-width: 991.98px) {
  .title-price {
    padding: 15px 0;
    font-size: 20px; }

  .item-price {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px; }

  .box-title-price {
    width: 100%;
    text-align: center; }

  .box-content-price {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin-top: 30px;
    width: 100%; }
    .box-content-price ul {
      padding-left: 0;
      width: auto; }

  .box-action-price {
    margin-top: 30px; }
    .box-action-price a {
      display: inline-block; } }
@media only screen and (max-width: 767.98px) {
  #price-detail {
    margin-top: 40px; } }
@media only screen and (max-width: 575.98px) {
  #pricing {
    padding-top: 50px;
    padding-bottom: 0; }

  .wrap-box-price {
    margin-top: 0; }

  .price-type {
    margin-top: 30px; }
    .price-type li:first-child a {
      padding-left: 35px;
      border-radius: 30px 0 0 30px; }
    .price-type li:last-child a {
      padding-right: 35px;
      border-radius: 0 30px 30px 0; }
    .price-type li a {
      padding: 10px 20px;
      font-size: 14px; }
      .price-type li a .bi {
        margin-right: 5px;
        font-size: 16px; }

  #price-detail {
    margin-top: 30px; }

  .item-price {
    padding-top: 30px;
    padding-bottom: 30px; }

  .box-title-price h3 {
    font-size: 20px; }
  .box-title-price h4 {
    font-size: 18px; }

  .box-content-price {
    margin-top: 10px; }

  .box-content-price ul li {
    margin-bottom: 8px;
    font-size: 14px; } }
#video {
  padding: 100px 0;
  background: url("../images/map-grey.png") no-repeat;
  background-size: 80%;
  background-position: center 70%; }

.content-video {
  margin-top: 70px; }

.img-video {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 700px; }
  .img-video::before {
    position: absolute;
    content: '';
    top: -25px;
    right: -25px;
    width: 100px;
    height: 100px;
    background: transparent;
    background-image: radial-gradient(circle at 1px 1px, #ddd 1px, transparent 0);
    background-size: 5px 5px;
    animation: shapescale 4s linear infinite; }
  .img-video::after {
    position: absolute;
    content: '';
    bottom: -35px;
    left: -35px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    background-image: radial-gradient(circle at 1px 1px, #ddd 1px, transparent 0);
    background-size: 5px 5px;
    animation: shapescale 4s linear infinite; }
  .img-video img {
    position: relative;
    width: 100%;
    z-index: 2; }

.button-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: #ff612f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3; }
  .button-play:hover {
    background: #1378c0; }
    .button-play:hover::before, .button-play:hover::after {
      border-color: #1378c0; }
  .button-play::before, .button-play::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 5px;
    border: 1px solid #ff612f;
    border-radius: 50%;
    transition: 0.5s; }
  .button-play::before {
    animation: ripple 2s linear infinite; }
  .button-play::after {
    animation: ripple 2s linear 1s infinite; }
  .button-play .bi {
    font-size: 42px;
    color: #fff; }

@keyframes ripple {
  0% {
    transform: scale(1); }
  75% {
    transform: scale(1.75);
    opacity: 1; }
  100% {
    transform: scale(2);
    opacity: 0; } }
@keyframes shapescale {
  0% {
    transform: scale(1); }
  25% {
    transform: scale(1.1); }
  50% {
    transform: scale(1.25); }
  75% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }
.shape-video {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  z-index: 1; }
  .shape-video::after {
    position: absolute;
    content: '';
    bottom: -30px;
    right: -30px;
    border-right: 70px solid #ff612f;
    border-bottom: 70px solid #ff612f;
    border-top: 70px solid transparent;
    border-left: 70px solid transparent; }
  .shape-video::before {
    position: absolute;
    content: '';
    bottom: -60px;
    right: -60px;
    border-right: 80px solid #1378c0;
    border-bottom: 80px solid #1378c0;
    border-top: 80px solid transparent;
    border-left: 80px solid transparent; }

.contact-video {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 30px 50px;
  margin: 0 auto;
  margin-top: 120px;
  width: 100%;
  max-width: 700px;
  border: 1px solid #ebebeb;
  border-radius: 5px; }

.content-contact-video h3 {
  font-size: 22px; }
.content-contact-video p {
  margin-bottom: 0;
  font-size: 15px; }

.button-contact-video a {
  display: inline-block;
  background: #233259; }
  .button-contact-video a:hover {
    background: #ff612f; }
    .button-contact-video a:hover .bi {
      color: #fff; }
  .button-contact-video a .bi {
    margin-right: 5px;
    color: #ff612f; }

@media only screen and (max-width: 767.98px) {
  .contact-video {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }

  .content-contact-video {
    text-align: center; }

  .button-contact-video {
    margin-top: 30px; } }
@media only screen and (max-width: 575.98px) {
  #video {
    padding: 50px 0; }

  .shape-video {
    display: none; }

  .img-video:before, .img-video:after {
    display: none; }

  .contact-video {
    margin-top: 50px; } }
#feature {
  padding: 100px 0; }

.wrap-feature {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px; }

.item-feature {
  padding: 30px;
  width: calc(calc(100% / 3) - 20px);
  border: 1px solid rgba(221, 221, 221, 0.5); }

.icon-feature {
  margin-bottom: 15px;
  color: #1378c0; }
  .icon-feature .bi {
    font-size: 32px; }

.content-feature h3 {
  margin-bottom: 8px;
  font-size: 18px; }
.content-feature p {
  margin-bottom: 0;
  line-height: 26px; }

@media only screen and (max-width: 991.98px) {
  .item-feature {
    width: calc(calc(100% / 2) - 20px); } }
@media only screen and (max-width: 767.98px) {
  .item-feature {
    width: calc(100%); } }
@media only screen and (max-width: 575.98px) {
  #feature {
    padding: 50px 0; }

  .wrap-feature {
    margin-top: 30px; }

  .item-feature {
    padding: 20px; }

  .content-feature h3 {
    font-size: 16px; }
  .content-feature p {
    font-size: 14px;
    line-height: 24px; } }
#contact {
  padding: 100px 0; }

.text-form {
  font-size: 18px;
  color: #5f6168; }

.form-contact .form-group {
  margin-bottom: 15px; }
  .form-contact .form-group label {
    margin-bottom: 5px; }
  .form-contact .form-group .form-control {
    padding: 13px 20px;
    border-radius: 4px; }
    .form-contact .form-group .form-control::placeholder {
      color: #969fba;
      opacity: 1; }
    .form-contact .form-group .form-control::-ms-input-placeholder {
      color: #969fba; }

.content-contact {
  padding-left: 50px; }
  .content-contact > span {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #ff612f;
    font-style: italic; }
    .content-contact > span:before {
      position: absolute;
      content: '';
      top: 50%;
      left: 0;
      width: 20px;
      height: 1px;
      background: #ff612f; }
  .content-contact h2 {
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 58px; }
  .content-contact p {
    font-size: 18px;
    color: #5f6168;
    line-height: 30px; }

.list-contact {
  margin-top: 30px; }
  .list-contact li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 20px;
    color: #5f6168; }
    .list-contact li i {
      margin-right: 25px;
      font-size: 28px; }

@media only screen and (max-width: 991.98px) {
  #contact {
    padding: 50px 0; }

  .content-contact {
    padding-top: 50px;
    padding-left: 0; }
    .content-contact h2 {
      margin-bottom: 10px;
      font-size: 24px;
      line-height: 24px; }
    .content-contact p {
      font-size: 16px;
      line-height: 28px; }

  .list-contact li {
    margin-bottom: 15px; }
    .list-contact li i {
      margin-right: 20px;
      font-size: 22px; } }
@media only screen and (max-width: 767.98px) {
  .form-contact .form-group {
    margin-bottom: 12px; }
    .form-contact .form-group label {
      font-size: 14px; }
    .form-contact .form-group .form-control {
      padding: 10px 15px;
      font-size: 13px; }

  .content-contact h2 {
    font-size: 20px; }
  .content-contact p {
    font-size: 14px;
    line-height: 24px; } }
@media only screen and (max-width: 575px) {
  #contact {
    padding-top: 30px; } }
#order {
  padding: 100px 0; }

#container-order {
  margin: 0 auto;
  width: 100%;
  max-width: 800px; }

.card-custom .card-header {
  padding: 15px 20px;
  font-size: 18px; }
.card-custom .card-body {
  padding: 30px; }

.form-group.required label::after {
  margin-left: 3px;
  content: '*';
  color: red; }
.form-group .form-control::-ms-input-placeholder {
  color: #bbb; }
.form-group .form-control::placeholder {
  color: #bbb; }

.item-list-order {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding-bottom: 25px;
  margin-bottom: 20px;
  border-bottom: 2px dashed rgba(221, 221, 221, 0.5); }
  .item-list-order:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }

.content-list-order h5 {
  font-size: 18px;
  font-weight: 600; }
.content-list-order ul {
  padding-left: 10px; }
  .content-list-order ul li {
    position: relative;
    color: #8791b0; }
    .content-list-order ul li::before {
      content: '-';
      margin-right: 10px; }

.radio-list-order input {
  margin-right: 15px;
  margin-top: 6px; }
.radio-list-order label {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600; }
.radio-list-order p {
  margin-bottom: 0;
  margin-left: 32px;
  color: #8791b0; }

.price-list-order {
  font-size: 18px;
  font-weight: 600; }

.wrap-durasi {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px; }

.item-durasi {
  position: relative;
  width: calc(calc(100% / 4) - 12px); }
  .item-durasi:hover input ~ .content-durasi {
    background: #1378c0;
    border-color: #1378c0; }
    .item-durasi:hover input ~ .content-durasi span, .item-durasi:hover input ~ .content-durasi h5 {
      color: #fff; }
  .item-durasi input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
    .item-durasi input:checked ~ .content-durasi {
      background: #1169a9;
      border-color: #1378c0; }
      .item-durasi input:checked ~ .content-durasi span, .item-durasi input:checked ~ .content-durasi h5 {
        color: #fff; }

.content-durasi {
  padding: 15px;
  border: 1px solid rgba(221, 221, 221, 0.7);
  border-radius: 4px; }
  .content-durasi span {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color: #8791b0; }
  .content-durasi h5 {
    margin: 0;
    font-size: 18px; }

.btn-submit-order {
  padding: 12px 25px; }

.summary-list li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding-bottom: 15px;
  margin-bottom: 17px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.6); }
  .summary-list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }

.content-summary-list h5 {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600; }
.content-summary-list p {
  margin-bottom: 0;
  font-size: 14px; }

.price-summary-list {
  text-align: right;
  white-space: nowrap; }

#summary-total {
  padding: 15px 20px;
  margin-top: 30px;
  font-size: 18px;
  color: #333;
  text-align: center;
  font-weight: 700;
  background: #d7ecfb;
  border-radius: 5px; }

.sticky-summary {
  position: sticky;
  top: 20px; }

@media only screen and (max-width: 767.98px) {
  #order {
    padding: 50px 0; }

  .card-custom .card-header {
    padding: 10px 15px;
    font-size: 16px; }
  .card-custom .card-body {
    padding: 20px; }

  .item-list-order {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    .item-list-order:first-child .price-list-order {
      margin-left: 0; }

  .price-list-order {
    margin-top: 10px;
    margin-left: 30px;
    color: #ff612f; }
    .price-list-order span {
      color: #787878; }

  .item-durasi {
    width: calc(calc(100% / 2) - 7.5px); } }
@media only screen and (max-width: 575.98px) {
  #order {
    padding: 30px 0; }

  .card-custom .card-header {
    font-size: 14px; }
  .card-custom .card-body {
    padding: 15px; }
    .card-custom .card-body .form-group label {
      font-size: 14px; }
    .card-custom .card-body .form-group .form-control {
      font-size: 14px; }

  .content-list-order h5 {
    font-size: 16px; }
  .content-list-order ul li {
    font-size: 14px; }

  .price-list-order {
    font-size: 16px; }

  .radio-list-order label {
    font-size: 16px; }
  .radio-list-order p {
    font-size: 14px; }

  .wrap-durasi {
    gap: 0; }

  .item-durasi {
    margin-bottom: 15px;
    width: 100%; }

  .content-summary-list h5 {
    font-size: 14px; }
  .content-summary-list p {
    font-size: 13px; }

  .price-summary-list {
    font-size: 14px; }

  #summary-total {
    padding: 12px 10px;
    font-size: 14px; }

  .btn-submit-order {
    display: block;
    width: 100%; } }
#payment-page {
  padding: 100px 0; }

.header-payment-status {
  text-align: center; }
  .header-payment-status.failed h3 {
    color: #9b2531; }
  .header-payment-status.failed .icon-status .bi {
    color: #b02a37; }
  .header-payment-status h3 {
    color: #137558; }

.icon-status .bi {
  font-size: 72px;
  color: #1aa179; }

footer {
  padding-top: 100px;
  background: #151d34; }

.wrap-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  gap: 30px;
  padding-bottom: 40px; }

.item-footer:first-child {
  width: 400px; }
  .item-footer:first-child p {
    font-size: 16px;
    color: #fff;
    line-height: 28px; }
.item-footer h3 {
  margin-bottom: 25px;
  font-size: 20px;
  color: #fff;
  font-weight: 600; }

.logo-footer {
  display: block;
  margin-bottom: 20px; }
  .logo-footer img {
    width: 150px; }

.footer-list-menu li {
  position: relative;
  margin-bottom: 15px; }
  .footer-list-menu li::before {
    position: absolute;
    content: '\F285';
    font-family: 'bootstrap-icons';
    font-size: 14px;
    color: #ff612f;
    font-weight: 700; }
  .footer-list-menu li a {
    display: block;
    padding-left: 27px;
    font-size: 16px;
    color: #fff; }

.contact-item-footer li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 15px;
  color: #fff; }
  .contact-item-footer li .bi {
    margin-right: 15px;
    color: #ff612f; }

.copyright {
  padding: 30px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1); }

@media only screen and (max-width: 991.98px) {
  .wrap-footer {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

  .item-footer:first-child {
    width: 100%; } }
@media only screen and (max-width: 767.98px) {
  .item-footer {
    width: 100%; } }
@media only screen and (max-width: 575.98px) {
  footer {
    padding-top: 50px; }

  .wrap-footer {
    padding-bottom: 20px; }

  .item-footer:first-child p {
    font-size: 14px;
    line-height: 24px; }
  .item-footer h3 {
    margin-bottom: 20px;
    font-size: 18px; }

  .footer-list-menu li::before {
    font-size: 13px; }
  .footer-list-menu li a {
    font-size: 14px; }

  .contact-item-footer li {
    font-size: 14px; }

  .copyright {
    padding: 20px 0;
    font-size: 13px; } }

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