html {
  scroll-behavior: smooth;
}

.btn {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 1rem;
  padding: 10px 15px;
  user-select: none;
}

button {
  cursor: pointer;
}

.btn:focus, .btn:active, .btn.active {
  box-shadow: none !important;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button, select {
  text-transform: none;
}

.btn-primary {
  background-color: #2780e3;
  border-color: #2780e3;
  color: #fff;
}

.btn-primary:hover {
  background-color: #1967be;
  border-color: #1862b5;
  color: #fff;
}

.btn-success {
  background-color: #3fb618;
  border-color: #3fb618;
  color: #fff;
}

.btn-success:hover {
  background-color: #2f8912;
  border-color: #2c8011;
  color: #fff;
}

.btn-info {
  background-color: #9954bb;
  border-color: #9954bb;
  color: #fff;
}

.btn-info:hover {
  background-color: #7e3f9d;
  border-color: #783c96;
  color: #fff;
}

.btn-warning {
  background-color: #ff7518;
  border-color: #ff7518;
  color: #fff;
}

.btn-warning:hover {
  background-color: #e45c00;
  border-color: #da5800;
  color: #fff;
}

.btn-danger {
  background-color: #ff0039;
  border-color: #ff0039;
  color: #fff;
}

.btn-danger:hover {
  background-color: #cc002e;
  border-color: #c2002b;
  color: #fff;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

a.disabled, btn.disabled, .btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline {
  display: inline !important;
}

.d-block {
  display: block !important;
}

.d-none-i {
  display: none !important;
}

.d-none {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  color: #333;
  display: none;
  list-style: none;
  margin: 0;
  opacity: 0;
  padding: 8px 0;
  position: absolute;
  text-align: left;
  transition: all 0.1s ease;
  visibility: hidden;
  z-index: 1000;
}

.show > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.dropdown-item {
  background-color: transparent;
  border: 0;
  clear: both;
  color: #333;
  display: block;
  font-weight: 400;
  padding: 5px 20px;
  text-align: inherit;
  transition: 0.15s;
  white-space: nowrap;
  width: 100%;
}

.dropdown-item:hover {
  background-color: #eee;
}

.dropdown-item.active {
  background-color: #0078c6;
  color: #fff;
}

.d-flex {
  display: -ms-flexbox;
  display: flex;
}

.d-inline-flex {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.align-items-center {
  -ms-flex-align: center;
  align-items: center;
}

.align-content-between {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.align-content-center {
  -ms-flex-line-pack: center;
  align-content: center;
}

.align-items-end {
  -ms-flex-align: end;
  align-items: flex-end;
}

.justify-content-between {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-content-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-column {
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-1 {
  -ms-flex: 1 0 auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.align-self-start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.align-self-end {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox;
    display: flex;
  }
}
input[type=color], input[type=date], input[type=datetime], input[type=datetime-local], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, select:focus, textarea {
  font-size: 16px;
}

.form-control {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 5px;
  color: #495057;
  display: block;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 12px;
  width: 100%;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control::-moz-placeholder {
  color: #999;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control:-moz-placeholder {
  color: #999;
}

.form-control, .form-control:focus {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-control:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  border-color: #80bdff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  outline: 0;
}

img {
  border-style: none;
  display: block;
  height: auto;
  max-width: 100%;
  opacity: 1;
  overflow: hidden;
}

img.lazy, img.lazyloading {
  color: transparent;
  opacity: 0;
}

.input-group {
  -ms-flex-align: stretch;
  -ms-flex-wrap: wrap;
  align-items: stretch;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}

.input-group > .form-control {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: 0;
  position: relative;
  width: 1%;
}

.input-group-append, .input-group-prepend {
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend .btn, .input-group-append .btn {
  padding: 10px 12px;
}

.input-group .form-control {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group .input-group-prepend + .form-control {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

#loader-overlay {
  background-color: rgba(0, 0, 0, 0.2);
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1050;
}

#loader-container {
  -webkit-align-items: center;
  -webkit-transform: translate(-50%, -50%);
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  left: 50%;
  margin: 0;
  padding: 8px 12px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

#loader-container span {
  margin-left: 6px;
}

#loader-container .loader {
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #ed8f03;
  height: 30px;
  width: 30px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
#modal-backdrop {
  -webkit-transition: all 0.15s linear;
  background-color: #000;
  bottom: 0;
  cursor: pointer;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.15s linear;
  visibility: hidden;
  width: 100%;
  z-index: 9;
}

#modal-backdrop.show {
  opacity: 0.5;
  visibility: visible;
}

.fade:not(.show) {
  opacity: 0;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  left: 0;
  outline: 0;
  overflow: hidden;
  padding: 10px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.modal .close {
  cursor: pointer;
  right: 5px;
  top: 5px;
}

.modal-dialog {
  background-color: #fff;
  border-radius: 5px;
  margin: 0 auto;
  outline: 0;
  position: relative;
  width: 100%;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal-title {
  font-weight: 600;
  margin-bottom: 0;
}

.modal-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 15px;
  position: relative;
}

@media (min-width: 576px) {
  .modal-dialog {
    margin: 10px auto;
    max-width: 500px;
  }
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-3-dots-mobile {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-nowrap {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .text-3-dots-mobile {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }
}
.toast-title {
  font-weight: 500;
}

.toast-message {
  -ms-word-wrap: break-word;
  font-size: 15px;
  word-wrap: break-word;
}

.toast-message button, .toast-message label {
  color: #fff;
}

.toast-message button:hover {
  color: #ccc;
  text-decoration: none;
}

.toast-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 20px;
  position: absolute;
  right: 6px;
  top: 6px;
  width: 20px;
}

.toast-close:hover, .toast-close:focus {
  opacity: 0.8;
}

.toast-close:before, .toast-close:after {
  background: rgba(255, 255, 255, 0.8);
  content: "";
  height: 2px;
  left: 0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 100%;
}

.toast-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.toast-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#toast-container {
  display: none;
  margin-left: 5px;
  max-width: 280px;
  position: fixed;
  right: 5px;
  top: 5px;
  width: 100%;
  z-index: 11;
}

#toast-container > div {
  color: #fff;
  margin: 0 0 15px;
  opacity: 1;
  overflow: hidden;
  padding: 12px 30px 12px 15px;
  position: relative;
}

#toast-container > :hover {
  cursor: pointer;
  opacity: 1;
}

.toast {
  background-color: #030303;
  border-radius: 2px;
  display: none;
}

.toast-success {
  background-color: #449d44;
  color: #fff;
}

.toast-error {
  background-color: #d9534f;
  color: #fff;
}

.toast-warning {
  background-color: #ffa500;
  color: #fff;
}

.affix {
  top: 65px;
}

@media (min-width: 992px) {
  .affix-bottom {
    bottom: 0 !important;
    position: absolute !important;
    top: auto !important;
  }
  .affix {
    position: fixed;
    top: 10px;
  }
  .no-affix.affix, .no-affix.affix-bottom {
    position: static !important;
  }
}
.breadcrumb {
  background-color: transparent;
  color: #333;
  font-size: 1rem;
  list-style: none;
  margin-top: 15px;
  padding: 0;
}

.breadcrumb li {
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.breadcrumb li + li {
  padding-left: 0;
}

.breadcrumb a {
  color: #333;
  display: block;
}

.breadcrumb a:hover {
  color: #005da2;
}

.breadcrumb li, .breadcrumb a {
  font-size: 14px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .breadcrumb {
    margin-top: 15px;
  }
}
.container {
  margin: 0 auto;
  max-width: 1300px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.container.small {
  max-width: 1200px;
}

.container.big {
  max-width: 1400px;
}

@media (min-width: 992px) {
  .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-size: inherit;
  font-weight: normal;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

iframe {
  border: 0 none;
  width: 100%;
}

.fb-like.fb_iframe_widget {
  display: block;
  text-align: right;
}

.fb_iframe_widget_fluid_desktop iframe {
  width: 100% !important;
}

.input-group input {
  width: calc(100% - 46px);
}

.input-group-append {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  align-items: center;
  justify-content: center;
  width: 46px;
}

.line-clamp-2 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
}

.line-clamp-3 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.pagination-container {
  margin-top: 25px;
  text-align: center;
}

.pagination {
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: normal;
  margin: 0;
  padding: 0;
}

.pagination li {
  display: block;
  margin: 4px;
}

.pagination li a, .pagination li span {
  background-color: #f3f4f5;
  border: 0 none;
  border-radius: 4px;
  color: rgba(12, 18, 28, 0.6);
  display: block;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  position: relative;
  transition: 0.15s;
  width: 40px;
}

.pagination li a:hover {
  background-color: #dadada;
}

.pagination li.active span {
  background-color: var(--bg-color);
  color: var(--font-color);
}

#left-sidebar, #middle-sidebar, #right-sidebar {
  width: 100%;
}

#right-sidebar {
  margin-top: 20px;
}

@media (min-width: 992px) {
  #left-sidebar {
    width: 100%;
  }
  #right-sidebar {
    -ms-flex-order: 2;
    margin-top: 25px;
    order: 2;
    width: 350px;
  }
  #middle-sidebar {
    -ms-flex-order: 3;
    order: 3;
  }
  .sidebar {
    background-color: #fff;
    padding: 10px;
  }
  .position-sticky, .position-sticky.lazyloaded {
    position: sticky;
    top: 10px;
  }
}
.swipe {
  position: relative;
}

.swipe .btn-slider {
  display: none;
}

.swipe-container {
  overflow: hidden;
  position: relative;
}

.swipe-slider {
  -ms-flex-align: center;
  -webkit-transition: all 500ms;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  position: relative;
  transition: all 500ms;
}

.swipe-slider .item {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .swipe-slider {
    -webkit-transform: translateX(var(--tx, 0));
    overflow-x: visible;
    transform: translateX(var(--tx, 0));
  }
  .swipe .btn-slider {
    -webkit-transition: all 0.2s;
    background-color: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    height: 50px;
    margin-top: -25px;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transition: all 0.2s;
    width: 50px;
    z-index: 3;
  }
  .swipe .btn-slider:hover {
    background-color: rgba(0, 0, 0, 0.9);
  }
  .swipe .btn-slider.prev {
    left: 0;
  }
  .swipe .btn-slider.next {
    right: 0;
  }
  .swipe .btn-slider.hide {
    display: none !important;
  }
  .swipe .btn-slider .svg-icon {
    -webkit-transform: translate(-50%, -50%);
    display: block;
    height: 15px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
  }
  .swipe .btn-slider .svg-icon path {
    fill: #fff;
  }
}
table {
  background-color: transparent;
  border-collapse: collapse;
  width: 100%;
}

.table-responsive {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  display: block;
  overflow-x: auto;
  width: 100%;
}

.table-responsive table th, .table-responsive table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
}

.content-body {
  color: #333;
  font-size: 18px;
  line-height: 1.7;
}

.content-body p {
  min-height: 10px;
}

.content-body ol, .content-body ul {
  padding-left: 30px;
}

.content-body li {
  margin: 0 0 8px;
}

.content-body div, .content-body p, .content-body ol, .content-body ul, .content-body blockquote, .content-body .table-responsive, .content-body h2, .content-body h3, .content-body h4, .content-body h5, .content-body h6, .content-col-2 {
  margin: 0 0 16px;
}

.content-body h2 {
  font-size: 24px;
  line-height: 1.5;
}

.content-body h3 {
  font-size: 21px;
  line-height: 1.6;
}

.content-body h4, .content-body h5 {
  font-size: 18px;
  line-height: 1.7;
}

.content-body blockquote {
  background-color: #cfecff;
  border-left: 4px solid #91d3ff;
  border-radius: 5px;
  padding: 16px 20px;
}

.content-body img {
  display: block;
  margin: 0 auto;
}

.content-body .img-caption {
  color: #808080;
  display: block;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: -12px;
  padding: 0 5px;
  text-align: center;
}

.content-body table {
  margin-left: auto;
  margin-right: auto;
}

.content-body pre {
  background-color: #f6f8fa;
  border: 1px solid #ededed;
  border-radius: 3px;
  font-size: 17px;
  overflow: auto;
  padding: 16px 25px;
  white-space: normal;
}

.content-body :first-child {
  margin-top: 0;
}

.content-body :last-child {
  margin-bottom: 0;
}

.content-body p img + img {
  margin-top: 16px;
}

@media (min-width: 1200px) {
  .content-body table {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .content-body .content-col {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    margin-left: -8px;
    margin-right: -8px;
  }
  .content-body .content-col-2 {
    width: 50%;
  }
  .content-body .content-col-3 {
    width: 33.3333333333%;
  }
  .content-body .content-col-4 {
    width: 25%;
  }
  .content-body .content-col > div {
    margin: 0;
    padding: 0 8px;
  }
}
.content-body iframe {
  height: 60vw;
  max-height: 400px;
}

.content-body iframe.video-youtube {
  display: block;
  height: 53vw;
  margin: 0 auto;
  max-height: 450px;
  max-width: 800px;
  width: 100%;
}

.content-body h2, .content-body h3, .content-body h4, .content-body h5, .content-body h6 {
  font-weight: var(--fw-4);
}

@media (max-width: 576px) {
  .content-body img {
    margin-left: -15px;
    max-width: none;
    width: calc(100% + 30px);
  }
  .content-body blockquote img {
    margin-left: 0;
    max-width: 100%;
    width: auto;
  }
}
@media (min-width: 460px) {
  .content-body iframe.video-youtube {
    height: 54vw;
  }
}
@media (min-width: 992px) {
  .content-body table {
    font-size: 16px;
    line-height: 1.6;
  }
}
.content-body td img {
  margin: 0;
  width: 100%;
}

.ripple-container {
  height: 100px;
  width: 100px;
}

.ripple {
  -webkit-animation: ripple 1.8s infinite;
  animation: ripple 1.8s infinite;
  background-color: var(--d-hotline-ripple-color);
  border-radius: 50%;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0);
    opacity: 1;
    transform: scale(0);
    visibility: visible;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
    transform: scale(1);
    visibility: hidden;
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(0);
    opacity: 1;
    transform: scale(0);
    visibility: visible;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
    transform: scale(1);
    visibility: hidden;
  }
}
.ripple:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.ripple:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.ar-dt {
  font-size: 14px;
  margin-top: 0;
}

.ar-article3 section:nth-child(2) {
  margin-top: 20px;
}

.ar-article3 .item {
  width: 100%;
}

.ar-article3 .item:nth-child(n+2), .ar-article3 section:nth-child(3) .item:first-child {
  border-top: 1px solid #e4e4e4;
  padding: 15px 0;
}

.ar-article3 .item:nth-child(n+2) .img-info, .ar-article3 section:nth-child(3) .item:first-child .img-info {
  max-width: 220px;
  width: 35%;
}

.ar-article3 img {
  border-radius: 2px;
}

.ar-article3 .item:nth-child(n+2) .info, .ar-article3 section:nth-child(3) .item:first-child .info {
  margin-left: 10px;
  min-width: calc(100% - 230px);
  width: calc(65% - 10px);
}

.ar-article3 .title {
  color: #333;
  display: block;
}

.ar-article3 .title h2 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 16px;
  font-weight: var(--fw-3);
  line-height: 1.4;
  overflow: hidden;
}

.ar-article3 .title:hover {
  color: var(--title-color-1);
}

.ar-article3 .item:nth-child(n+2) .datetime, .ar-article3 section:nth-child(3) .item:first-child .datetime {
  display: none;
}

@media (min-width: 600px) {
  .ar-article3 {
    margin: 10px -10px 0;
  }
  .ar-article3 .item {
    float: left;
    margin: 0 10px;
    width: calc(50% - 20px);
  }
}
@media (min-width: 992px) {
  .ar-article3 section {
    margin: 0 10px !important;
    width: calc(33.3333333333% - 20px);
  }
  .ar-article3 .item {
    float: none;
    margin: 0;
    position: relative;
    width: 100%;
  }
  .ar-article3 .item:first-child .info {
    margin: 0;
  }
  .ar-article3 .item:nth-child(n+2) {
    border-top: 1px solid #e4e4e4;
    padding: 15px 0;
  }
  .ar-article3 .info {
    margin-top: 0 !important;
  }
  .ar-article3 section:not(:nth-child(3)) .item:first-child .info {
    background-color: rgba(0, 0, 0, 0.75);
    bottom: 0;
    left: 0;
    margin: 0 !important;
    padding: 10px 15px;
    position: absolute;
    right: 0;
  }
  .ar-article3 section:not(:nth-child(3)) .item:first-child .title {
    color: #fff;
  }
  .ar-article3 section:not(:nth-child(3)) .item:first-child .title:hover {
    color: rgba(255, 255, 255, 0.75);
  }
  .ar-article3 section:not(:nth-child(3)) .item:first-child .datetime {
    color: #b4b4b4;
    display: block;
  }
}
.ar-article3 section:not(:nth-child(3)) .item:first-child .img-info, .ar-article3 section:not(:nth-child(3)) .item:first-child .info {
  width: 100%;
}

.ar-article3 section:not(:nth-child(3)) .item:first-child .info {
  margin: 10px 0;
}

.ar-article3 section:not(:nth-child(3)) .item:first-child .title h2 {
  font-size: 18px;
  line-height: 1.25;
}

@media (min-width: 600px) {
  .ar-article3 section:not(:nth-child(3)) .item:nth-child(2) {
    border-top: 0 none;
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .ar-article3 section:not(:nth-child(3)) .item:nth-child(2) {
    border-top: 1px solid #e4e4e4;
    padding-top: 15px;
  }
}
@media (min-width: 992px) {
  .ar-article3 section:nth-child(3) {
    -ms-flex-line-pack: justify;
    -ms-flex-wrap: wrap;
    align-content: space-between;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
  .ar-article3 section:nth-child(3) .item:first-child {
    border-top: 0 none;
    padding-top: 0;
  }
  .ar-article3 section:nth-child(3) .item:last-child {
    display: none;
  }
}
.ar-none .grid {
  margin-top: -30px;
}

.ar-none .item {
  background-color: #fff;
  border-radius: 0.125rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0 10px 50px;
  margin-top: 30px;
  width: 100%;
}

.ar-none img:hover {
  opacity: 0.7;
}

.ar-none .title, .ar-none .datetime, .ar-none .description, .ar-none .footer {
  padding: 0 20px;
}

.ar-none .title {
  color: #333;
  display: block;
  margin-top: 15px;
  position: relative;
}

.ar-none .title:hover {
  color: var(--title-color);
}

.ar-none .title h2 {
  font-size: 20px;
  line-height: 1.4;
}

.ar-none .description {
  color: #6e6e6e;
  font-size: 16px;
  margin-top: 12px;
  padding-bottom: 10px;
}

.ar-none .footer {
  border-top: 1px solid #eee;
  color: var(--title-color);
  margin-top: 15px;
}

.ar-none .footer:hover {
  color: var(--title-color);
}

.ar-none .footer span {
  display: block;
  font-size: 16px;
  padding: 15px 0;
}

.ar-none .footer svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  height: 32px;
  position: relative;
  stroke: var(--title-color);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  vertical-align: middle;
  width: 32px;
}

.ar-none .footer:hover svg {
  -webkit-transform: translate3d(5px, 0, 0);
  stroke: var(--title-color);
  transform: translate3d(5px, 0, 0);
}

.ar-none .footer circle {
  -webkit-transition: stroke-dashoffset 0.3s ease;
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
  transition: stroke-dashoffset 0.3s ease;
}

.ar-none .footer:hover circle {
  stroke-dashoffset: 0;
}

@media (min-width: 480px) {
  .ar-none .grid {
    margin: -20px -10px 0;
  }
  .ar-none .item {
    margin: 20px 10px 0;
    width: calc(50% - 20px);
  }
  .ar-none .title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .ar-none .item {
    width: calc(33.3333333333% - 20px);
  }
}
@media (min-width: 992px) {
  .ar-none .grid {
    margin: -30px -15px 0;
  }
  .ar-none .item {
    margin: 30px 15px 0;
    width: calc(25% - 30px);
  }
  .ar-none .title {
    -webkit-box-orient: inline-axis;
    -webkit-line-clamp: none;
    display: block;
    overflow: visible;
  }
}
.ar-article1 .grid {
  margin-top: -30px;
}

.ar-article1 .item {
  margin-top: 30px;
  width: 100%;
}

.ar-article1 .img-info, .ar-article1 img {
  border-radius: 15px;
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  width: 100%;
  z-index: 1;
}

.ar-article1 img:hover {
  opacity: 0.7;
}

.ar-article1 .title {
  background: #fff;
  border-radius: 0 0 5px 5px;
  color: #333;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 6%;
  min-height: 60px;
  padding: 10px;
  text-align: center;
}

.ar-article1 .title:hover {
  color: var(--title-color);
}

@media (min-width: 480px) {
  .ar-article1 .grid {
    margin: -20px -10px 0;
  }
  .ar-article1 .item {
    margin: 20px 10px 0;
    width: calc(50% - 20px);
  }
}
@media (min-width: 768px) {
  .ar-article1 .item {
    width: calc(33.3333333333% - 20px);
  }
}
@media (min-width: 992px) {
  .ar-article1 .grid {
    margin: -30px -15px 0;
  }
  .ar-article1 .item {
    margin: 30px 15px 0;
    width: calc(33.3333333333% - 30px);
  }
}
.ar-article2 .grid {
  margin-top: -20px;
}

.ar-article2 .item {
  width: 100%;
}

.ar-article2 .item:first-child, .ar-article2 .item:nth-child(2) {
  margin-top: 20px;
}

.ar-article2 .item:first-child .img-info, .ar-article2 .item:nth-child(2) .img-info, .ar-article2 .item:first-child .info, .ar-article2 .item:nth-child(2) .info {
  width: 100%;
}

.ar-article2 .item:nth-child(n+3) {
  -ms-flex-wrap: wrap;
  border-top: 1px solid #e4e4e4;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  padding-top: 15px;
  position: relative;
}

.ar-article2 .item:nth-child(n+3) .img-info {
  max-width: 285px;
  width: 35%;
}

.ar-article2 .item:first-child .info, .ar-article2 .item:nth-child(2) .info {
  margin-top: 10px;
}

.ar-article2 img {
  border-radius: 2px;
}

.ar-article2 .item:nth-child(n+3) .info {
  margin-left: 15px;
  min-width: calc(100% - 300px);
  width: calc(65% - 15px);
}

.ar-article2 .title {
  color: #333;
  display: block;
  width: 100%;
}

.ar-article2 .title:hover {
  color: var(--title-color-1);
}

.ar-article2 .title h2 {
  font-size: 18px;
  font-weight: var(--fw-3);
  line-height: 1.4;
}

.ar-article2 .item:first-child .title h2, .ar-article2 .item:nth-child(2) .title h2 {
  font-size: 20px;
  line-height: 1.3;
}

.ar-article2 .item .description {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #777;
  display: -webkit-box;
  font-size: 1.05rem;
  margin-top: 5px;
  overflow: hidden;
}

.ar-article2 .item:nth-child(n+3) .description {
  display: none;
}

@media (min-width: 600px) {
  .ar-article2 .grid {
    margin-top: 0;
  }
  .ar-article2 .item:first-child, .ar-article2 .item:nth-child(2) {
    margin-top: 0;
    width: calc(50% - 10px);
  }
  .ar-article2 .item:first-child {
    margin-right: 10px;
  }
  .ar-article2 .item:nth-child(2) {
    margin-left: 10px;
  }
}
@media (min-width: 650px) {
  .ar-article2 .item:nth-child(n+3) .description {
    -webkit-line-clamp: 2;
    display: -webkit-box;
  }
}
@media (min-width: 992px) {
  .ar-article2 .title h2 {
    font-size: 20px;
    line-height: 1.3;
  }
  .ar-article2 .item:first-child .title h2, .ar-article2 .item:nth-child(2) .title h2 {
    font-size: 22px;
    line-height: 1.4;
  }
  .ar-article2 .item:nth-child(n+3) .description {
    display: none;
  }
}
@media (min-width: 1200px) {
  .ar-article2 .item:nth-child(n+3) .description {
    -webkit-line-clamp: 3;
    display: -webkit-box;
  }
}
@media (min-width: 1400px) {
  .ar-article2 .title h2 {
    font-size: 22px;
    line-height: 1.4;
  }
}
.datetime {
  color: #959595;
  font-size: 13px;
  margin-top: 4px;
}

.article-right .item {
  border-top: 1px solid #e4e4e4;
  padding: 15px 0;
  width: 100%;
}

.article-right .item:last-child {
  padding-bottom: 0;
}

.article-right .item > a {
  max-width: 220px;
  width: 35%;
}

.article-right .item img {
  border-radius: 2px;
}

.article-right .info {
  margin-left: 10px;
  min-width: calc(100% - 230px);
  width: calc(65% - 10px);
}

.article-right .info a {
  color: #333;
  display: block;
}

.article-right .info a:hover {
  color: var(--title-color);
}

.article-right .title h2 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 16px;
  font-weight: var(--fw-3);
  line-height: 1.4;
  overflow: hidden;
}

.article-right + .sub-title {
  margin-top: 45px;
}

@media (min-width: 650px) {
  .article-right .item {
    width: 50%;
  }
  .article-right .item:nth-child(odd) {
    padding-right: 10px;
  }
  .article-right .item:nth-child(even) {
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  .article-right .item {
    width: 100%;
  }
  .article-right .item:nth-child(odd) {
    padding-right: 0;
  }
  .article-right .item:nth-child(even) {
    padding-left: 0;
  }
}
.b-article .ar-none, .b-article .ar-article1, .b-article .ar-article3 {
  margin-top: 0;
}

.block.b-background {
  padding: 0;
}

.b-background .title {
  background: var(--bg-color);
  color: var(--font-color);
  display: block;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 auto;
  padding: 10px 15px;
  text-align: center;
}

.b-background .title span {
  color: var(--font-color-s);
  font-weight: var(--fw-3);
}

@media (min-width: 576px) {
  .b-background .title {
    -webkit-transform: translate(-50%, -50%) !important;
    background: transparent !important;
    border-radius: 10px;
    color: #fff !important;
    font-size: 28px;
    left: 50%;
    position: absolute !important;
    text-shadow: 3px 0 7px rgba(0, 0, 0, 0.8), -3px 0 7px rgba(0, 0, 0, 0.8), 0 4px 7px rgba(0, 0, 0, 0.8);
    top: 50%;
    transform: translate(-50%, -50%) !important;
  }
  .b-background .title span {
    color: var(--font-color-s) !important;
  }
}
@media (min-width: 768px) {
  .b-background .title {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .b-background .title {
    font-size: 46px;
  }
}
.block.b-background1 {
  padding: 0;
}

.b-background1 .picture img {
  bottom: 0;
  left: 0;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}

.b-background1 svg {
  position: relative;
  z-index: 1;
}

.b-background1 .grid .item {
  background-color: #f0f0f0;
  border-radius: 5px;
  margin-top: 20px;
  padding: 20px 15px;
  position: relative;
}

.b-background1 .grid .title {
  background-color: var(--bg-color-1);
  border-radius: 50%;
  color: var(--font-color-1);
  font-size: 30px;
  font-weight: var(--fw-4);
  height: 60px;
  line-height: normal;
  margin: 0 auto;
  width: 60px;
}

.b-background1 .grid .description {
  margin-top: 15px;
}

.b-background4 .sub-ripple {
  position: absolute;
  z-index: 1;
}

.b-background4 .sub-ripple-1 {
  height: 100px;
  width: 100px;
}

.b-background4 .sub-ripple-1 .ripple {
  background: #fff;
}

.b-background4 .sub-ripple .area {
  background: rgba(252, 252, 252, 0.45);
  border-radius: 50%;
  display: block;
  height: 100%;
  margin: 0 auto;
  max-height: 40px;
  max-width: 40px;
  width: 100%;
}

.block.b-backgroundform {
  background: transparent !important;
  padding: 0;
}

.b-backgroundform .container {
  background: var(--o-bg-color);
}

.b-backgroundform .sub-container {
  margin: 0 auto;
  max-width: 500px;
  padding: 15px 10px;
}

.b-backgroundform .title, .b-backgroundform .description, .b-backgroundform form {
  color: var(--o-font-color);
}

.b-backgroundform .title {
  display: block;
  font-family: var(--sub-font-family);
  font-size: 32px;
  line-height: 1.2;
  margin-top: 5px;
  text-align: center;
  width: 100%;
}

.b-backgroundform .description {
  margin-top: 10px;
}

.b-backgroundform form {
  margin: 15px auto 0;
  text-align: left;
  width: 100%;
}

.b-backgroundform label {
  display: block;
  font-size: 17px;
  font-weight: var(--fw-3);
  margin-bottom: 3px;
}

.b-backgroundform input[type=text] {
  border: 0 none;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 12px 16px;
  width: 100%;
}

.b-backgroundform .customer-submit {
  margin: 10px 0 20px;
  text-align: center;
}

.b-backgroundform .customer-submit button {
  -webkit-transition: all 0.2s;
  background: var(--bg-color);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  color: var(--font-color);
  display: inline-block;
  font-size: 18px;
  padding: 10px 20px;
  transition: all 0.2s;
}

.b-backgroundform .customer-submit button:hover {
  opacity: 0.7;
}

.alert-submit:empty {
  padding: 0 !important;
  margin: 0 !important;
}

.bg-banner {
  padding: 140px 0 80px;
}
.bg-banner .img--banner-mb {
  display: none;
}
@media (max-width: 1280px) {
  .bg-banner {
    padding: 100px 0 50px;
  }
}
@media (max-width: 991px) {
  .bg-banner {
    padding: 0;
    background: transparent !important;
  }
  .bg-banner .img--banner-mb {
    display: block;
  }
}

@media (min-width: 992px) {
  .picture-banner {
    padding: 50px 0 0;
  }
  .picture-banner img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
}
@media (min-width: 992px) and (max-width: 1366px) {
  .b-backgroundform {
    overflow: hidden;
  }
  .b-backgroundform .container {
    background: transparent !important;
  }
  .b-backgroundform .sub-container {
    background: transparent;
    border-radius: 10px;
    display: block;
    padding: 15px;
    position: relative;
    width: 400px;
  }
  .b-backgroundform .sub-container label {
    font-size: 14px;
  }
  .b-backgroundform .sub-container input {
    margin-bottom: 9px;
    padding: 8px 16px;
    width: 100%;
    font-size: 14px;
  }
  .b-backgroundform .sub-container .customer-submit button {
    font-size: 15px;
    padding: 5px 15px;
  }
  .b-backgroundform .sub-container .content-body li {
    font-size: 14px;
    margin: 0 0 2px;
  }
  .b-backgroundform .sub-container .title {
    font-size: 23px;
  }
  .b-backgroundform .sub-container.margin-left {
    margin-left: 0;
  }
  .b-backgroundform .sub-container.margin-right {
    margin-right: 0;
  }
  .b-backgroundform .sub-container:before {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    bottom: 0;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .b-backgroundform .title, .b-backgroundform .description, .b-backgroundform form {
    position: relative;
    z-index: 1;
  }
  .b-backgroundform .title {
    font-size: 40px;
    margin: 0;
  }
  .b-backgroundform .description {
    margin-top: 15px;
  }
  .b-backgroundform .customer-submit {
    margin: 10px 0 15px;
  }
  .b-backgroundform .customer-submit button {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
  }
  .b-backgroundform .customer-submit button:hover {
    border-radius: 0;
    opacity: 1;
  }
}
@media (min-width: 1366px) {
  .b-backgroundform {
    overflow: hidden;
  }
  .b-backgroundform .container {
    background: transparent !important;
  }
  .b-backgroundform .sub-container {
    background: transparent;
    border-radius: 10px;
    display: block;
    min-width: 450px;
    padding: 25px;
    position: relative;
  }
  .b-backgroundform .sub-container.margin-left {
    margin-left: 0;
  }
  .b-backgroundform .sub-container.margin-right {
    margin-right: 0;
  }
  .b-backgroundform .sub-container:before {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    bottom: 0;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .b-backgroundform .title, .b-backgroundform .description, .b-backgroundform form {
    position: relative;
    z-index: 1;
  }
  .b-backgroundform .title {
    font-size: 40px;
    margin: 0;
  }
  .b-backgroundform .description {
    margin-top: 15px;
  }
  .b-backgroundform .customer-submit {
    margin: 10px 0 15px;
  }
  .b-backgroundform .customer-submit button {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
  }
  .b-backgroundform .customer-submit button:hover {
    border-radius: 0;
    opacity: 1;
  }
}
.b-card .grid {
  margin-top: -20px;
}

.b-card .item {
  background-color: #fff;
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  width: 100%;
}

.b-card .img-info {
  position: relative;
  width: 100%;
}

.b-card .ratio .img-info {
  padding-top: 62.5%;
}

.b-card .title {
  color: var(--title-color);
  font-size: 22px;
  font-weight: var(--fw-3);
  padding: 10px;
  position: relative;
  text-align: center;
}

.b-card .description {
  font-size: 17px;
  line-height: 1.4;
  padding: 0 15px 10px;
}

.b-card .title-1 {
  border-top: 1px dotted #ababab;
  font-size: 16px;
  line-height: 1.5;
  padding: 10px 15px;
}

.b-card .title-1 span {
  color: var(--title-color-1);
  font-size: 20px;
  font-weight: var(--fw-3);
}

@media (min-width: 500px) {
  .b-card .grid {
    margin: -20px -10px 0;
  }
  .b-card .item {
    margin: 20px 10px 0;
    width: calc(50% - 20px);
  }
}
@media (min-width: 992px) {
  .b-card .item {
    width: calc(25% - 20px);
  }
}
.b-card1 .grid {
  margin-top: -20px;
}

.b-card1 .item {
  border-radius: 5px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  padding-bottom: 75px;
  position: relative;
  width: 100%;
}

.b-card1 .img-info {
  padding-top: 62.5%;
  position: relative;
}

.b-card1 .title, .b-card1 .description {
  padding: 0 15px;
}

.b-card1 .title {
  font-size: 22px;
  font-weight: var(--fw-3);
  margin-top: 15px;
  text-align: center;
}

.b-card1 .line {
  border-bottom: 1px dashed #b9b9b9;
  display: block;
  height: 10px;
  margin: 0 auto;
  max-width: 250px;
  width: 80%;
}

.b-card1 .description {
  margin-top: 15px;
  padding-bottom: 15px;
}

.b-card1 .footer {
  border-radius: 3px;
  bottom: 0;
  left: 20px;
  margin: 0 auto 20px;
  max-width: 250px;
  position: absolute;
  right: 20px;
}

.b-card1 .footer button {
  box-shadow: none;
  font-size: 16px;
  margin: 0;
  min-width: 0;
  padding: 12px 18px;
  width: 100%;
}

.b-card1 .footer.special button {
  background: inherit;
  color: inherit;
}

.b-card1 .footer.special {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.b-card1 .footer.special:hover {
  opacity: 0.7;
}

@media (min-width: 600px) {
  .b-card1 .grid {
    margin: -30px -15px 0;
  }
  .b-card1 .item {
    margin: 30px 15px 0;
    width: calc(50% - 30px);
  }
}
@media (min-width: 992px) {
  .b-card1 .item {
    width: calc(33.3333333333% - 30px);
  }
  .b-card1 .title {
    font-size: 26px;
  }
  .b-card1 .description {
    font-size: 17px;
  }
}
.b-card2 .picture + .element {
  margin-top: 15px;
}

.b-card2 .grid {
  margin-top: -15px;
}

.b-card2 .item {
  margin-top: 15px;
  position: relative;
  width: 100%;
}

.b-card2 .img-info {
  position: relative;
  width: 100%;
}

.b-card2 .ratio .img-info {
  padding-top: 62.5%;
}

.b-card2 .img-info img {
  -webkit-appearance: none;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: block;
}

.b-card2 .info {
  -webkit-appearance: none;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background: var(--g-bg-color);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin: -50px 10px 0;
  padding: 1rem;
  position: relative;
}

.b-card2 .title {
  color: var(--font-color);
  font-family: var(--sub-font-family);
  font-size: 24px;
}

.b-card2 .title span {
  color: var(--font-color-s);
  font-size: 30px;
  line-height: 1.3;
  text-shadow: 1px 1px 0 #000;
}

.b-card2 .description {
  color: var(--font-color);
  font-size: 20px;
  font-weight: var(--fw-1);
  line-height: 1.4;
}

.b-card2 a {
  -webkit-transition: all 0.3s;
  background-color: var(--bg-color-1);
  border-radius: 2px;
  color: var(--font-color-1);
  display: block;
  font-size: 17px;
  margin: 20px auto 0;
  max-width: 80%;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  text-align: center;
  transition: all 0.3s;
  width: 130px;
}

.b-card2 a:hover {
  background-color: var(--bg-color);
  color: var(--font-color);
}

@media (min-width: 500px) {
  .b-card2 .info {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .b-card2 .grid {
    margin: -16px -8px 0;
  }
  .b-card2 .item {
    margin: 16px 8px 0;
    width: calc(50% - 16px);
  }
  .b-card2 .title {
    font-size: 30px;
  }
  .b-card2 .title span {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .b-card2 .picture + .element {
    margin-top: 20px;
  }
  .b-card2 .grid {
    margin: -20px -10px 0;
  }
  .b-card2 .item {
    margin: 20px 10px 0;
    width: calc(50% - 20px);
  }
}
@media (min-width: 1200px) {
  .b-card2 .picture + .element {
    margin-top: 30px;
  }
  .b-card2 .grid {
    margin: -30px -15px 0;
  }
  .b-card2 .item {
    margin: 30px 15px 0;
    width: calc(50% - 30px);
  }
  .b-card2 .title span {
    line-height: normal;
  }
}
.b-gallery .grid {
  margin-top: -15px;
}

.b-gallery .item {
  margin-top: 15px;
  position: relative;
  width: 100%;
}

.b-gallery .img-info {
  position: relative;
  width: 100%;
}

.b-gallery .ratio .img-info {
  padding-top: 62.5%;
}

.b-gallery .item img {
  cursor: pointer;
}

.b-gallery .title {
  background: var(--bg-color);
  color: var(--font-color);
  font-size: 20px;
  font-weight: var(--fw-3);
  padding: 15px 20px;
  text-align: center;
}

@media (min-width: 576px) {
  .b-gallery .grid {
    margin: -16px -8px 0;
  }
  .b-gallery .item {
    margin: 16px 8px 0;
    width: calc(50% - 16px);
  }
  .b-gallery .title {
    background: var(--o-bg-color);
    bottom: 0;
    left: 0;
    padding: 10px 20px;
    position: absolute;
    right: 0;
  }
}
@media (min-width: 768px) {
  .b-gallery .item {
    width: calc(33.3333333333% - 16px);
  }
}
.b-gallery1 .grid {
  margin: -4px -2px 0;
}

.b-gallery1 .item {
  margin: 4px 2px 0;
  position: relative;
  width: calc(50% - 4px);
}

.b-gallery1 .img-info {
  position: relative;
  width: 100%;
}

.b-gallery1 .ratio .img-info {
  padding-top: 100%;
}

@media (min-width: 576px) {
  .b-gallery1 .item {
    width: calc(33.3333333333% - 4px);
  }
}
@media (min-width: 768px) {
  .b-gallery1 .item {
    width: calc(25% - 4px);
  }
}
.b-gallery2 .item {
  margin: 0 10px;
  position: relative;
  width: calc(90% - 20px);
}

.b-gallery2 .img-info {
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 100%;
}

.b-gallery2 .ratio .img-info {
  padding-top: 62.5%;
}

.b-gallery2 .item .title {
  background-color: rgba(0, 0, 0, 0.6);
  bottom: 0;
  color: #fff;
  font-size: 18px;
  left: 0;
  margin-top: 0;
  padding: 15px 20px;
  position: absolute;
  right: 0;
}

@media (min-width: 500px) {
  .b-gallery2 .item {
    margin: 0 8px;
    width: calc(50% - 16px);
  }
}
@media (min-width: 768px) {
  .b-gallery2 .item {
    margin: 0 10px;
    width: calc(33.3333333333% - 20px);
  }
}
@media (min-width: 992px) {
  .b-gallery2 .item {
    width: calc(25% - 20px);
  }
}
.b-grid .grid {
  margin-top: -30px;
}

.b-grid .item {
  margin-top: 30px;
  padding-top: 50%;
  position: relative;
  width: 100%;
}

.b-grid .info {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  padding: 10px 20px;
  text-align: center;
}

.b-grid .info p {
  color: var(--title-color);
  font-family: var(--sub-font-family);
  font-size: 30px;
  text-shadow: 0 2px 1px rgba(255, 255, 255, 0.2);
}

.b-grid .info a {
  background-color: var(--bg-color-1);
  border-radius: 2px;
  color: var(--font-color-1);
  display: block;
  font-size: 16px;
  margin: 5px auto 0;
  padding: 5px 0;
  transition: all 0.5s;
  width: 90px;
}

.b-grid .info a:hover {
  background-color: var(--bg-color);
  color: var(--font-color);
}

@media (min-width: 992px) {
  .b-grid .grid {
    margin: -30px -15px 0;
    overflow: hidden;
  }
  .b-grid .item {
    float: left;
    margin: 30px 15px 0;
  }
  .b-grid .item:first-child {
    padding-top: calc(50% - 30px);
    width: calc(50% - 30px);
  }
  .b-grid .item:nth-child(n+2) {
    padding-top: calc(25% - 30px);
    width: calc(50% - 30px);
  }
}
.b-iframe .iframe-container {
  min-height: 300px;
  padding-top: 45%;
  position: relative;
}

.b-iframe iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.has-background {
  background-position: center;
  background-size: cover;
}

.block {
  display: block;
  padding: 30px 0;
  position: relative;
  width: 100%;
}

.block.lazy-loader {
  background-color: transparent;
  height: 100vh;
  min-height: 0;
}

.block .container {
  position: relative;
  z-index: 2;
}

.b-height-true {
  min-height: 100vh;
}

.b-element {
  margin-top: 30px;
}

.see-more {
  -webkit-transition: all 0.2s;
  background-color: var(--bg-color-1);
  border-radius: 5px;
  color: var(--font-color-1);
  display: block;
  font-size: 18px;
  margin: 25px auto 0;
  max-width: 130px;
  padding: 12px 0;
  text-align: center;
  transition: all 0.2s;
  width: 100%;
}

.see-more:hover {
  background-color: var(--bg-color);
  color: var(--font-color);
}

.ratio .img-info img {
  bottom: 0;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.btn-desktop, .bg-desktop {
  display: none;
}

@media (min-width: 992px) {
  .block {
    padding: 40px 0;
  }
  .d-align-center {
    margin-left: auto;
    margin-right: auto;
  }
  .d-align-right {
    margin-left: auto;
  }
  .btn-mobile, .bg-mobile {
    display: none;
  }
  .btn-desktop, .bg-desktop {
    display: block;
  }
}
.b-listphoto .grid {
  margin-top: -5px;
}

.b-listphoto .item {
  margin-top: 5px;
  width: 100%;
}

@media (min-width: 992px) {
  .b-listphoto .grid {
    margin: -10px 0 0;
  }
  .b-listphoto .item {
    margin-top: 10px;
    padding: 0 5px;
    width: 50%;
  }
  .b-listphoto .item:nth-child(odd) {
    padding-left: 0;
  }
  .b-listphoto .item:nth-child(even) {
    padding-right: 0;
  }
}
#map-location .R {
  stroke-miterlimit: 10;
}

#map-location .S {
  fill: #cfa57d;
}

#map-location .T {
  fill: #be712b;
}

#map-location .U {
  fill: #fff;
}

#map-location .V {
  fill: #003940;
}

#map-location .W {
  stroke-width: 4;
}

#map-location .X {
  fill: #d59869;
}

#map-location .Y {
  fill: #9f5f32;
}

#map-location .Z {
  fill: #755f35;
}

#map-location .area {
  animation: StrokeLine 3s infinite linear;
  fill: none;
  stroke: #0098ff;
  stroke-dasharray: 10;
  stroke-dashoffset: 0;
  stroke-miterlimit: 20;
  stroke-width: 5px;
}

@keyframes StrokeLine {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -200;
  }
}
#map-location .R path {
  animation: StrokeLine 3s infinite linear;
  fill: none;
  stroke: #cfa57d;
  stroke-dasharray: 10;
  stroke-dashoffset: 0;
  stroke-miterlimit: 20;
}

.b-partner .grid {
  margin: -8px -4px 0;
}

.b-partner .item {
  -webkit-appearance: none;
  -webkit-box-shadow: 0 16px 32px rgba(62, 87, 102, 0.17);
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 16px 32px rgba(62, 87, 102, 0.17);
  margin: 8px 4px 0;
  padding: 15px;
  width: calc(50% - 8px);
}

.b-partner .img-info {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.b-partner img {
  object-fit: contain;
}

.b-partner p {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 10px;
  text-align: center;
}

@media (min-width: 576px) {
  .b-partner .item {
    width: calc(25% - 8px);
  }
}
@media (min-width: 768px) {
  .b-partner .item {
    width: calc(20% - 8px);
  }
}
.b-step .grid {
  margin-top: -15px;
}

.b-step .item {
  background: var(--bg-color);
  border-radius: 10px;
  margin-top: 15px;
  overflow: hidden;
  padding: 20px 10px;
  position: relative;
  width: 100%;
}

.b-step .item:before, .b-step .item:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.b-step .item:before {
  background-image: url(app/images/circle.png);
  opacity: 0.04;
}

.b-step .item:after {
  background-image: url(app/images/dots.svg);
  background-position-x: right;
  background-size: 25%;
  opacity: 0.1;
}

.b-step .title, .b-step .content-body, .b-step span {
  color: var(--font-color);
}

.b-step .title {
  font-size: 22px;
  font-weight: var(--fw-4);
  line-height: 1.4;
}

.b-step .description {
  font-size: 18px;
  font-weight: var(--fw-1);
  line-height: 1.6;
  margin-top: 15px;
}

.b-step .item span {
  bottom: -7px;
  font-family: var(--sub-font-family);
  font-size: 80px;
  font-weight: var(--fw-3);
  line-height: normal;
  opacity: 0.2;
  position: absolute;
  right: 0;
}

@media (min-width: 576px) {
  .b-step .grid {
    margin: -20px -10px 0;
  }
  .b-step .item {
    margin: 20px 10px 0;
    width: calc(50% - 20px);
  }
}
@media (min-width: 992px) {
  .b-step .item {
    padding: 20px 30px;
    width: calc(33.3333333333% - 20px);
  }
}
.text-photo .left, .text-photo .right {
  position: relative;
}

.text-photo .left {
  margin-bottom: 30px;
}

.text-photo .left .s-title-1 {
  color: var(--title-color);
  display: block;
  font-size: 25px;
  line-height: 1.25;
  width: 100%;
}

.text-photo .left .s-title {
  color: var(--title-color-1);
  display: block;
  font-family: var(--sub-font-family);
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: 20px;
  width: 100%;
}

.text-photo .right {
  margin-top: 30px;
}

.text-photo .right .item + .item {
  margin-top: 15px;
}

.text-photo .right .item img {
  border-radius: 10px;
}

.text-photo .description {
  color: #333;
  display: block;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  width: 100%;
}

.text-photo .description li {
  clear: both;
  list-style: none;
  position: relative;
}

.text-photo .description li:before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  left: -30px;
  position: absolute;
}

.text-photo ul li:before {
  background-image: var(--background-ul);
  height: 18px;
  top: 6px;
  width: 18px;
}

.text-photo ol li:before {
  background-image: var(--background-ol);
  height: 26px;
  top: -1px;
  width: 26px;
}

.b-textphoto .list-photo {
  margin: 10px -10px 0;
}

.b-textphoto .list-photo .item {
  margin: 30px 10px 0;
  width: calc(50% - 20px);
}

.text-photo-content {
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .text-photo .left-right {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    margin-left: -20px;
    margin-right: -20px;
  }
  .text-photo.reverse .left-right, .text-photo .element.reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .text-photo .left, .text-photo .right {
    margin: 0;
    padding: 0 20px;
  }
  .text-photo .left.Center {
    text-align: center;
  }
  .text-photo .left .s-title-1 {
    font-size: 28px;
  }
  .text-photo .left .s-title {
    font-size: 38px;
    line-height: 1.1;
  }
  .text-photo .right .item + .item {
    margin-top: 30px;
  }
  .text-photo-content {
    margin-bottom: 30px;
  }
}
.step, .step-item {
  width: 100%;
}

.step {
  background: rgba(221, 221, 221, 0.3);
  border-radius: 2px;
  margin-top: 30px;
  padding: 20px;
}

.step-item + .step-item {
  margin-top: 12px;
}

.step .step-bg {
  border-radius: 6px;
  height: 5px;
  margin-right: 15px;
  width: 40px;
}

.step .description {
  font-size: 17px;
  width: calc(100% - 55px);
}

.b-textphoto1 * + .info-color {
  margin-top: 20px;
}

.b-textphoto1 .info-color {
  width: 100%;
}

.b-textphoto1 .info-color .item {
  border-top: 1px solid #ddd;
  font-size: 18px;
  margin-top: 10px;
  padding-top: 10px;
}

.b-textphoto1 .info-color span {
  display: inline-block;
}

.b-textphoto1 .info-color .text {
  color: var(--title-color);
  line-height: 1.4;
  width: 100%;
}

.b-textphoto1 .info-color .sub-text {
  -ms-flex-order: 2;
  line-height: 1.4;
  margin-top: 10px;
  order: 2;
  text-align: right;
  width: 160px;
}

.b-textphoto1 .info-color .color {
  -ms-flex-order: 1;
  height: 28px;
  margin-top: 10px;
  order: 1;
  width: 50px;
}

@media (min-width: 600px) {
  .b-textphoto1 .info-color .item {
    border-top: 0 none;
    padding-top: 0;
  }
  .b-textphoto1 .info-color .text {
    width: calc(100% - 220px);
  }
  .b-textphoto1 .info-color .sub-text {
    -ms-flex-order: 1;
    margin-top: 0;
    order: 1;
    padding: 0 10px;
  }
  .b-textphoto1 .info-color .color {
    -ms-flex-order: 2;
    margin-left: 10px;
    margin-top: 0;
    order: 2;
  }
}
.text-photo .form-container {
  background-color: rgba(255, 255, 255, 0.631372549);
  border-radius: 10px;
  margin: 30px auto 15px;
  max-width: 500px;
  padding: 30px 15px;
  position: relative;
  text-align: center;
}

.text-photo .form-container .shape {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  height: 120px;
  position: absolute;
  width: 120px;
  z-index: -1;
}

.text-photo .form-container .shape:first-child {
  left: -15px;
  top: -15px;
}

.text-photo .form-container .shape:nth-child(2) {
  bottom: -15px;
  right: -15px;
}

.text-photo .form-title {
  color: #333;
  font-size: 28px;
  line-height: 1.2;
}

.text-photo .form-description {
  color: #565656;
  line-height: 1.5;
  margin-top: 15px;
}

.text-photo .customer-form input[name=FullName] {
  margin-top: 25px;
}

.text-photo .customer-form input[type=text] {
  -webkit-appearance: none;
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.1);
  border: 0 none;
  border-radius: 5px;
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.1);
  display: block;
  font-size: 18px;
  margin-top: 30px;
  padding: 12px 16px;
  width: 100%;
}

.text-photo .customer-submit {
  margin-top: 25px;
}

.text-photo .customer-submit button {
  -webkit-transition: 0.4s all;
  background: var(--bg-color);
  border: 5px solid #fff;
  border-radius: 30px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.07);
  color: var(--font-color);
  font-size: 18px;
  margin: 6px 0 0;
  padding: 10px 30px;
  transition: 0.4s all;
}

.text-photo .customer-submit button:hover {
  border-radius: 0;
}

@media (min-width: 992px) {
  .text-photo .form-container {
    margin: 20px auto;
    padding: 30px;
  }
  .text-photo .form-container .shape:first-child {
    left: -20px;
    top: -20px;
  }
  .text-photo .form-container .shape:nth-child(2) {
    bottom: -20px;
    right: -20px;
  }
}
.time-line-container {
  margin-top: 20px;
  position: relative;
}

.time-line-container .line {
  background: #c6c6c6;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 6px;
  z-index: -1;
}

.time-line-info {
  margin: 0 -10px;
  overflow: auto;
}

.time-line-container .item {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  max-width: 240px;
  padding: 0 10px;
  position: relative;
  text-align: center;
  width: auto;
}

.time-line-container .item:first-child:after, .time-line-container .item:last-child:before {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  content: "";
  height: 0;
  margin-top: -2px;
  position: absolute;
  top: 0;
  width: 0;
}

.time-line-container .item:first-child:after {
  border-right: 10px solid #b8b8b8;
  left: 8px;
}

.time-line-container .item:last-child:before {
  border-left: 10px solid #b8b8b8;
  right: 8px;
}

.time-line-container span {
  background-color: var(--bg-color);
  border-radius: 50%;
  display: block;
  height: 15px;
  margin: 0 auto;
  width: 15px;
}

.time-line-container .title {
  color: var(--title-color-1);
  font-size: 30px;
  font-weight: var(--fw-4);
  line-height: 1.2;
  margin-top: 10px;
}

.time-line-container .description {
  font-size: 17px;
  line-height: 1.5;
  margin-top: 10px;
}

.time-line-container .content-body {
  text-align: left;
}

@media (min-width: 992px) {
  .time-line-container .time-line-info {
    overflow: visible;
  }
  .time-line-container .item {
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
    max-width: none;
    width: 100%;
  }
}
.b-title-description {
  padding-bottom: 45px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.b-title-description:before {
  background: var(--background-line) center center no-repeat;
  background-size: contain;
  bottom: 22px;
  content: "";
  display: block;
  height: 14px;
  left: 0;
  margin: 0 auto;
  max-width: 200px;
  position: absolute;
  right: 0;
  width: 100%;
}

.b-title {
  color: var(--title-color);
  display: block;
  font-size: 45px;
  line-height: 0.9;
  position: relative;
  width: 100%;
}

.b-title, .b-title h1, .b-title h2, .b-title h3 {
  font-family: var(--sub-font-family);
}

.b-title span {
  color: var(--title-color-1);
}

.b-description {
  color: #333;
  display: block;
  font-size: 20px;
  line-height: 1.3;
  margin-top: 10px;
  position: relative;
}

@media (min-width: 576px) {
  .b-title {
    font-size: 49px;
  }
}
@media (min-width: 992px) {
  .b-title {
    font-size: 53px;
  }
}
@media (min-width: 1200px) {
  .b-title {
    font-size: 57px;
  }
}
.block.b-video {
  padding: 0;
}

.b-video .poster {
  min-height: 200px;
  object-fit: cover;
}

.b-video video {
  background-size: cover;
  height: auto;
  max-height: calc(100vh - 60px);
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.b-video .title {
  bottom: 5px;
  color: #fff;
  font-size: 20px;
  left: 15px;
  position: absolute;
  text-shadow: 1px 1px 1px #000;
}

@media (min-width: 576px) {
  .b-video .title {
    bottom: 10px;
    font-size: 24px;
    left: 20px;
  }
}
@media (min-width: 992px) {
  .b-video .title {
    left: 30px;
  }
}
@media (min-width: 992px) {
  .text-photo .left, .text-photo .right {
    width: 50%;
  }
  .W20 {
    width: 20% !important;
  }
  .W25 {
    width: 25% !important;
  }
  .W30 {
    width: 30% !important;
  }
  .W35 {
    width: 35% !important;
  }
  .W40 {
    width: 40% !important;
  }
  .W45 {
    width: 45% !important;
  }
  .W50 {
    width: 50% !important;
  }
  .W55 {
    width: 55% !important;
  }
  .W60 {
    width: 60% !important;
  }
  .W65 {
    width: 65% !important;
  }
  .W70 {
    width: 70% !important;
  }
  .W75 {
    width: 75% !important;
  }
  .W80 {
    width: 80% !important;
  }
}
.f-about .list-social {
  margin: 5px -5px 0;
  width: 100%;
}

.f-about .list-social a {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: block;
  margin: 10px 5px 0;
  padding: 15px;
  transition: all 0.2s;
}

.f-about .list-social a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.f-about .list-social svg {
  display: block;
  height: 25px;
  margin: 0 auto;
  width: 25px;
}

.f-about .list-social svg path {
  fill: var(--f-font-color-s);
}

footer .bottom {
  background-color: rgba(0, 0, 0, 0.231372549);
  font-size: 14px;
  margin-top: 0;
  min-height: 0;
  opacity: 0.8;
  padding: 6px 10px;
  text-align: center;
}

footer .bottom h1, footer .bottom span {
  opacity: 0.7;
}

footer .links .link {
  display: block;
}

footer .links .link + .link {
  margin-top: 5px;
}

footer .links svg {
  display: inline-block;
  height: 14px;
  margin-right: 8px;
  width: 14px;
}

.f-contact svg {
  display: inline-block;
  height: 20px;
  margin-bottom: 2px;
  vertical-align: middle;
  width: 20px;
}

.f-contact .content + .infos, .f-contact .content + .links, .f-contact .infos + .links {
  margin-top: 10px;
}

.f-contact .infos .sub-info + .sub-info {
  margin-top: 5px;
}

.f-contact .infos .name {
  font-weight: var(--fw-4);
  width: 90px;
}

.f-contact .infos .content {
  width: calc(100% - 90px);
}

.f-form .content {
  margin-bottom: 15px;
}

.f-form .customer-form {
  margin-top: 10px;
}

.f-form input {
  background-color: rgba(0, 0, 0, 0.4);
  border: 0 none;
  color: #fff;
  margin: 0 auto 20px;
  max-width: 300px;
  padding: 10px 15px;
  width: 100%;
}

.f-form .customer-submit {
  text-align: center;
}

.f-form .customer-submit button {
  background-color: var(--bg-color-1);
  border: 2px solid transparent;
  border-radius: 5px;
  color: var(--font-color-1);
  font-size: 17px;
  margin: 5px 0 10px;
  padding: 8px 20px;
  transition: all 0.2s;
}

.f-form .customer-submit button:hover {
  background-color: var(--bg-color);
  border: 2px solid var(--font-color);
  color: var(--font-color-1);
}

@media (min-width: 992px) {
  .f-form .customer-form {
    margin-top: 20px;
  }
  .f-form input {
    margin: 0 0 20px 0;
    max-width: none;
  }
  .f-form .customer-submit button {
    margin-bottom: 0;
  }
}
footer {
  background-color: var(--f-bg-color);
  color: var(--f-font-color);
  margin-top: 30px;
  position: relative;
}

footer a {
  color: var(--f-font-color);
}

footer a:hover {
  color: var(--f-font-color-s);
}

footer .svg-icon path {
  fill: var(--f-font-color-s);
}

footer.no-margin {
  margin-top: 0;
}

footer .container {
  display: block;
  padding: 0;
  position: relative;
  width: 100%;
}

footer .item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

footer .title {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  align-items: center;
  color: var(--f-font-color-s);
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: var(--fw-3);
  justify-content: space-between;
  padding: 10px 15px;
  position: relative;
}

footer .title span {
  display: block;
  width: calc(100% - 25px);
}

footer .title svg {
  display: block;
  height: 12px;
  width: 12px;
}

footer .title svg path {
  fill: var(--f-font-color-s);
}

footer .sub-item {
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
  font-size: 17px;
  padding: 12px 15px;
}

footer .content p + p {
  margin-top: 6px;
}

@media (min-width: 992px) {
  footer .container {
    padding-bottom: 45px;
    padding-top: 45px;
  }
  footer .grid {
    -ms-flex-pack: justify;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
  }
  footer .item {
    border-bottom: 0 none;
    margin: 0;
    padding: 0 15px;
    width: auto;
  }
  footer .title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 14px;
    padding: 0;
    pointer-events: none;
  }
  footer .title span {
    width: 100%;
  }
  footer .title svg {
    display: none;
  }
  footer .sub-item {
    background-color: transparent;
    display: block !important;
    font-size: 16px;
    padding: 0;
  }
  footer .None.f-2 {
    max-width: 50%;
  }
  footer .None.f-3 {
    max-width: 33.3333%;
  }
  footer .None.f-4 {
    max-width: 25%;
  }
  footer .None.f-5 {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .home .header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
  }
  .home header {
    background: transparent;
  }
  .home header.fixed {
    background: var(--bg-color);
    color: var(--font-color);
  }
}
.modal .close {
  -webkit-transition: all 0.4s;
  background-color: rgba(0, 0, 0, 0.4);
  border: 0 none;
  border-radius: 2px;
  padding: 15px;
  position: absolute;
  transition: all 0.4s;
  z-index: 3;
}

.modal .close svg {
  height: 18px;
  width: 18px;
}

.modal .close path {
  fill: #9b9b9b;
}

.modal .close:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.modal .close:hover path {
  fill: #fff;
}

#iframe-360 {
  z-index: 12;
}

#iframe-360 .modal-dialog {
  border-radius: 0;
  height: calc(100vh - 40px);
  max-width: 100%;
  width: 100%;
}

#iframe-360 iframe {
  height: 100%;
}

.modal-form .modal-dialog {
  background-color: var(--bg-color);
  border-radius: 10px;
  max-width: 420px;
}

.modal-form .modal-dialog .close {
  right: -8px;
  top: -8px;
}

.modal-form .close path {
  fill: #fff;
}

.modal-form .modal-body {
  padding: 0;
}

.modal-form .modal-title {
  color: var(--font-color);
  font-size: 24px;
  line-height: 1.3;
  padding: 15px;
  text-transform: uppercase;
}

.modal-form img {
  display: none;
}

.modal-form .modal-description, .modal-form .customer-form {
  padding: 0 15px;
}

.modal-form .modal-description {
  background-color: #fff;
  color: #3a3a3a;
  font-size: 17px;
  padding-top: 15px;
}

.modal-form .modal-description p + p {
  margin-top: 15px;
}

.modal-form .customer-form {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding-top: 15px;
}

.modal-form label {
  font-size: 17px;
  font-weight: var(--fw-3);
  margin-bottom: 3px;
}

.modal-form input[type=text] {
  background-color: transparent;
  border: 0 none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  color: #131820;
  display: block;
  font-size: 17px;
  height: auto;
  margin-bottom: 25px;
  padding: 5px 0;
  width: 100%;
}

.modal-form .modal-note {
  color: #f00;
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: -10px;
}

.modal-form .customer-submit {
  padding-bottom: 10px;
  text-align: center;
}

.modal-form .customer-submit button {
  -webkit-transition: all 0.3s;
  background-color: var(--bg-color-1);
  border-radius: 10px;
  color: var(--font-color-1);
  display: block;
  font-size: 18px;
  margin: 0 0 10px;
  padding: 10px 15px;
  transition: all 0.3s;
  width: 100%;
}

.modal-form .customer-submit button:hover {
  opacity: 0.7;
}

@media (min-width: 992px) {
  .modal-form .modal-title {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .modal-form-img .modal-dialog {
    max-width: 500px;
  }
  .modal-form-img img {
    display: block;
  }
  .modal-form-img .modal-title {
    background-color: #fff;
    border-radius: 0;
    color: #000;
  }
  .modal-form-img .modal-description {
    padding-top: 0;
  }
}
#modalLightBox {
  background-color: #000;
  overflow: hidden;
  padding: 0 !important;
}

#modalLightBox .close {
  background-color: rgba(255, 255, 255, 0.3);
  right: 10px;
}

#modalLightBox .modal-dialog {
  background-color: transparent;
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
  width: 100%;
}

#modalLightBox .modal-body {
  padding: 0;
  width: 100%;
}

#modalLightBox .swipe-container {
  margin: 0 auto;
  max-width: 1500px;
}

#modalLightBox .btn-slider .svg-icon {
  height: 25px;
  width: 25px;
}

#modalLightBox .btn-slider.prev {
  left: 10px;
}

#modalLightBox .btn-slider.next {
  right: 10px;
}

#modalLightBox .btn-slider:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

#modalLightBox .btn-slider path {
  fill: #dfdfdf;
}

#modalLightBox .item {
  padding: 0 10px;
  width: 100%;
}

#modalLightBox .item img {
  margin: 0 auto;
  max-height: 100vh;
  object-fit: contain;
  width: auto;
}

.btn-registration {
  -webkit-transition: all 0.5s;
  background: var(--bg-color);
  border: 0 none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  color: var(--font-color);
  display: block;
  font-size: 18px;
  font-weight: var(--fw-3);
  margin: 20px auto 0;
  min-width: 300px;
  padding: 15px;
  text-transform: uppercase;
  transition: all 0.5s;
  width: 100%;
}

.btn-registration:hover {
  background: var(--bg-color-1);
  color: var(--font-color-1);
}

@media (min-width: 400px) {
  .btn-registration {
    padding: 15px 20px;
    width: auto;
  }
}
.open-youtube {
  -webkit-transform: translate(-50%, -50%) !important;
  background-color: transparent;
  border: 0 none;
  left: 50%;
  position: absolute !important;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  width: auto;
}

.open-youtube .poster {
  position: static !important;
}

.icon-youtube {
  -webkit-transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s;
  width: 80px;
}

.open-youtube:hover .icon-youtube {
  background-color: rgba(255, 255, 255, 0.3);
}

#modalVideo .modal-dialog {
  background-color: #000;
  margin: 0;
  max-width: 145vh;
}

#modalVideo .close {
  right: 0;
  top: -35px;
}

.back-to-top {
  -webkit-transition: all 0.2s ease-in-out;
  background-color: rgba(0, 0, 0, 0.8);
  border: 0 none;
  border-radius: 50%;
  bottom: -60px;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  height: 60px;
  opacity: 0.6;
  overflow: hidden;
  position: fixed;
  right: 10px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  width: 60px;
  z-index: 8;
}

.back-to-top:hover {
  opacity: 1;
}

.back-to-top.show {
  bottom: 75px;
  visibility: visible;
}

.back-to-top svg {
  height: 18px;
  width: 18px;
}

.back-to-top svg path {
  fill: #fff;
}

@media (min-width: 992px) {
  .back-to-top {
    height: 60px;
    width: 60px;
  }
  .back-to-top.show {
    bottom: 180px;
  }
}
#your-menu {
  background-color: transparent;
  border: 0 none;
  padding: 10px;
}

#your-menu svg {
  height: 30px;
  width: 30px;
}

#your-menu svg path {
  fill: var(--font-color);
}

@media (min-width: 992px) {
  #your-menu {
    display: none;
  }
}
header {
  background: var(--bg-color);
  line-height: normal;
  padding: 5px 0;
}

#header-logo {
  display: block;
  max-width: calc(100% - 230px);
  z-index: 1;
}

#header-logo img {
  display: block;
  height: 50px;
  object-fit: contain;
  object-position: left;
  width: 136px;
}

@media (min-width: 992px) {
  #header-logo {
    max-width: none;
  }
}
.m-hotline {
  font-size: 18px;
  line-height: normal;
  padding: 0 5px;
  width: auto;
}

.m-hotline p {
  color: var(--font-color);
  display: block;
  font-size: 15px;
}

.m-hotline .text {
  color: var(--font-color-s);
  font-weight: var(--fw-3);
}

.d-hotline {
  display: none;
}

@media (min-width: 992px) {
  .m-hotline {
    display: none;
  }
  .d-hotline {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    align-items: center;
    background: var(--d-hotline-bg-color);
    border: 2px solid #fff;
    border-radius: 25px;
    bottom: 20px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    left: 20px;
    padding: 10px 20px;
    position: fixed;
    width: auto;
    z-index: 11;
  }
  .d-hotline .icon {
    position: relative;
  }
  .d-hotline svg {
    margin-right: 5px;
    position: relative;
  }
  .d-hotline svg path {
    fill: var(--d-hotline-icon-color);
  }
  .d-hotline .text {
    color: var(--d-hotline-font-color);
    font-size: 20px;
    font-weight: var(--fw-3);
  }
}
header.fixed {
  box-shadow: 0 4px 24px rgba(88, 102, 126, 0.0784313725), 0 1px 2px rgba(88, 102, 126, 0.1215686275);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9;
}

div[data-ajax] {
  position: relative;
}

.lazy-loader {
  background-color: rgba(200, 200, 200, 0.2);
  min-height: 64px;
}

.lds-facebook {
  display: inline-block;
  height: 64px;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(-32px, -32px);
  width: 64px;
}

.lds-facebook div {
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  background: rgba(2, 100, 111, 0.5);
  display: inline-block;
  left: 6px;
  position: absolute;
  width: 10px;
}

.lds-facebook div:nth-child(1) {
  animation-delay: -0.24s;
  left: 6px;
}

.lds-facebook div:nth-child(2) {
  animation-delay: -0.12s;
  left: 26px;
}

.b-backgroundform .lds-facebook div:nth-child(3) {
  animation-delay: 0;
  left: 45px;
}

@keyframes lds-facebook {
  0% {
    height: 51px;
    top: 6px;
  }
  50%, 100% {
    height: 26px;
    top: 19px;
  }
}
.sidenav {
  -webkit-transition: all 0.3s linear;
  bottom: 0;
  left: 100%;
  max-width: 280px;
  opacity: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  transition: all 0.3s linear;
  visibility: hidden;
  width: calc(100% - 60px);
  z-index: 10;
}

.sidenav.show {
  -webkit-transform: translateX(-100%);
  opacity: 1;
  transform: translateX(-100%);
  visibility: visible;
}

#horizontal-menu {
  background-color: var(--bg-color);
  color: var(--font-color);
}

#horizontal-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

#horizontal-menu li.active, #horizontal-menu li:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

#horizontal-menu .open-child {
  cursor: pointer;
}

#horizontal-menu .has-child > section {
  position: relative;
}

#horizontal-menu svg {
  height: 15px;
  width: 15px;
}

#horizontal-menu svg path {
  fill: var(--font-color);
  transition: 0.15s;
}

#horizontal-menu .menu {
  background-color: transparent;
  border: 0 none;
  color: var(--font-color);
  display: block;
  font-size: 18px;
  line-height: 1.45;
  padding: 15px 20px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  transition: 0.15s;
}

#horizontal-menu .has-child .menu {
  width: calc(100% - 50px);
}

#horizontal-menu .has-child .menu svg {
  display: none;
}

#horizontal-menu .btn-down {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
}

#horizontal-menu .list-sub {
  background-color: #fff;
  display: none;
  width: 100%;
}

#horizontal-menu .sub-menu {
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e4e4e4;
  color: #333;
  display: -ms-flexbox;
  display: flex;
  font-size: 17px;
  line-height: 1.6;
  padding: 14px 10px;
  transition: 0.15s;
  white-space: normal;
  width: 100%;
}

#horizontal-menu .sub-menu svg {
  display: inline-block;
  height: 10px;
  margin-right: 5px;
  width: 10px;
}

#horizontal-menu .sub-menu svg path {
  fill: #333;
}

#horizontal-menu .sub-menu:last-child {
  border-bottom: 0 none;
}

#horizontal-menu .sub-menu.active, #horizontal-menu .sub-menu:hover {
  background-color: rgba(192, 192, 192, 0.5);
}

@media (min-width: 992px) {
  #modal-backdrop.show {
    display: none;
  }
  #horizontal-menu {
    -webkit-transform: none;
    background-color: transparent;
    bottom: auto;
    display: -ms-flexbox;
    display: flex;
    left: auto;
    max-width: 100%;
    opacity: 1;
    overflow: visible;
    position: relative;
    top: auto;
    transform: none;
    transition: none;
    visibility: visible;
    width: auto;
    z-index: 4;
  }
  #horizontal-menu > ul {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
  }
  #horizontal-menu li {
    border-bottom: 0 none;
    border-radius: 2px;
    position: static;
    transition: 0.15s;
    width: auto;
  }
  #horizontal-menu li + li {
    margin-left: 15px;
  }
  #horizontal-menu li.active, #horizontal-menu li:hover {
    background-color: var(--bg-color-1);
  }
  #horizontal-menu .menu {
    -ms-flex-align: center;
    align-items: center;
    border-radius: 2px;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: var(--fw-3);
    line-height: 1.2;
    padding: 10px 15px;
    text-align: center;
    width: auto !important;
  }
  #horizontal-menu li.active .menu, #horizontal-menu li:hover .menu {
    color: var(--font-color-1);
  }
  #horizontal-menu .menu svg path {
    fill: #333;
  }
  #horizontal-menu li.active .menu svg path, #horizontal-menu li:hover .menu svg path {
    fill: var(--font-color-1);
  }
  #horizontal-menu .has-child .menu svg {
    display: block;
    height: 10px;
    margin-left: 5px;
    width: 10px;
  }
  #horizontal-menu .btn-down {
    display: none !important;
  }
  #horizontal-menu .list-sub {
    background-color: #fff;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
    display: block !important;
    opacity: 0;
    position: absolute;
    top: 55px;
    transition: 0.15s;
    visibility: hidden;
    width: auto;
    z-index: -10;
  }
  #horizontal-menu .edge-right .list-sub {
    left: auto;
    right: 0;
  }
  #horizontal-menu li:hover .list-sub {
    opacity: 1;
    top: 100%;
    visibility: visible;
    z-index: 3;
  }
  #horizontal-menu .sub-menu {
    color: #333;
    display: block;
    font-size: 16px;
    height: auto;
    padding: 8px 20px 8px 10px;
    width: auto;
  }
  #horizontal-menu .sub-menu svg path {
    fill: #333;
  }
}
@media (min-width: 1366px) {
  #horizontal-menu .menu {
    align-items: center;
    border-radius: 2px;
    display: -ms-flexbox;
    display: flex;
    font-size: 17px;
    font-weight: var(--fw-3);
    line-height: 1.2;
    padding: 10px 15px;
    text-align: center;
    width: auto !important;
  }
}
#horizontal-menu .menu-d360 a {
  -ms-flex-align: center;
  align-items: center;
  background: var(--bg-color-1);
  border: 0 none;
  color: var(--font-color-1);
  display: -ms-flexbox;
  display: flex;
  font-size: 17px;
  padding: 8px 20px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

#horizontal-menu .menu-d360 .svg-icon {
  height: 38px;
  margin: 0 10px 0 0;
  width: 38px;
}

#horizontal-menu .menu-d360 .svg-icon path {
  fill: var(--font-color-1);
}

@media (min-width: 992px) {
  #horizontal-menu .menu-d360 a {
    background: linear-gradient(135deg, #fff720 10%, #3cd500 100%);
    background-size: 100% 100%;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 63, 255, 0.5);
    color: #333 !important;
    margin: 4px 0;
    padding: 2px 10px;
    transition: 0.3s;
    white-space: nowrap;
  }
  #horizontal-menu .menu-d360 .svg-icon path {
    fill: #333;
  }
  #horizontal-menu .menu-d360 a:hover {
    background-size: 300% 300%;
  }
  #horizontal-menu .menu-d360:hover {
    background-color: transparent !important;
  }
}
body {
  padding: 0 0 56px;
}

#support-center {
  background: #ddd;
  border-top: 1px solid #cfcfcf;
  bottom: 0;
  height: 57px;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 7;
}

#support-center .sup-action {
  background-color: transparent;
  border: 0 none;
  color: #333;
  display: block;
  float: left;
  font-size: 13px;
  line-height: normal;
  padding: 7px 2px;
  text-align: center;
  width: 25%;
  z-index: 7;
}

#support-center svg {
  height: 25px;
  margin: 0 auto;
  width: 25px;
}

#support-center path {
  fill: #1e88e5;
}

#support-center span {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#support-center .open-form path + path {
  fill: #333;
}

#support-center .zalo path:nth-child(2) {
  fill: #fff;
}

#support-center .zalo path:nth-child(3) {
  fill: #1e88e5;
}

@media (min-width: 992px) {
  body {
    padding: 0;
  }
  #support-center {
    background: transparent;
    border: 0 none;
    bottom: 40px;
    box-shadow: none;
    height: auto;
    right: 10px;
    width: 60px;
  }
  #support-center .sup-action {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-transition: all 0.2s ease-in-out;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.5);
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease-in-out;
    width: 100%;
  }
  #support-center .sup-action:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }
  #support-center .sup-action + .sup-action {
    margin-top: 10px;
  }
  #support-center .call, #support-center .open-form, #support-center span {
    display: none;
  }
  #support-center svg {
    height: 32px;
    width: 32px;
  }
  #support-center .d360 {
    display: none !important;
  }
}
.conversion svg, .conversion path, .conversion p, .conversion span {
  pointer-events: none;
}

@font-face {
  font-display: swap;
  font-family: "SVN-Internation";
  font-style: normal;
  src: local(""), url("../fonts/SVN-Internation.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/quicksand/Quicksand-Regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../fonts/quicksand/Quicksand-Medium.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("../fonts/quicksand/Quicksand-SemiBold.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/quicksand/Quicksand-Bold.ttf") format("truetype");
}
svg {
  display: block;
}

.svg-icon {
  height: 22px;
  margin: 0 auto;
  vertical-align: middle;
  width: 22px;
}

.svg-icon path, .svg-icon circle {
  fill: var(--icon-color);
}

img {
  margin: 0 auto;
}

.overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

img.overlay {
  object-fit: cover;
}

.img-responsive {
  display: block;
}

.img-ratio {
  bottom: 0;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

picture img, .picture img {
  width: 100%;
}

*, ::after, ::before {
  box-sizing: border-box;
}

html, body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  color: #000;
  display: block;
  font-family: "QuickSand", arial, sans-serif;
  font-size: 15px;
  font-weight: var(--fw-2);
  line-height: 1.6;
  margin: 0;
  outline: none;
  position: relative;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
}

.not-click {
  cursor: default;
  pointer-events: none;
}

ol, ul, dl {
  margin: 0;
}

p, menu, figure {
  margin: 0;
  padding: 0;
}

b, strong {
  font-weight: var(--fw-4);
}

a {
  color: #0089ff;
  cursor: pointer;
  outline: 0 !important;
  text-decoration: none;
}

a:hover {
  color: #000;
}

:focus {
  outline: 0;
}

picture {
  display: block;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100%;
}

.invisible {
  visibility: hidden !important;
}

.position-relative {
  position: relative !important;
}

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

.find-loading {
  color: #999;
  padding: 5px 10px;
}

.color-red {
  color: #f00;
}

.overflow-hidden {
  overflow: hidden !important;
}

.align-middle {
  -webkit-transform: translate(-50%, -50%) !important;
  left: 50%;
  position: absolute !important;
  top: 50%;
  transform: translate(-50%, -50%) !important;
}

.admin-update {
  display: none;
}

@media (min-width: 992px) {
  .admin-update {
    background-color: #f88315;
    color: #fff;
    display: block;
    padding: 8px 12px;
    position: fixed;
    right: 0;
    top: 70px;
    z-index: 9;
  }
}
.picture .pt, .picture .pc {
  display: none;
}

@media (min-width: 576px) {
  .picture .pm {
    display: none;
  }
  .picture .pt {
    display: block;
  }
}
@media (min-width: 1200px) {
  .picture .pt {
    display: none;
  }
  .picture .pc {
    display: block;
  }
}
:root {
  --fw-1: 400;
  --fw-2: 500;
  --fw-3: 600;
  --fw-4: 700;
  --sub-font-family: "SVN-Internation";
  --icon-color: #003940;
  --title-color: #003940;
  --title-color-1: #d99b66;
  --bg-color: #003940;
  --font-color: #fff;
  --font-color-s: #d99b66;
  --bg-color-1: #d99b66;
  --font-color-1: #fff;
  --o-bg-color: color-mix(in srgb, #003940 30%, transparent);
  --o-font-color: #333;
  --f-bg-color: #003940;
  --f-font-color: #fff;
  --f-font-color-s: #d99b66;
  --d-hotline-bg-color: linear-gradient(135deg, #d99b66 10%, #003940 100%);
  --d-hotline-font-color: #fff;
  --d-hotline-icon-color: #fff;
  --d-hotline-ripple-color: #fff;
  --g-bg-color: linear-gradient(0, #003940 40%, rgba(0, 0, 0, .35) 100%);
  --background-line: url(../images/line.png);
  --background-ul: url(../images/icons/leaf.svg);
  --background-ol: url(../images/icons/diamonds.svg) ;
}

.main-title {
  font-size: 26px;
  font-weight: var(--fw-4);
  line-height: 1.4;
  margin-top: 25px;
}

.sub-title {
  font-size: 26px;
  font-weight: var(--fw-4);
  line-height: 1.4;
  margin-bottom: 5px;
}

.sub-title-mt {
  margin-top: 25px;
}

@media (min-width: 992px) {
  .main-title {
    font-size: 30px;
  }
  .breadcrumb ~ .content-focus .main-title {
    margin-top: 0;
  }
}
.text-transform-none {
  text-transform: none !important;
}

video {
  display: block;
  height: auto;
  margin: 0 auto;
  width: 100%;
}

.video-container {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}

.video-container iframe, .video-container object, .video-container embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.youtube-container {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

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

@media (min-width: 992px) {
  .youtube-container {
    height: calc(100vh - 60px);
    padding-bottom: 0;
  }
  .youtube-container iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
.wrap-pages {
  padding: 70px 0;
}

.content-body img {
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  display: block;
  margin: 15px auto;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-news {
  text-align: center;
  margin-bottom: 30px;
}
.tab-news a {
  margin: 10px;
  display: inline-block;
  border: 0;
  padding: 7px 15px;
  border-radius: 3px;
  background: #005B94;
  color: #fff;
}
.tab-news a.active {
  color: #fff;
  background: #9E7D4E;
}

.nav-tab-gal {
  border: 0;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.nav-tab-gal .nav-item {
  border: 0;
  padding: 0 30px;
  border-right: 1px solid #005B94;
}
.nav-tab-gal .nav-item:last-child {
  border-right: 0;
}
.nav-tab-gal .nav-item .nav-link {
  border: 0;
  border-radius: 3px;
  background: #005B94;
  color: #fff;
}
.nav-tab-gal .nav-item .nav-link.active {
  color: #fff;
  background: #9E7D4E;
}
@media (max-width: 992px) {
  .nav-tab-gal .nav-item {
    padding: 0 10px;
  }
  .nav-tab-gal .nav-item .nav-link {
    padding: 6px 12px;
    font-size: 13px;
  }
}

.wrap-page-success {
  height: 100vh;
  background: url("../images/bg3333.jpg") no-repeat top center/cover;
  font-weight: bold;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.wrap-page-success .box-ss {
  padding: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  max-width: 680px;
  margin: auto;
}
.wrap-page-success h1 {
  text-transform: uppercase;
  font-size: 40px;
  font-family: var(--sub-font-family);
}
.wrap-page-success .text__success {
  margin: 30px auto;
  max-width: 800px;
}
.wrap-page-success a {
  display: inline-block;
  border: 0;
  padding: 7px 15px;
  border-radius: 3px;
  background: #005B94;
  color: #fff;
}

.title-modal {
  text-transform: uppercase;
  font-size: 40px;
  font-family: var(--sub-font-family);
}

.modal a.close-modal {
  top: 10px !important;
  right: 10px !important;
}

.btn_view {
  display: inline-block;
  border: 0;
  padding: 7px 15px;
  border-radius: 3px;
  background: #005B94;
  color: #fff;
}

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