/*======================================== config =================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: 0.3s all !important;
  line-height: normal;
}

a:hover,
a:focus {
  text-decoration: none;
}

button,
input[type=submit] {
  cursor: pointer;
  outline: none;
}

body {
  background: #FFFFFF;
  color: #333333;
  font-size: 16px;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

body.active {
  overflow: hidden;
}

body img {
  transition: 0.34s all !important;
  max-width: 100%;
  display: inline !important;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 60px;
}

@media (max-width: 1023px) {
  .container {
    max-width: 100%;
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

.title {
  margin-bottom: 32px;
}

@media (max-width: 1200px) {
  .title {
    margin-bottom: 24px;
  }
}

.title h2 {
  font-size: 40px;
  font-weight: normal;
}

@media (max-width: 1400px) {
  .title h2 {
    font-size: 32px;
  }
}

@media (max-width: 1023px) {
  .title h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .title h2 {
    font-size: 24px;
  }
}

.title h2 span {
  font-weight: bold;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumbs ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumbs ul li:after {
  content: "";
  width: 12px;
  height: 24px;
  background: url("../images/arrow-right.svg") no-repeat center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumbs ul li:last-child:after {
  display: none;
}

.breadcrumbs ul li:last-child a {
  color: #FF5100;
}

.breadcrumbs a {
  color: #FCD9D5;
}

.btn-main a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #FF5100;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 8px;
}

@media (max-width: 1023px) {
  .btn-main a {
    padding: 8px 20px;
    font-weight: 600;
  }
}

@media (max-width: 1364px) {
  header .container {
    padding: 0 20px;
  }
}

@media (max-width: 1364px) {
  header {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  header {
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  header .logo img {
    max-width: 160px;
  }
}

.head-menu .menu ul li {
  position: relative;
}

.head-menu .menu ul li:hover .submenu {
  top: 100px;
  opacity: 1;
  pointer-events: unset;
}

.head-menu .menu a {
  display: flex;
  align-items: center;
  height: 100px;
}

.submenu {
  width: 304px;
  position: absolute;
  left: calc(50% - 152px);
  background: #fff;
  padding: 28px;
  border-radius: 0 0 24px 24px;
  z-index: 2;
  box-shadow: 0px -1px 12px 0px rgba(0, 0, 0, 0.1019607843);
  transition: 0.4s all !important;
  opacity: 0;
  pointer-events: none;
  top: 110px;
}

.submenu ul {
  display: block !important;
}

.submenu ul li {
  margin-bottom: 16px;
}

.submenu ul li:last-child {
  margin-bottom: 0;
}

.submenu a {
  height: auto !important;
  font-weight: bold;
  gap: 8px;
  display: flex;
}

.submenu a .icon {
  flex: 0 0 48px;
  max-width: 48px;
  border-radius: 8px;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submenu a .icon img {
  filter: brightness(0);
  -webkit-filter: brightness(0);
}

.submenu a label {
  display: block;
  font-size: 14px;
  font-weight: normal;
}

.submenu a:hover .icon {
  border: 1px solid #FF5100;
  background: #FCD9D5;
}

.submenu a:hover .icon img {
  filter: unset;
  -webkit-filter: unset;
}

.item-head-top:hover .submenu {
  top: 48px;
  opacity: 1;
  pointer-events: unset;
}

.item-head-top .submenu {
  top: 60px;
  color: #333333;
}

.item-head-top .submenu a:hover {
  color: #FF5100;
}

.overflow-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transition: 0.4s all !important;
}

.overflow-modal.active {
  opacity: 0.6;
  pointer-events: unset;
}

.modal-dialog {
  opacity: 0;
  pointer-events: none;
  margin-top: 20px;
  transition: 0.4s all !important;
}

.modal-dialog.active {
  opacity: 1;
  pointer-events: unset;
  margin-top: 0;
}

.head-menu ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.head-menu a:hover {
  color: #FF5100;
}

.head-menu a.active {
  color: #FF5100;
  font-weight: bold;
}

@media (max-width: 767px) {
  .list-cate-blog {
    position: relative;
  }
}

.list-cate-blog a {
  background: #fff;
  border-radius: 48px;
  caret-color: #333333;
}

.list-cate-blog a.active {
  color: #fff !important;
  background: #FF5100;
}

.list-cate-blog a:hover {
  color: #FF5100;
}

@media (max-width: 1023px) {
  .list-cate-blog ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.single-text {
  max-width: 842px;
  margin: 0 auto;
  width: 100%;
}

.single-text h2,
.single-text h3,
.single-text h4,
.single-text h5,
.single-text h6 {
  margin-bottom: 24px;
  font-weight: bold;
}

.single-text h2 {
  font-size: 24px;
}

@media (max-width: 767px) {
  .single-text h2 {
    font-size: 20px;
  }
}

.single-text h3 {
  font-size: 22px;
}

@media (max-width: 767px) {
  .single-text h3 {
    font-size: 19px;
  }
}

.single-text h4 {
  font-size: 20px;
}

@media (max-width: 767px) {
  .single-text h4 {
    font-size: 18px;
  }
}

.single-text h5 {
  font-size: 18px;
}

@media (max-width: 767px) {
  .single-text h5 {
    font-size: 17px;
  }
}

.single-text h6 {
  font-size: 16px;
}

@media (max-width: 767px) {
  .single-text h6 {
    font-size: 15px;
  }
}

.single-text p {
  margin-bottom: 24px;
}

.single-text p:last-child {
  margin-bottom: 0;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

.un-looking .icon {
  pointer-events: none;
}

.un-looking select {
  padding: 0 36px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 32px;
}

.un-looking input {
  width: 100%;
  padding: 0 36px;
  height: 32px;
  outline: none;
}

.text-main h2,
.text-main h3,
.text-main h4,
.text-main h5,
.text-main h6 {
  margin-bottom: 16px;
}

.text-main h2 {
  font-size: 40px;
}

@media (max-width: 1400px) {
  .text-main h2 {
    font-size: 32px;
  }
}

@media (max-width: 1023px) {
  .text-main h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .text-main h2 {
    font-size: 24px;
  }
}

.text-main p {
  margin-bottom: 24px;
}

@media (max-width: 1400px) {
  .text-main p {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .text-main p {
    margin-bottom: 12px;
  }
}

.text-main p:last-child {
  margin-bottom: 0;
}

.box-shadow {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1019607843);
}

.item-quesstion {
  transition: 0.4s all !important;
}

.item-quesstion.active {
  border-radius: 24px;
}

.item-quesstion.active .head-quesstion {
  font-size: 24px;
}

@media (max-width: 1200px) {
  .item-quesstion.active .head-quesstion {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .item-quesstion.active .head-quesstion {
    font-size: 16px;
  }
}

.packages-home li:first-child a {
  min-width: 162px;
}

@media (max-width: 767px) {
  .packages-home li:first-child a {
    min-width: auto;
  }
}

.packages-home a {
  border: 1px solid transparent;
}

.packages-home a.active {
  font-weight: bold;
  color: #FF5100;
  border-color: #FF5100;
}

.packages-home a:hover {
  font-weight: bold;
  color: #FF5100;
  border-color: #FF5100;
}

.swiper-package,
.swiper-bundles {
  padding-left: calc((100% - 1280px) / 2);
}

@media (max-width: 1400px) {

  .swiper-package,
  .swiper-bundles {
    padding-left: 60px;
  }
}

@media (max-width: 1023px) {

  .swiper-package,
  .swiper-bundles {
    padding-left: 0;
  }
}

.swiper-package-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.swiper-package-dots span {
  width: 40px;
  height: 10px;
  background: #ffffff;
  opacity: 0.5;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .swiper-package-dots span {
    width: 12px;
    height: 4px;
  }
}

.swiper-package-dots span.swiper-pagination-bullet-active {
  opacity: 1;
}

.list-package-template .item-pack:nth-child(2n) .item:nth-child(2n) {
  order: 1;
}

.list-package-template .item-pack:nth-child(2n) .item:nth-child(2n+1) {
  order: 2;
}

@media (max-width: 767px) {
  .list-package-template .item-pack:nth-child(2n+1) .item:nth-child(2n) {
    order: 1;
  }

  .list-package-template .item-pack:nth-child(2n+1) .item:nth-child(2n+1) {
    order: 2;
  }
}

@media (max-width: 767px) {
  .loadmore-main svg {
    width: 20px;
    height: 20px;
  }
}

.content-table-device table th {
  text-align: left !important;
  padding: 12px 20px;
  background: #FF5100;
  color: #fff;
}

.content-table-device td {
  padding: 12px 20px;
}

.swiper-launch .swiper-slide {
  transform: scale(0.8);
  transition: 0.4s all !important;
}

.swiper-launch .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

@media (min-width: 768px) {
  .item-corporate:nth-child(2n) .item:nth-child(2) {
    order: 1;
  }

  .item-corporate:nth-child(2n) .item:first-child {
    order: 2;
  }
}

.sidebar-vuna a {
  color: #fff;
}

.sidebar-vuna a.active {
  background: #FF5100;
}

.item-vuna {
  border: 1px solid #FF5100;
}

.item-vuna .desc {
  background: #fff;
  color: #FF5100;
}

.swiper-vuna .swiper-slide {
  transition: 0.4s all !important;
  transform: scale(0.85);
}

.swiper-vuna .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

.swiper-vuna .swiper-slide.swiper-slide-active .item-vuna .desc {
  background: #FF5100;
  color: #fff;
}

.swiper-vuna .swiper-slide.swiper-slide-active .item-vuna .desc path {
  fill: #fff;
}

.block-slide-vuna .swiper-package-dots {
  margin-top: 32px;
}

@media (max-width: 767px) {
  .block-slide-vuna .swiper-package-dots {
    margin-top: 20px;
  }
}

.block-slide-vuna .swiper-package-dots span {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #fff;
}

.block-slide-vuna .swiper-package-dots span.swiper-pagination-bullet-active {
  background: #FF5100;
  width: 20px;
  border-radius: 10px;
}

/*# sourceMappingURL=style.css.map */

.stt-valid-error input {
  border-bottom: 3px solid #E50000;
}

.stt-valid-error p {
  color: #E50000;
  margin-top: 4px;
  font-style: italic;
  font-size: 14px;
}

.number-phone::placeholder {
  color: #737373;
  font-size: 18px;
  font-weight: normal;
}

.breadcrumbs-pay a {
  color: #333333;
}

.breadcrumbs-pay ul li:after {
  filter: brightness(0);
  -webkit-filter: brightness(0);
}

.breadcrumbs-pay ul li:last-child {
  color: #FF5100;
}


.h-payment {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.item-method {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.block-method {
  margin-bottom: 32px;
}

.block-method:last-child {
  margin: 0;
}

.content-playment {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.payment-left {
  flex: 0 0 calc(100% - 400px);
  max-width: calc(100% - 400px);
  width: 100%;
  padding-right: 100px;
}

.payment-right {
  flex: 0 0 400px;
  max-width: 400px;
  width: 100%;
}

.block-info-payment {
  border-radius: 12px;
}

.block-info-payment a {
  color: #FF5100;
  text-decoration: underline !important;
}

.amount {
  border-bottom: 1px dashed #F5F5F5;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.amount span:first-child {
  color: #737373;
}

.total-payment span:last-child {
  font-size: 24px;
  font-weight: bold;
}

.btn_payment input {
  width: 100%;
  text-align: center;
  background: #FF5100;
  height: 44px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.block-info-payment .desc {
  color: #737373;
  font-size: 14px;
}

.item-method input {
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
  opacity: 0;
  transform: scale(1.1);
}

.item-method label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  z-index: 2;
  cursor: pointer;
}

.item-method input:checked {
  opacity: 1;
  accent-color: #FF5100;
}

.item-method input:checked+label {
  border: 1px solid #FF5100;
}

.section-payment {
  padding: 32px 0 100px 0;
}

@media (max-width: 1400px) {
  .payment-left {
    padding-right: 40px;
  }

  .h-payment {
    font-size: 20px;
  }

  .item-method {
    font-size: 18px;
  }
}

@media (max-width: 1023px) {
  .content-playment {
    display: block;
  }

  .payment-left {
    padding: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .h-payment {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .item-method {
    font-size: 16px;
    padding: 16px;
    font-weight: 600;
  }

  .item-method .avr {
    flex: 0 0 48px;
    max-width: 48px;
  }

  .total-payment span:last-child {
    font-size: 20px;
  }

  .section-payment {
    padding: 32px 0 40px 0;
  }
}

.slide-seft {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.slide-seft.active {
  pointer-events: unset;
  opacity: 1;
  position: relative;
}

.slide-seft .swiper-seft .swiper-slide {
  display: block !important;
}

.block-slide-vuna img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.sidebar-vuna ul li a img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.sidebar-vuna ul li a.active img {
  filter: brightness(1);
  -webkit-filter: brightness(1);
}

.sidebar-vuna ul li a.active .icon {
  background-color: #fff;
  border-radius: 100%;
}

.item-slide-vuna {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: unset;
  transition: .3s all !important;
}

.item-slide-vuna.active {
  pointer-events: unset;
  opacity: 1;
  position: relative;
}

.swiper-vuna .swiper-slide {
  display: block !important;
}