@charset "UTF-8";
/****** Utils ******/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.header .header-navbar-rht .nav-item .header-reg, .header .header-navbar-rht .nav-item .header-login:hover, .header .header-navbar-rht .nav-item .header-login, .header.fixed, .header {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/******* Base *******/
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  background-color: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }
}

::selection {
  background: #FFCE26;
  color: #ffffff;
  text-shadow: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: inherit;
}

* {
  outline: none;
}

button {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
button:focus {
  box-shadow: none !important;
}

a {
  color: #FFCE26;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover {
  color: #f2bb00;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:focus {
  outline: 0;
}

p {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0;
}

ol, ul {
  list-style: none;
  margin-block-end: 0;
  padding: 0;
}

ul {
  list-style: none;
}
ul.list-disc {
  list-style: disc;
  padding-left: 15px;
}
ul.list-disc ul {
  list-style-type: circle;
}
ul.list-decimal {
  list-style: decimal;
  padding-left: 15px;
}
ul.list-decimal ul {
  list-style-type: decimal;
}
ul.list-icon {
  list-style: none;
  padding-left: 0;
}
ul.list-icon > li {
  padding-left: 1.875rem;
  counter-increment: li;
}
ul.list-icon > li i,
ul.list-icon > li .feather-icon,
ul.list-icon > li .svg-icon {
  display: inline-block;
  height: 20px;
  width: 20px;
  text-align: center;
  margin-left: -1.25rem;
  position: relative;
  left: -10px;
  padding: 1px;
  top: -1px;
}
ul.list-icon > li i {
  font-size: 20px;
  top: 5px;
}
ul .btn-primary:not(:disabled):not(.disabled):active:focus, ul .btn-primary:not(:disabled):not(.disabled).active:focus {
  box-shadow: none;
}

.form-group {
  margin-bottom: 24px;
}

.form-wrap {
  margin-bottom: 24px;
}

label {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
  color: #000000;
}

.form-control {
  border: 1px solid #E4E8EB;
  box-shadow: none;
  background: #ffffff;
  border-radius: 6px;
  color: #000000;
  font-size: 14px;
  padding: 10px 15px;
  height: 40px;
  transition: all 0.5s;
}

.form-control:focus {
  border-color: #FFCE26;
  box-shadow: none;
  outline: 0 none;
}

.form-control:focus {
  border: 1px solid #FFCE26;
}

.form-control.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
}

.form-control-sm {
  background-color: #fff;
}

.form-control.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
}

.form-control::placeholder {
  font-size: 14px;
  color: #99A2A8;
}

input, input:focus,
button, button:focus {
  outline: none;
}

input[type=file] {
  height: auto;
  min-height: calc(1.5em + 0.75rem + 2px);
}

input[type=text],
input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea.form-control {
  resize: none;
  min-height: 100px;
}

/******* Components ******/
.avatar {
  position: relative;
  height: 2.625rem;
  width: 2.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 500;
}
.avatar a.badge:hover {
  color: #ffffff;
}
.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.avatar.avatar-rounded {
  border-radius: 50%;
}
.avatar.avatar-rounded img {
  border-radius: 50%;
}
.avatar.avatar-radius-0 {
  border-radius: 0;
}
.avatar.avatar-radius-0 img {
  border-radius: 0;
}
.avatar .avatar-badge {
  position: absolute;
  inset-block-start: -4%;
  inset-inline-end: -0.375rem;
  width: 1.4rem;
  height: 1.4rem;
  font-size: 0.625rem;
  border: 2px solid #ffffff;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar.online:before, .avatar.offline:before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  inset-inline-end: 0;
  inset-block-end: 0;
  border: 2px solid #ffffff !important;
  z-index: 1;
}
.avatar.online:before {
  background-color: #71DE71;
}
.avatar.offline:before {
  background-color: #000;
}
.avatar.avatar-xs {
  width: 1.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  font-size: 0.65rem;
}
.avatar.avatar-xs .avatar-badge {
  padding: 0.25rem;
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  font-size: 0.5rem;
  inset-block-start: -25%;
  inset-inline-end: -0.5rem;
}
.avatar.avatar-sm {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 0.65rem;
}
.avatar.avatar-sm .avatar-badge {
  padding: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  line-height: 1.1rem;
  font-size: 0.5rem;
  inset-block-start: -28%;
  inset-inline-end: -0.45rem;
}
.avatar.avatar-sm.online:before, .avatar.avatar-sm.offline:before {
  width: 0.5rem;
  height: 0.5rem;
}
.avatar.avatar-md {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 0.8rem;
}
.avatar.avatar-md .avatar-badge {
  padding: 0.4rem;
  width: 1.2rem;
  height: 1.2rem;
  line-height: 1.2rem;
  font-size: 0.65rem;
  inset-block-start: -6%;
  inset-inline-end: -13%;
}
.avatar.avatar-md.online:before, .avatar.avatar-md.offline:before {
  width: 0.75rem;
  height: 0.75rem;
}
.avatar.avatar-md svg {
  width: 1.5rem;
  height: 1.5rem;
}
.avatar.avatar-lg {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  font-size: 1rem;
}
.avatar.avatar-lg .avatar-badge {
  inset-block-start: -15%;
  inset-inline-end: -0.25%;
}
.avatar.avatar-lg.online:before, .avatar.avatar-lg.offline:before {
  width: 0.8rem;
  height: 0.8rem;
}
.avatar.avatar-lg svg {
  width: 1.8rem;
  height: 1.8rem;
}
.avatar.avatar-xl {
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.25rem;
}
.avatar.avatar-xl .avatar-badge {
  inset-block-start: -8%;
  inset-inline-end: -0.2%;
}
.avatar.avatar-xl.online:before, .avatar.avatar-xl.offline:before {
  width: 0.95rem;
  height: 0.95rem;
}
.avatar.avatar-xxl {
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  font-size: 1.5rem;
}
.avatar.avatar-xxl .avatar-badge {
  inset-block-start: -4%;
  inset-inline-end: 0rem;
}
.avatar.avatar-xxl.online:before, .avatar.avatar-xxl.offline:before {
  width: 1.05rem;
  height: 1.05rem;
  inset-block-end: 0.25rem;
}
.avatar.avatar-xxxl {
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  font-size: 1.75rem;
}
.avatar.avatar-xxxl .avatar-badge {
  inset-block-start: -4%;
  inset-inline-end: 0rem;
}
.avatar.avatar-xxxl.online:before, .avatar.avatar-xxxl.offline:before {
  width: 1.05rem;
  height: 1.05rem;
  inset-block-end: 0.25rem;
}

.avatar-list-stacked {
  padding: 0;
}
.avatar-list-stacked.avatar-group-overlapped .avatar {
  margin-right: -0.875rem;
}
.avatar-list-stacked.avatar-group-overlapped .avatar:hover {
  z-index: 1;
}
.avatar-list-stacked.avatar-group-lg .avatar {
  width: 3.25rem;
  height: 3.25rem;
}
.avatar-list-stacked.avatar-group-lg .avatar > .initial-wrap {
  font-size: 0.95rem;
}
.avatar-list-stacked.avatar-group-lg.avatar-group-overlapped .avatar {
  margin-right: -1rem;
}
.avatar-list-stacked.avatar-group-sm .avatar {
  width: 2rem;
  height: 2rem;
}
.avatar-list-stacked.avatar-group-sm .avatar > .initial-wrap {
  font-size: 0.6rem;
}
.avatar-list-stacked.avatar-group-sm.avatar-group-overlapped .avatar {
  margin-right: -0.625rem;
}
.avatar-list-stacked .avatar {
  margin-inline-end: -0.875rem !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: middle;
  transition: transform ease 200ms;
}
.avatar-list-stacked .avatar:last-child {
  margin-inline-end: 0 !important;
}
.avatar-list-stacked .avatar:hover {
  z-index: 1;
  transform: translateY(-0.188rem);
}

.avatar-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.avatar-group .avatar {
  width: 2.625rem;
  height: 2.625rem;
}
.avatar-group .avatar .avatar-img,
.avatar-group .avatar > .initial-wrap {
  border: 2px solid #E4E8EB;
  font-size: 0.9rem;
}
.avatar-group.avatar-group-overlapped .avatar {
  margin-right: -0.875rem;
}
.avatar-group.avatar-group-overlapped .avatar:hover {
  z-index: 1;
}
.avatar-group.avatar-group-lg .avatar {
  width: 3.25rem;
  height: 3.25rem;
}
.avatar-group.avatar-group-lg .avatar > .initial-wrap {
  font-size: 0.95rem;
}
.avatar-group.avatar-group-lg.avatar-group-overlapped .avatar {
  margin-right: -1rem;
}
.avatar-group.avatar-group-sm .avatar {
  width: 2rem;
  height: 2rem;
}
.avatar-group.avatar-group-sm .avatar > .initial-wrap {
  font-size: 0.6rem;
}
.avatar-group.avatar-group-sm.avatar-group-overlapped .avatar {
  margin-right: -0.625rem;
}

.avatar-group .avatar + .avatar {
  margin-left: -0.75rem;
}

.avatar-group .avatar:hover {
  z-index: 1;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #FF9900;
  text-shadow: unset;
}

.bootstrap-datetimepicker-widget table td.today:before {
  border-bottom-color: #FF9900;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: transparent;
}

.bor-b1 {
  border-bottom: 1px solid #000;
}

.btn-primary {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 20px;
  border: 1px solid #FFCE26;
  border-radius: 50px;
  background: #FFCE26;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}
@media (max-width: 767.98px) {
  .btn-primary {
    font-size: 14px;
    padding: 8px 15px;
  }
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active,
.btn-primary:active,
.open > .dropdown-toggle.btn-primary {
  border: 1px solid #f2bb00;
  background: #f2bb00;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary.focus:active,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
  background-color: #f2bb00;
  border: 1px solid #f2bb00;
}

.btn-primary.active:focus:not(:disabled):not(.disabled),
.btn-primary:active:focus:not(:disabled):not(.disabled),
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: unset;
}

.btn-secondary {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 20px;
  border: 1px solid #26262C;
  border-radius: 50px;
  background: #26262C;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}
@media (max-width: 767.98px) {
  .btn-secondary {
    font-size: 14px;
    padding: 8px 15px;
  }
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active,
.btn-secondary:active,
.open > .dropdown-toggle.btn-secondary {
  border: 1px solid #FFCE26;
  background: #FFCE26;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-secondary.active.focus,
.btn-secondary.active:focus,
.btn-secondary.active:hover,
.btn-secondary.focus:active,
.btn-secondary:active:focus,
.btn-secondary:active:hover,
.open > .dropdown-toggle.btn-secondary.focus,
.open > .dropdown-toggle.btn-secondary:focus,
.open > .dropdown-toggle.btn-secondary:hover {
  background-color: #FFCE26;
  border: 1px solid #FFCE26;
}

.btn-secondary.active:focus:not(:disabled):not(.disabled),
.btn-secondary:active:focus:not(:disabled):not(.disabled),
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: unset;
}

.btn-light {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  padding: 10px 20px;
  border: 1px solid #E4E8EB;
  background: #ffffff;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}
@media (max-width: 767.98px) {
  .btn-light {
    font-size: 14px;
    padding: 8px 15px;
  }
}

.btn-light:hover,
.btn-light:focus,
.btn-light.active,
.btn-light:active,
.open > .dropdown-toggle.btn-light {
  border: 1px solid #E4E8EB;
  background: #E4E8EB;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-light.active.focus,
.btn-light.active:focus,
.btn-light.active:hover,
.btn-light.focus:active,
.btn-light:active:focus,
.btn-light:active:hover,
.open > .dropdown-toggle.btn-light.focus,
.open > .dropdown-toggle.btn-light:focus,
.open > .dropdown-toggle.btn-light:hover {
  background-color: #E4E8EB;
  border: 1px solid #E4E8EB;
}

.btn-light.active:focus:not(:disabled):not(.disabled),
.btn-light:active:focus:not(:disabled):not(.disabled),
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: unset;
}

.select2-container--default .select2-selection--single {
  height: 40px !important;
  border: 1px solid #E4E8EB !important;
  padding: 5px 10px !important;
  border-radius: 6px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #FFCE26 !important;
  color: #ffffff !important;
}

.btn-hvr, .link-hvr {
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease 0s;
  position: relative;
}
.btn-hvr::after, .link-hvr::after {
  content: "";
  display: block;
  width: 150px;
  height: 48px;
  border-radius: 50%;
  background: #26262C;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.5s ease 0s;
}
.btn-hvr:hover::after, .link-hvr:hover::after {
  transform: translate(-50%, -50%) scale(5);
  background: rgba(0, 0, 0, 0.2);
}

.link-tag {
  background-color: #FFCE26;
  height: 44px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 0 25px;
  transition: all 0.7s ease 0s;
  line-height: 44px;
}
.link-tag:hover {
  background-color: #26262C;
  color: #ffffff;
}
@media (max-width: 575px) {
  .link-tag {
    width: 49%;
  }
}

.link-hvr {
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease 0s;
  position: relative;
}
.link-hvr::after {
  content: "";
  display: block;
  width: 80px;
  height: 48px;
  border-radius: 50%;
  background: #FFCE26;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.5s ease 0s;
}
.link-hvr:hover::after {
  transform: translate(-50%, -50%) scale(5);
  background: rgba(0, 0, 0, 0.2);
}

.table {
  width: 100%;
  color: #000000;
  border: 1px solid #E4E8EB;
  margin-bottom: 0;
}
.table > tbody > tr > th {
  border-top: 0;
  padding: 10px;
}
.table.dataTable {
  margin: 0 !important;
  border-collapse: collapse !important;
}
.table thead {
  background-color: #F1F4F6;
  border-bottom: 1px solid #F1F4F6;
}
.table thead tr {
  border-bottom: 1px solid #E4E8EB;
}
.table thead tr:last-child {
  border-color: transparent;
}
.table thead tr th {
  font-weight: 500;
  color: #000000;
  border: 0;
  vertical-align: middle;
  padding: 10px;
  background: transparent;
  box-shadow: none;
}
.table thead tr th:first-child {
  padding-right: 0 !important;
}
.table tbody tr {
  border-bottom: 1px solid #E4E8EB;
}
.table tbody tr td {
  vertical-align: middle;
  padding: 10px;
}
.table tbody tr td::first-child {
  padding: 0;
}
.table tbody tr .light-text {
  color: #99A2A8;
}

table.table td h2 {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}
table.table td h2.table-avatar {
  align-items: center;
  display: inline-flex;
  font-size: inherit;
  font-weight: regular;
  vertical-align: middle;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
table.table td h2 a {
  font-weight: 500;
  color: #000000;
}
table.table td h2 a:hover {
  color: #FFCE26;
}
table.table td h2 span {
  color: #99A2A8;
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 3px;
}
table .badge {
  font-size: 13px;
  font-weight: 400;
  min-width: 70px;
  padding: 7px 9px;
  border-radius: 50px;
}
table .bg-light-success {
  color: #71DE71;
  background: #EAFFEA;
}
table .bg-light-warning {
  color: #FF9900;
  background: #FFF3DC;
}
table .bg-light-danger {
  color: #FF0000;
  background: #FFEAEA;
}

.table-responsive {
  white-space: nowrap;
}

.table-space {
  width: 100px;
}

.card.table-card .card-body {
  padding: 15px;
}

#tablelength {
  margin-bottom: 15px;
}

#tablelength label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin: 0;
}

#tablelength .dataTables_length {
  margin-top: 0 !important;
}

#tablelength .form-control.form-control-sm {
  height: 34px;
  appearance: auto;
  min-height: 34px;
  min-width: 56px;
  width: 56px;
  padding: 4px 8px;
  margin-left: 10px;
}

.nav-table-filter {
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  margin-bottom: 15px;
}
.nav-table-filter li {
  margin-right: 10px;
}
.nav-table-filter li:last-child {
  margin-right: 0;
}
.nav-table-filter .form-control.form-control-sm {
  height: 35px;
}

#tablefilter label {
  margin: 0;
}

.tab-footer .pagination {
  justify-content: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  margin-bottom: 0;
}
.tab-footer .dataTables_info {
  float: left;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
}
.tab-footer .dataTables_paginate .pagination li:last-child {
  margin: 0;
}
.tab-footer .dataTables_paginate .pagination li a {
  font-size: 14px;
  border-radius: 3px !important;
}
.tab-footer .dataTables_paginate .pagination li a.page-link:focus {
  box-shadow: none;
}
.tab-footer .dataTables_paginate .pagination li.active a.page-link {
  color: #ffffff;
}
.tab-footer .dataTables_paginate .pagination li.previous .page-link {
  font-size: 18px;
  background: transparent;
  border: 0;
}
.tab-footer .dataTables_paginate .pagination li.previous .page-link:hover {
  color: #FFCE26;
}
.tab-footer .dataTables_paginate .pagination li.next .page-link {
  font-size: 18px;
  background: transparent;
  border: 0;
}
.tab-footer .dataTables_paginate .pagination li.next .page-link:hover {
  color: #FFCE26;
}

.table-card table.dataTable > thead .sorting:before, .table-card table.dataTable > thead .sorting_asc:before, .table-card table.dataTable > thead .sorting_desc:before, .table-card table.dataTable > thead .sorting_asc_disabled:before, .table-card table.dataTable > thead .sorting_desc_disabled:before {
  content: "\f0de" !important;
  font-weight: 600;
}

.table-card table.dataTable > thead .sorting:after, .table-card table.dataTable > thead .sorting_asc:after, .table-card table.dataTable > thead .sorting_desc:after, .table-card table.dataTable > thead .sorting_asc_disabled:after, .table-card table.dataTable > thead .sorting_desc_disabled:after {
  content: "\f0dd" !important;
  font-weight: 600;
  bottom: 14px !important;
}

.data-check-list .nav li {
  margin-right: 4px;
}
.data-check-list .nav li:last-child {
  margin-right: 0;
}
.data-check-list span {
  width: 17px;
  height: 7px;
  border-radius: 2px;
  display: inline-block;
}
.data-check-list .check-list-active {
  background: #71DE71;
}
.data-check-list .check-list-warning {
  background: #FF9900;
}
.data-check-list .check-list-danger {
  background: #FF0000;
}
.data-check-list p {
  font-size: 12px;
  color: #99A2A8;
  margin-bottom: 0;
}
.data-check-list p span {
  color: #000000;
}
.data-check-list p a {
  font-weight: 400;
  color: #99A2A8;
}
.data-check-list .view-checklist {
  position: relative;
  display: inline-block;
}
.data-check-list .view-checklist:after {
  content: "";
  height: 1px;
  width: 100%;
  background: #99A2A8;
  transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  bottom: 1px;
  left: 0;
}
.data-check-list .view-checklist:hover {
  color: #FFCE26;
}
.data-check-list .view-checklist:hover:after {
  transform: scale(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
}

.table-action .dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  font-size: 20px;
  color: #000000;
  background: transparent;
}

.table-action .dropdown-toggle::after {
  display: none;
}

.table-action .dropdown-menu {
  min-width: 170px;
  border-radius: 6px;
  border: 0;
  padding: 0;
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 0, 0.1490196078);
}

.table-action .dropdown-menu .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-size: 14px;
  color: #606060;
  padding: 10px 15px;
  border-bottom: 0;
  border-radius: 0;
  -webkit-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.dropdown-item.active, .dropdown-item:active {
  background: #E4E8EB;
}

.table-action .dropdown-menu .dropdown-item:first-child {
  border-radius: 6px 6px 0 0;
}

.table-action .dropdown-menu .dropdown-item:last-child {
  border-radius: 0 0 6px 6px;
  border-bottom: 0;
}

.table-action .dropdown-menu .dropdown-item:hover {
  color: #FFCE26;
  padding-left: 20px;
  -webkit-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.table-action .dropdown-menu .dropdown-item i {
  font-size: 16px;
  margin-right: 8px;
}

.breadcrumb-bar {
  background: #194185;
  margin: 0;
  padding: 20px 0 10px;
}
.breadcrumb-bar .breadcrumb-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.breadcrumb-bar .breadcrumb-info .breadcrumb-title {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .breadcrumb-bar .breadcrumb-info .breadcrumb-title {
    font-size: 18px;
  }
}
.breadcrumb-bar .breadcrumb {
  margin: 0;
  padding: 0;
}
.breadcrumb-bar .breadcrumb-item {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 10px;
}
.breadcrumb-bar .breadcrumb-item a {
  color: #FFA500;
}
.breadcrumb-bar .breadcrumb-item a:hover {
  color: #FFCE26;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
}

.breadcrumb-arrow .breadcrumb-item + .breadcrumb-item::before {
  color: #9595b5;
  content: "\f101";
  font-family: "Fontawesome" !important;
}

.breadcrumb-pipe .breadcrumb-item + .breadcrumb-item::before {
  color: #9595b5;
  content: "\f061";
  font-family: "Fontawesome" !important;
}

.breadcrumb-line .breadcrumb-item + .breadcrumb-item::before {
  color: #9595b5;
  content: "-";
}

.breadcrumb-dot .breadcrumb-item + .breadcrumb-item::before {
  color: #9595b5;
  content: "•";
}

.breadcrumb-divide .breadcrumb-item + .breadcrumb-item::before {
  color: #9595b5;
  content: "\f054";
  font-family: "Fontawesome" !important;
}

.breadcrumb-separatorless .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: none;
}

.breadcrumb-colored {
  padding: 12px 15px;
  border-radius: 6px;
}
.breadcrumb-colored li a {
  color: #ffffff;
}
.breadcrumb-colored .breadcrumb-item a {
  color: #ffffff;
}
.breadcrumb-colored .breadcrumb-item.active {
  color: #ffffff;
  opacity: 0.8;
}
.breadcrumb-colored .breadcrumb-item + .breadcrumb-item a {
  color: #ffffff;
}
.breadcrumb-colored .breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
}

.embedded-breadcrumb:before {
  opacity: 0.7;
}

[data-theme-mode=dark] .embedded-breadcrumb:before {
  filter: invert(1);
}

.breadcrumb-div {
  padding: 60px;
  text-align: center;
  background: url("../../assets/img/breadcrumb.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 991.98px) {
  .breadcrumb-div {
    padding: 20px;
  }
}
.breadcrumb-div .breadcrumb-links ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  gap: 20px;
  background: #fff;
  border-radius: 3px;
  padding: 5px 10px;
}
@media (max-width: 991.98px) {
  .breadcrumb-div .breadcrumb-links ul {
    display: none;
  }
}
.breadcrumb-div .breadcrumb-links ul li {
  position: relative;
}
.breadcrumb-div .breadcrumb-links ul li a {
  color: #000;
  font-size: 14px;
}
.breadcrumb-div .breadcrumb-links ul li a.active {
  color: #2CCAB9;
  text-decoration: underline;
}
.breadcrumb-div .breadcrumb-links ul li + li::after {
  position: absolute;
  content: "/";
  left: -13px;
  top: 0;
  color: #000;
}
.breadcrumb-div .breadcrumb-head h5 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  .breadcrumb-div .breadcrumb-head h5 {
    font-size: 30px;
  }
}
.breadcrumb-div .breadcrumb-content p {
  color: #FFFFFF;
  font-size: 18px;
  max-width: 800px;
  margin: auto;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .breadcrumb-div .breadcrumb-content p {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .breadcrumb-div .breadcrumb-content p {
    display: none;
  }
}

/******* Vendors ******/
.select2-container {
  min-width: 100% !important;
  z-index: 99;
}
.select2-container .select2-selection--single {
  height: 40px;
}

.select2-container--default .select2-selection--single {
  border: 1px solid var(--Stroke, rgba(145, 158, 171, 0.3));
  border-radius: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000000;
  line-height: 38px;
  border-radius: 5px;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 400;
}
.select2-container--default .select2-selection--single .select {
  width: 219px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  right: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: absolute;
  top: 50%;
  left: 50%;
  border-color: #637381;
  border-style: solid;
  border-width: 0 2px 2px 0;
  padding: 3px;
  height: 0;
  margin-left: -6px;
  margin-top: -3px;
  width: 0;
  transform: rotate(45deg) translateY(-50%);
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: #000000;
  border-width: 2px 0 0 2px;
  margin-top: 3px;
  padding: 3px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #FFCE26;
  color: #ffffff;
}

.select2-container--focus .select2-selection--single {
  background: #ffffff !important;
  border-color: #FFCE26;
}

span.select2-container.select2-container--default.select2-container--open {
  z-index: 9999;
}

.select2-container--classic .select2-selection--single,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple,
.select2-container--classic .select2-selection--single .select2-selection__arrow,
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  border-color: #000;
  color: #000000;
  height: 40px;
  line-height: 40px;
}

.select2-container--default .select2-selection--multiple {
  line-height: 27px;
  height: auto;
  min-height: 40px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: #17a2b8;
  border-color: #17a2b8;
  color: #ffffff;
}

table.dataTable > thead .sorting:after,
table.dataTable > thead .sorting_asc:after,
table.dataTable > thead .sorting_desc:after,
table.dataTable > thead .sorting_asc_disabled:after,
table.dataTable > thead .sorting_desc_disabled:after {
  right: 0.5em !important;
  content: "\f107" !important;
  font-family: "Font Awesome 5 Free";
  bottom: 12px !important;
  color: #BABFC7 !important;
  font-size: 12px !important;
  opacity: 1 !important;
  position: absolute;
}

table.dataTable > thead .sorting:before,
table.dataTable > thead .sorting_asc:before,
table.dataTable > thead .sorting_desc:before,
table.dataTable > thead .sorting_asc_disabled:before,
table.dataTable > thead .sorting_desc_disabled:before {
  right: 0.5em !important;
  content: "\f106" !important;
  font-family: "Font Awesome 5 Free";
  top: 12px !important;
  color: #BABFC7 !important;
  font-size: 12px !important;
  opacity: 1 !important;
  position: absolute;
}

.dataTables_paginate .paging_numbers {
  float: right;
}

.dataTables_info {
  float: right;
  padding-right: 15px;
  font-size: 12px;
  color: #000;
  font-weight: 600;
}

.custom-select {
  min-width: 80px;
  background: no-repeat 95% 50%;
}

.dataTables_paginate .pagination li {
  margin: 0 5px;
}
.dataTables_paginate .pagination li a {
  background: var(--Stroke, rgba(145, 158, 171, 0.3));
  border-radius: 85px !important;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5B6670;
}
.dataTables_paginate .pagination li a:hover {
  background: #FFCE26;
  color: #ffffff;
}
.dataTables_paginate .pagination li.active a.page-link {
  background: #FFCE26;
  border-color: #FFCE26;
  border-radius: 85px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dataTables_paginate .pagination li.previous.disabled {
  width: 20px;
}
.dataTables_paginate .pagination li.previous.disabled a {
  background-color: transparent;
  border: 0;
  width: 20px;
}
.dataTables_paginate .pagination li.next.disabled {
  width: 20px;
}
.dataTables_paginate .pagination li.next.disabled a {
  background-color: transparent;
  border: 0;
  width: 20px;
}

.dataTables_length,
.dataTables_paginate {
  margin-top: 15px !important;
}

div.dataTables_wrapper div.dataTables_info {
  padding-top: 23px;
}

table.dataTable thead > tr > th.no-sort.sorting_asc:before {
  display: none;
}

table.dataTable thead > tr > th.no-sort.sorting_asc::after {
  display: none;
}

table.dataTable thead > tr > th.no-sort.sorting:before {
  display: none;
}

table.dataTable thead > tr > th.no-sort.sorting::after {
  display: none;
}

/****** Layout ******/
.content {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
@media (max-width: 991.98px) {
  .content {
    padding: 40px 0;
  }
}

.page-header {
  margin-bottom: 14px;
}
.page-header .page-title {
  font-size: 24px;
  font-weight: 600;
  color: #2F4B64;
  margin-bottom: 10px;
}
.page-header .page-title span {
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .page-header .page-title {
    font-size: 20px;
  }
}

.swal2-header .swal2-title {
  font-size: 18px;
}

.none {
  display: none !important;
}

.text-red {
  color: #FF0000 !important;
}

.text-primary {
  color: #FFCE26 !important;
}

.text-green {
  color: #71DE71 !important;
}

.input-blocks input[type=text]:focus {
  border-color: #e9edf6;
}

.input-group .scanner-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  background: #FFCE26;
  border-radius: 5px !important;
  width: 40px;
  color: #ffffff;
  font-weight: 600;
  padding: 0;
}
.input-group .scanner-set:hover {
  background: #1B2850;
}

.swal2-header .swal2-title {
  font-size: 18px;
}

.none {
  display: none !important;
}

.text-gray {
  color: #606060 !important;
}

.text-danger {
  color: #FF0000 !important;
}

.text-success {
  color: #71DE71 !important;
}

.bg-light-success {
  background: #F5FFF5;
}

.bg-light-danger {
  background: #FFF6F6;
}

.bg-light-gray {
  background: #F6F6F6;
}

.input-blocks input[type=text]:focus {
  border-color: #e9edf6;
}

.custom-control.custom-checkbox .checkboxs {
  line-height: 1;
}

.custom-control.custom-checkbox .checkmarks {
  border-radius: 5px;
}

.custom-control.custom-checkbox .checkboxs input {
  cursor: auto;
}

.checkboxs {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}
.checkboxs input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkboxs input ~ .checkmarks {
  border: 1px solid #000;
  border-radius: 5px;
}
.checkboxs input:checked ~ .checkmarks {
  background-color: #FFCE26;
  border-color: #FFCE26;
}
.checkboxs input:checked ~ .checkmarks:after {
  display: block;
}
.checkboxs .checkmarks {
  height: 15px;
  width: 15px;
  position: absolute;
  top: 0;
  left: 0;
}
.checkboxs .checkmarks:after {
  content: "";
  position: absolute;
  display: none;
}
.checkboxs .checkmarks:after {
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

th .checkboxs .checkmarks, td .checkboxs .checkmarks {
  width: 18px;
  height: 18px;
}
th .checkboxs .checkmarks::after, td .checkboxs .checkmarks::after {
  left: 6px;
  top: 3px;
}

.checktoggle {
  background-color: rgba(115, 103, 240, 0.2);
  border-radius: 12px;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 13px;
  margin-bottom: 0;
  position: relative;
  width: 25px;
}
.checktoggle:after {
  content: " ";
  display: block;
  transform: translate(2px, -50%);
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  transition: left 300ms ease, transform 300ms ease;
  border-radius: 50%;
  transform: translate(2px, -50%);
  -webkit-transform: translate(2px, -50%);
  -ms-transform: translate(2px, -50%);
  position: absolute;
  top: 50%;
  left: 0;
}

.check:checked + .checktoggle:after {
  background-color: #ffffff;
  left: 100%;
  transform: translate(calc(-90% - 3px), -45%);
}

.check {
  display: block;
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.check:checked + .checktoggle {
  background-color: #71DE71;
}

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

.card {
  background: #ffffff;
  border: 1px solid #f8f9fa;
  border-radius: 0;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1490196078);
  margin: 0 0 24px;
}
@media (max-width: 767.98px) {
  .card {
    margin: 0 0 20px;
  }
}
.card .card-header {
  background: #ffffff;
  border-bottom: 1px solid #E4E8EB;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media (max-width: 767.98px) {
  .card .card-header {
    padding: 20px;
  }
}
.card .card-header .card-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 767.98px) {
  .card .card-header .card-title {
    font-size: 18px;
  }
}
.card .card-header .view-all-link {
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.card .card-header .view-all-link:after {
  content: "";
  height: 1px;
  width: 100%;
  background: #FFCE26;
  transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  bottom: 0px;
  left: 0;
}
.card .card-header .view-all-link:hover:after {
  transform: scale(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
}
.card .card-body {
  padding: 24px;
}
@media (max-width: 767.98px) {
  .card .card-body {
    padding: 20px;
  }
}
.card .card-footer {
  background: #ffffff;
  border-top: 1px solid #E4E8EB;
  padding: 24px;
}
@media (max-width: 767.98px) {
  .card .card-footer {
    padding: 20px;
  }
}

.table-checkbox {
  position: relative;
}
.table-checkbox .check-input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.table-checkbox .check-input input {
  display: none;
}
.table-checkbox .check-input input:checked + .box {
  background: #FFCE26;
}
.table-checkbox .check-input input:checked + .box:after {
  top: 0;
}
.table-checkbox .check-input .box {
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 8px;
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  background: #ffffff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #E4E8EB;
  border-radius: 5px;
}
.table-checkbox .check-input .box:after {
  width: 12px;
  height: 6px;
  content: "";
  position: absolute;
  border-left: 2px solid;
  border-bottom: 2px solid;
  border-color: #ffffff;
  transform: rotate(-45deg) translate3d(0, 0, 0);
  transform-origin: center center;
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  left: 0;
  right: 0;
  top: 200%;
  bottom: 3px;
  margin: auto;
}

.dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  font-size: 20px;
  color: #000000;
  background: transparent;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  min-width: 170px;
  border-radius: 6px;
  border: 0;
  padding: 0;
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 0, 0.1490196078);
}

.dropdown-menu .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-size: 14px;
  color: #606060;
  padding: 10px 15px;
  border-bottom: 1px solid #f8f9fa;
  border-radius: 0;
  -webkit-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.dropdown-item.active, .dropdown-item:active {
  background: #E4E8EB;
}

.dropdown-menu .dropdown-item:first-child {
  border-radius: 6px 6px 0 0;
}

.dropdown-menu .dropdown-item:last-child {
  border-radius: 0 0 6px 6px;
  border-bottom: 0;
}

.dropdown-menu .dropdown-item:hover {
  color: #FFCE26;
  padding-left: 20px;
  -webkit-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.dropdown-menu .dropdown-item i {
  font-size: 16px;
  margin-right: 8px;
}

.pagination {
  padding: 0;
  margin-bottom: 20px;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}
@media (max-width: 767.98px) {
  .pagination {
    margin-bottom: 0;
  }
}
.pagination .nav {
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.pagination .nav li {
  margin-right: 10px;
  margin-bottom: 5px;
}
.pagination .nav li:last-child {
  margin-right: 0;
}
.pagination .nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  color: #606060;
  background: #ffffff;
  border-radius: 3px;
}
.pagination .nav li a:hover {
  color: #FFCE26;
}
.pagination .nav li a.active {
  color: #ffffff;
  background: #FFCE26;
}
.pagination .nav li a.active:hover {
  color: #ffffff;
}

.datepicker table tr td.active {
  background-image: none !important;
  background-color: #FFCE26;
}

.header {
  background-color: #0150A4;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 767.98px) {
  .header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.header.home {
  position: absolute;
  background-color: transparent;
}
.header.home.fixed {
  background-color: #0150A4;
}
.header.fixed {
  position: fixed;
  background-color: #0150A4;
  box-shadow: 0px 3px 53px rgba(197, 197, 197, 0.27);
}
.header .logo a {
  float: left;
}
.header .logo a img {
  float: left;
  max-height: 32px;
}
.header .header-nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  padding: 10px 0;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .header .header-nav {
    padding: 15px 0;
  }
}
.header .header-nav .main-nav > li > a {
  font-size: 15px;
  color: #ffffff;
  line-height: 75px;
  font-weight: 400;
}
@media (max-width: 1199.98px) {
  .header .header-nav .main-nav > li > a {
    font-size: 15px;
  }
}
@media (max-width: 991.98px) {
  .header .header-nav .main-nav > li > a {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .header .header-nav .main-nav > li > a {
    color: #ffffff;
  }
}
.header .header-nav .main-nav > li > a:hover {
  color: #FFCE26;
}
.header .header-nav .main-nav > li .submenu li {
  position: relative;
}
.header .header-nav .main-nav > li .submenu li.active {
  color: #FFCE26;
}
.header .header-nav .main-nav > li .submenu li.active > a {
  color: #FFCE26;
}
.header .header-nav .main-nav > li .submenu li a {
  display: block;
  padding: 10px 15px 10px;
  clear: both;
  white-space: nowrap;
  color: #606060;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  width: 100%;
  position: relative;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .header .header-nav .main-nav > li .submenu li a {
    padding: 10px;
    color: #000000;
    font-size: 14px;
    padding: 10px 25px 10px;
  }
}
.header .header-nav .main-nav > li .submenu li a:hover {
  color: #FFCE26;
  padding-left: 20px;
}
.header .header-nav .main-nav > li .login-link {
  display: none;
}
.header .navbar-header .navbar-brand {
  display: inline-block;
  max-width: 122px;
  padding: 0;
  line-height: 0;
}
@media (max-width: 991.98px) {
  .header .navbar-header .navbar-brand {
    margin-right: 0;
    max-width: none;
  }
}
@media (max-width: 992px) {
  .header .navbar-header .logo {
    display: none;
  }
}
.header .navbar-header .logo-small {
  display: none;
}
@media (max-width: 992px) {
  .header .navbar-header .logo-small {
    display: block;
    width: 100%;
    text-align: center;
  }
  .header .navbar-header .logo-small img {
    max-height: 35px;
  }
}
.header .navbar-header #mobile_btn {
  display: none;
  margin-right: 30px;
}
@media (max-width: 991.98px) {
  .header .navbar-header #mobile_btn {
    display: inline-block;
    line-height: 0;
    left: 0;
    margin-right: 0;
    padding: 0 0px;
    position: absolute;
    z-index: 99;
  }
}
.header .navbar-header #mobile_btn .bar-icon {
  display: inline-block;
  width: 31px;
}
.header .navbar-header #mobile_btn .bar-icon span {
  background-color: #FFCE26;
  display: block;
  float: left;
  height: 3px;
  margin-bottom: 7px;
  width: 31px;
  border-radius: 2px;
  margin-bottom: 5px;
}
.header .navbar-header #mobile_btn .bar-icon span:nth-child(2) {
  width: 20px;
}
.header .navbar-header #mobile_btn .bar-icon span:nth-child(3) {
  width: 16px;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .header .navbar-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.header .main-menu-wrapper {
  margin: auto auto 0 auto;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper {
    order: 3;
    width: 260px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 11111;
    transform: translateX(-260px);
    transition: all 0.4s;
    background: #26262C;
    margin: 0;
  }
}
.header .main-menu-wrapper .menu-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  display: none;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 77px;
    align-items: center;
  }
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .menu-header .menu-logo img {
    width: 104px;
  }
}
.header .main-menu-wrapper .menu-header .menu-close {
  font-size: 18px;
  color: #FFCE26;
}
.header .main-menu-wrapper .main-nav > li .submenu > li .submenu {
  left: 100%;
  top: 0;
  margin-top: 10px;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav > li .submenu > li .submenu {
    left: 0;
  }
}
.header .main-menu-wrapper .main-nav > li .submenu > li.has-submenu > a::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 12px;
  font-size: 13px;
}
.header .main-menu-wrapper .main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav {
    padding: 0;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    background: #26262C;
  }
}
.header .main-menu-wrapper .main-nav:last-child {
  margin-right: 0;
}
@media (max-width: 992px) {
  .header .main-menu-wrapper .main-nav > li {
    margin-right: 0;
  }
  .header .main-menu-wrapper .main-nav > li:last-child {
    margin-right: 0;
    border: 0;
  }
}
.header .main-menu-wrapper .main-nav > li.active > a {
  display: block;
  color: #FFCE26;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav > li.active > a {
    color: #FFCE26;
  }
}
.header .main-menu-wrapper .main-nav > li a i {
  font-size: 12px;
  margin-left: 3px;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav > li a {
    display: block;
    line-height: 20px;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
  }
  .header .main-menu-wrapper .main-nav > li a i {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) and (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav > li a i {
    float: right;
    margin-top: 5px;
    font-size: 14px;
  }
}
.header .main-menu-wrapper .main-nav > li:last-child {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
  }
}
@media (min-width: 992px) {
  .header .main-menu-wrapper .main-nav > li {
    position: relative;
    display: block;
    margin-right: 36px;
  }
  .header .main-menu-wrapper .main-nav > li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 1199.98px) {
  .header .main-menu-wrapper .main-nav > li {
    margin-right: 15px;
  }
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav > li {
    position: relative;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .header .main-menu-wrapper .main-nav > li ul {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    display: block;
    font-size: 14px;
    left: 0;
    margin: 0;
    min-width: 200px;
    opacity: 0;
    padding: 0;
    position: absolute;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    top: 100%;
    visibility: hidden;
    z-index: 1000;
  }
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info {
    padding: 0 0 0 15px;
  }
}
.header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info h4 {
  font-size: 14px;
  color: #FFCE26;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info h4 {
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}
.header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info p {
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info p {
    margin-bottom: 15px;
  }
}
.header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info p:last-child {
    margin-bottom: 15px;
  }
}
.header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info p a {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info p a {
    font-size: 13px;
  }
}
.header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info p a:hover {
  color: #FFCE26;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info p a:hover i {
  color: #FFCE26;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info p a i {
  font-size: 22px;
  color: #354052;
  margin: 0;
  margin-right: 10px;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .mega-menu-info p a i {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu {
    position: inherit;
  }
  .header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu .submenu {
    padding: 48px;
    width: 100%;
    min-width: inherit;
    border-radius: 30px;
  }
  .header .main-menu-wrapper .main-nav li.has-submenu.mega-submenu:hover .submenu {
    width: 100%;
    min-width: inherit;
    border-radius: 30px;
  }
  .header .main-menu-wrapper .main-nav li.has-submenu:hover > .submenu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    border-radius: 5px;
    border: 1px solid #D0D0D7;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1490196078);
  }
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav .has-submenu ul {
    display: none;
    background: #E6ECF1;
  }
}
.header .main-menu-wrapper .main-nav li.login-link {
  display: none;
}
@media (max-width: 991.98px) {
  .header .main-menu-wrapper .main-nav li.login-link {
    display: block;
  }
}
.header .header-navbar-rht {
  margin: 0;
  padding: 0;
}
@media (max-width: 575px) {
  .header .header-navbar-rht {
    margin-right: 15px;
  }
}
.header .header-navbar-rht > li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-right: 15px;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}
.header .header-navbar-rht > li:last-child {
  padding-right: 0px;
}
.header .header-navbar-rht > li .dropdown-menu {
  border: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.header .header-navbar-rht > li .dropdown-menu .dropdown-item {
  border-top: 1px solid #000000;
  padding: 10px 15px;
  font-size: 0.9375rem;
  font-weight: 600;
}
.header .header-navbar-rht > li .dropdown-menu .dropdown-item:hover {
  color: #FFCE26;
}
.header .header-navbar-rht > li .dropdown-menu .dropdown-item:last-child {
  border-top: 0;
  border-radius: 5px 5px 0 0;
}
.header .header-navbar-rht > li .dropdown-menu .dropdown-item:first-child {
  border-radius: 0 0 5px 5px;
}
.header .header-navbar-rht .nav-item span {
  margin: 0 8px 0 0;
}
.header .header-navbar-rht .nav-item .add-listing {
  font-weight: 500;
  font-size: 16px;
  color: #606060;
}
.header .header-navbar-rht .nav-item .add-listing span {
  color: #29344a;
}
.header .header-navbar-rht .nav-item .header-login {
  background-color: #606060;
  border: 1px solid #606060;
  box-shadow: inset 0 0 0 #ffffff;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 20px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .header .header-navbar-rht .nav-item .header-login {
    padding: 8px 12px;
    font-size: 14px;
  }
}
.header .header-navbar-rht .nav-item .header-login:hover {
  background-color: #ffffff;
  border: 1px solid #606060;
  box-shadow: inset 0 70px 0 0 #ffffff;
  color: #606060;
}
.header .header-navbar-rht .nav-item .header-reg {
  background-color: #26262C;
  border: 1px solid #26262C;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  padding: 9px 24px;
}
@media (max-width: 991.98px) {
  .header .header-navbar-rht .nav-item .header-reg {
    padding: 8px 12px;
    font-size: 14px;
  }
}
.header .header-navbar-rht .nav-item .header-reg:hover {
  background-color: #FFCE26;
  border: 1px solid #FFCE26;
  color: #ffffff;
}
.header .header-navbar-rht .nav-item .link-login {
  position: relative;
  font-size: 23px;
  font-weight: 500;
  color: #26262C;
  padding: 0;
  color: white;
}
.header .header-navbar-rht .nav-item .link-login:hover {
  color: #FFCE26;
}
.header .dropdown-toggle::after {
  display: none;
}

.menu-opened .main-menu-wrapper {
  transform: translateX(0);
}
.menu-opened .main-menu-wrapper body {
  overflow: hidden;
}

/****** Pages ******/
.card-box {
  opacity: 0;
  transform: translateY(50px);
}

.svg-arrow-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
}
.svg-arrow-row .arrow-icon {
  font-size: 25px;
  color: black;
  opacity: 0;
  animation: waveRight 1.5s infinite ease-in-out;
}

.floating-wrapper {
  display: inline-block;
  overflow: visible;
}
.floating-wrapper .floating-image {
  animation: floatUpDown 3s ease-in-out infinite;
}

/* Keyframes for smooth up-down floating */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Rightward wave animation */
@keyframes waveRight {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  50% {
    transform: translateX(10px);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
/* Staggered delays */
.arrow-icon:nth-child(1) {
  animation-delay: 0s;
}

.arrow-icon:nth-child(2) {
  animation-delay: 0.3s;
}

.arrow-icon:nth-child(3) {
  animation-delay: 0.6s;
}

.image-tilt-wrapper {
  perspective: 800px; /* key to enable 3D transforms */
  display: inline-block;
}

.tilt-container {
  display: inline-block;
  perspective: 1000px;
}

.tilt-image {
  height: auto;
  transition: transform 0.2s ease;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 95px 0 80px;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .banner-section {
    padding: 95px 0 60px;
  }
}
@media (max-width: 767.98px) {
  .banner-section {
    background: #ffffff;
    padding: 95px 0 40px;
  }
}
.banner-section .banner-info-blk {
  position: relative;
  z-index: 5;
}
@media (max-width: 1599.98px) {
  .banner-section .banner-info-blk {
    margin-top: 117px;
  }
}
@media (max-width: 991.98px) {
  .banner-section .banner-info-blk {
    margin-top: 0px;
  }
}
.banner-section .banner-info-blk span.sub-title {
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  padding-left: 68px;
  margin-bottom: 15px;
}
@media (min-width: 1599.98px) {
  .banner-section .banner-info-blk span.sub-title {
    font-size: 20px;
  }
}
.banner-section .banner-info-blk span.sub-title:before {
  width: 50px;
  height: 1px;
  content: "";
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.banner-section .banner-info-blk h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 68px;
  color: #ffffff;
  margin-bottom: 25px;
}
@media (min-width: 1599.98px) {
  .banner-section .banner-info-blk h1 {
    font-size: 68px;
  }
  .banner-section .banner-info-blk h1 span {
    font-size: 50px;
  }
}
@media (max-width: 991.98px) {
  .banner-section .banner-info-blk h1 {
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
  .banner-section .banner-info-blk h1 {
    font-size: 30px;
  }
}
.banner-section .banner-info-blk h1 span {
  display: block;
  font-size: 56px;
  font-weight: bold;
  color: #FFCE26;
}
@media (max-width: 767.98px) {
  .banner-section .banner-info-blk h1 span {
    font-size: 40px;
    line-height: 35px;
  }
}
.banner-section .banner-info-blk p {
  margin: 0;
  padding: 0;
  font-size: 23px;
}
.banner-section.banner-gif {
  color: #ffffff;
  min-height: 500px;
}
@media (min-width: 1599.98px) {
  .banner-section.banner-gif {
    min-height: 662px;
  }
}
.banner-section.banner-gif:before {
  background: url("../img/banner-img.jpg") right bottom/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .banner-section.banner-gif:before {
    background: #002E66;
  }
}

.btn-group .btn-style {
  background-color: #ffffff;
  padding: 10px 14px;
  border-radius: 130px;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  transition: transform 0.3s ease;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .btn-group .btn-style {
    font-size: 14px;
  }
}
.btn-group .btn-style span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 100%;
}
.btn-group .btn-style span i {
  transition: transform 0.3s ease;
}
.btn-group .btn-style:hover span {
  background-color: #FFCE26;
}

.text-slider {
  width: auto;
  height: 70px;
  overflow: hidden;
  position: relative;
}
.text-slider #text-group {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s ease-in-out;
}
.text-slider #text-group .slide {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: start;
}
@media (max-width: 767.98px) {
  .text-slider #text-group .slide {
    justify-content: center;
  }
}
.text-slider #text-group .slide img {
  width: 50px;
}

.banner-header {
  position: relative;
  text-align: center;
  padding-top: 30px;
}
@media (max-width: 1199.98px) {
  .banner-header {
    display: none;
  }
}
.banner-header h2 {
  font-size: 160px;
  color: rgba(110, 110, 110, 0.0588235294);
}
@media (max-width: 1299.98px) {
  .banner-header h2 {
    font-size: 100px;
  }
}

.banner-slider {
  position: relative;
}
.banner-slider .item {
  opacity: 0.4;
  transition: 0.4s ease all;
  margin: 0 20px;
  transform: scale(0.8);
}
@media (max-width: 1000px) {
  .banner-slider .item {
    margin: 0;
    transform: scale(0.9);
  }
}
.banner-slider .active .item {
  opacity: 1;
  transform: scale(1);
}
.banner-slider .owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}
.banner-slider img {
  border-radius: 30px;
}

.thumb-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  padding-bottom: 30px;
  position: relative;
  margin-top: -120px;
}
@media (max-width: 1299.98px) {
  .thumb-slider {
    margin-top: -80px;
  }
}
@media (max-width: 1199.98px) {
  .thumb-slider {
    margin-top: 30px;
  }
}
.thumb-slider .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  overflow: auto hidden;
  white-space: nowrap;
  flex-wrap: nowrap;
  width: 100% !important;
}

.thumb-slider .owl-item {
  border-radius: 50px;
}

.thumb-slider .owl-item .item {
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  padding: 15px 24px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 1299.98px) {
  .thumb-slider .owl-item .item {
    padding: 7px 20px;
    width: auto !important;
  }
}

.thumb-slider .slide1 {
  background: #26262C !important;
  border-radius: 50px;
  color: #ffffff;
}

.thumb-slider .active-thumb {
  background: #26262C;
  color: #ffffff;
  opacity: 1;
  transition: all 0.3s ease;
}

.thumb-slider .active-thumb .item {
  background: transparent;
}

@media (max-width: 1199.98px) {
  .scroll-down-info {
    display: none;
  }
}
.scroll-down-info .smooth-menu {
  color: #000000;
}
.scroll-down-info .scroll-down {
  position: absolute;
  right: auto;
  left: 100px;
  top: 100px;
}
@media (max-width: 1399.98px) {
  .scroll-down-info .scroll-down {
    left: 50px;
  }
}
.scroll-down-info .scroll-down .scroll-text {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  width: 150px;
  right: auto;
  left: -68px;
  top: 28px;
}
.scroll-down-info .scroll-down .scroll-text p {
  font-size: 14px;
  margin-bottom: 0;
}
.scroll-down-info .scroll-center {
  display: block;
  margin: 0 auto;
  width: 24px;
  height: 100px;
  margin-top: 135px;
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
  }
}
.banner-content {
  position: relative;
  text-align: center;
  padding: 80px 0;
}
@media (max-width: 1199.98px) {
  .banner-content {
    padding: 60px 0 0;
  }
}
@media (max-width: 767.98px) {
  .banner-content {
    padding: 40px 0 20px;
  }
}
.banner-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: #26262C;
  line-height: 76px;
  position: relative;
  justify-content: center;
  margin: 0 auto 32px;
}
@media (max-width: 1199.98px) {
  .banner-content h1 {
    font-size: 38px;
    line-height: 1.5;
    margin: 0 auto 30px;
  }
}
@media (max-width: 991.98px) {
  .banner-content h1 {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .banner-content h1 {
    font-size: 26px;
    margin: 0 auto 20px;
    flex-direction: column;
  }
}
.banner-content h1 img.shape-img {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: 70px;
}
@media (max-width: 991.98px) {
  .banner-content h1 img.shape-img {
    display: none;
  }
}
.banner-content p {
  font-size: 16px;
  max-width: 1050px;
  line-height: 29px;
  margin: 0 auto 0;
}
@media (max-width: 767.98px) {
  .banner-content p {
    font-size: 14px;
    line-height: 24px;
  }
}

.banner-shapes {
  position: relative;
}
@media (max-width: 1199.98px) {
  .banner-shapes {
    display: none;
  }
}
.banner-shapes .shape-img2 {
  position: absolute;
  top: 0;
  left: 0;
}
.banner-shapes .shape-img3 {
  position: absolute;
  top: 0;
  right: 0;
}

.banner-info {
  position: relative;
}
@media (max-width: 1199.98px) {
  .banner-info {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .banner-info {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .banner-info .banner-play {
    padding-bottom: 20px;
  }
}
.banner-info .banner-play a {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767.98px) {
  .banner-info .banner-play a {
    font-size: 13px;
  }
}
.banner-info .banner-play a:hover {
  color: #FFCE26;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.banner-info .banner-play a:hover span {
  color: #ffffff;
  border: 1px solid #FFCE26;
  background: #FFCE26;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.banner-info .banner-play a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  font-size: 20px;
  color: #000000;
  border: 1px solid #D0D0D7;
  border-radius: 100px;
  background: #ffffff;
  width: 80px;
  height: 40px;
  margin-bottom: 16px;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767.98px) {
  .banner-info .banner-play a span {
    font-size: 16px;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
}
.banner-info .banner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  text-align: center;
}
.banner-info .banner-list.banner-gif {
  /* Blur layer */
  background: rgba(255, 255, 255, 0.1); /* transparent glass feel */
  padding: 15px;
  border-radius: 15px;
  backdrop-filter: blur(10px); /* 👈 this does the blur */
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  color: white;
}
.banner-info .banner-list.banner-gif h4 {
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .banner-info .banner-list {
    text-align: left;
    display: block;
  }
}
.banner-info h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .banner-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .banner-info .banner-ratings {
    padding-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .banner-info .banner-review {
    padding-bottom: 20px;
  }
}
.banner-info .banner-border {
  width: 1px;
  height: 52px;
  background: #FFCE26;
}
@media (max-width: 767.98px) {
  .banner-info .banner-border {
    display: none;
  }
}

.ratings li {
  margin-right: 5px;
}
.ratings li:last-child {
  margin-right: 0;
}
.ratings li i {
  color: #D0D0D7;
}
.ratings li i.filled {
  color: #FFB906;
}

.banner-btn {
  position: relative;
  text-align: right;
}
@media (max-width: 767.98px) {
  .banner-btn {
    text-align: left;
  }
}
.banner-btn a {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 20px;
  padding-right: 60px;
}
@media (max-width: 767.98px) {
  .banner-btn a {
    font-size: 13px;
    padding: 8px 24px;
    background: #FFCE26;
    color: #ffffff;
    border-radius: 50px;
    display: inline-block;
  }
  .banner-btn a br {
    display: none;
  }
}
.banner-btn a span {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: #FFCE26;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  display: inline-block;
  animation: zigZag2 20s alternate infinite;
  -webkit-animation: zigZag2 20s alternate infinite;
  -moz-animation: zigZag2 20s alternate infinite;
}
@media (max-width: 991.98px) {
  .banner-btn a span {
    display: none;
  }
}

@keyframes zigZag2 {
  0% {
    -webkit-transform: rotate(0deg) translate(-10px, -10px);
    -ms-transform: rotate(0deg) translate(-10px, -10px);
    transform: rotate(0deg) translate(-10px, -10px);
  }
  20% {
    -webkit-transform: rotate(360deg) translate(-10px, -10px);
    -ms-transform: rotate(360deg) translate(-10px, -10px);
    transform: rotate(360deg) translate(-10px, -10px);
  }
  40% {
    -webkit-transform: rotate(0deg) translate(10px, 10px);
    -ms-transform: rotate(0deg) translate(10px, 10px);
    transform: rotate(0deg) translate(10px, 10px);
  }
  60% {
    -webkit-transform: rotate(360deg) translate(10px, 10px);
    -ms-transform: rotate(360deg) translate(10px, 10px);
    transform: rotate(360deg) translate(10px, 10px);
  }
  80% {
    -webkit-transform: rotate(0deg) translate(10px, 10px);
    -ms-transform: rotate(0deg) translate(10px, 10px);
    transform: rotate(0deg) translate(10px, 10px);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(-10px, -10px);
    -ms-transform: rotate(360deg) translate(-10px, -10px);
    transform: rotate(360deg) translate(-10px, -10px);
  }
}
.section-header {
  padding-bottom: 60px;
}
@media (max-width: 767.98px) {
  .section-header {
    padding-bottom: 40px;
  }
}
.section-header h6 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  background: #ffffff;
  border: 1px solid #D0D0D7;
  border-radius: 100px;
  display: inline-block;
  padding: 4px 16px;
}
@media (max-width: 991.98px) {
  .section-header h6 {
    font-size: 15px;
  }
}
.section-header h2 {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .section-header h2 {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 24px;
  }
}
.section-header h2 span {
  color: #FFCE26;
}

.benefit-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(212.38deg, #EAFFFD 6.52%, #FBFFFE 80.6%);
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  .benefit-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .benefit-section {
    padding: 40px 0;
  }
}
.benefit-section .benefit-text {
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  .benefit-section .benefit-text {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .benefit-section .benefit-text {
    margin-bottom: 20px;
  }
}

.benefit-shape {
  position: relative;
}
@media (max-width: 1199.98px) {
  .benefit-shape {
    display: none;
  }
}
.benefit-shape img {
  position: absolute;
  top: -180px;
  right: 0;
  width: 300px;
}

.benefit-header {
  max-width: 500px;
}
@media (max-width: 767.98px) {
  .benefit-header {
    padding-bottom: 20px;
  }
}

.benefit-card {
  background: #ffffff;
}
.benefit-card .benefit-grid {
  padding: 24px;
  background: #ffffff;
}
@media (max-width: 767.98px) {
  .benefit-card .benefit-grid {
    padding: 15px;
  }
}
.benefit-card .benefit-grid span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 50px;
  background: #FFCE26;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .benefit-card .benefit-grid span {
    margin-bottom: 20px;
  }
}
.benefit-card .benefit-grid h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 220px;
}
@media (max-width: 991.98px) {
  .benefit-card .benefit-grid h2 {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .benefit-card .benefit-grid h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.benefit-card .benefit-grid p {
  margin-bottom: 24px;
  max-width: 320px;
}
@media (max-width: 767.98px) {
  .benefit-card .benefit-grid p {
    margin-bottom: 20px;
  }
}
.benefit-card .benefit-grid .btn {
  font-size: 13px;
  padding: 6px 16px;
}
.benefit-card .benefit-grid .btn:hover {
  background: #FFCE26;
  border-color: #FFCE26;
}
.benefit-card .benefit-img {
  padding-top: 48px;
}
@media (max-width: 767.98px) {
  .benefit-card .benefit-img {
    padding-top: 0;
  }
}

.clients-section {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #26262C;
  padding: 90px 0;
}
@media (max-width: 991.98px) {
  .clients-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .clients-section {
    padding: 40px 0;
  }
}
.clients-section .section-header {
  text-align: center;
}
.clients-section .section-header h6 {
  color: #ffffff;
  border: 1px solid #ffffff;
  background: transparent;
}
.clients-section .section-header h2 {
  color: #ffffff;
}
.clients-section .client-shape {
  position: relative;
}
@media (max-width: 1199.98px) {
  .clients-section .client-shape {
    display: none;
  }
}
.clients-section .client-shape img {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
}
.clients-section .slide-nav-center .owl-nav {
  padding-top: 70px;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}
@media (max-width: 767.98px) {
  .clients-section .slide-nav-center .owl-nav {
    padding-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .client-slider {
    padding: 0 15px;
  }
}
.client-slider .client-card:hover .clients-img .client-btn {
  -webkit-transform: translate(0, -80%);
  transform: translate(0, -80%);
  opacity: 1;
}
.client-slider .client-card:hover .clients-img img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  transform: scale(1.15);
}
.client-slider .client-card .clients-img {
  border-radius: 10px;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  cursor: pointer;
}
.client-slider .client-card .clients-img img {
  width: 100%;
  border-radius: 10px;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.client-slider .client-card .clients-img .client-btn {
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 20px;
}
.client-slider .client-card .clients-img .client-btn a {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767.98px) {
  .client-slider .client-card .clients-img .client-btn a {
    font-size: 13px;
  }
}
.client-slider .client-card .clients-img .client-btn a:hover {
  color: #FFCE26;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.client-slider .client-card .clients-img .client-btn a:hover span {
  color: #ffffff;
  border: 1px solid #FFCE26;
  background: #FFCE26;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.client-slider .client-card .clients-img .client-btn a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  font-size: 20px;
  color: #000000;
  border: 1px solid #D0D0D7;
  border-radius: 50px;
  background: #ffffff;
  width: 50px;
  height: 50px;
  margin-right: 16px;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767.98px) {
  .client-slider .client-card .clients-img .client-btn a span {
    font-size: 16px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}
.client-slider .client-card .clients-content {
  text-align: center;
  padding-top: 24px;
}
.client-slider .client-card .clients-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .client-slider .client-card .clients-content h4 {
    font-size: 18px;
  }
}
.client-slider .client-card .clients-content p {
  font-size: 15px;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .client-slider .client-card .clients-content p {
    font-size: 14px;
  }
}

.trusted-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  .trusted-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .trusted-section {
    padding: 40px 0 20px;
  }
}
.trusted-section .trusted-info {
  padding-left: 120px;
}
@media (max-width: 1199.98px) {
  .trusted-section .trusted-info {
    padding-left: 60px;
  }
}
@media (max-width: 767.98px) {
  .trusted-section .trusted-info {
    padding-left: 20px;
  }
}
.trusted-section .trusted-info .trusted-header {
  max-width: 525px;
}
@media (max-width: 767.98px) {
  .trusted-section .trusted-info .trusted-header {
    padding-bottom: 20px;
  }
}
.trusted-section .trusted-info .trusted-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .trusted-section .trusted-info .trusted-details {
    padding: 0 0 30px;
  }
}
.trusted-section .trusted-info .trusted-details .trusted-text {
  margin-left: 20px;
}
@media (max-width: 767.98px) {
  .trusted-section .trusted-info .trusted-details .trusted-text {
    margin-left: 10px;
  }
}
.trusted-section .trusted-info .trusted-details .trusted-text h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}
@media (max-width: 767.98px) {
  .trusted-section .trusted-info .trusted-details .trusted-text h4 {
    font-size: 18px;
  }
}

.trusted-logo-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.clients-grid {
  margin-bottom: 30px;
}

.clients-grid.logo-animate {
  grid-column-gap: 2rem;
  opacity: 1;
  flex: none;
  width: 100rem;
  margin-top: 0;
  margin-right: 0;
  display: flex;
}

.clients-grid img {
  width: 130px;
  filter: gray;
  -webkit-filter: grayscale(1);
  -webkit-transition: all 0.8s ease-in-out;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  padding: 10px 15px;
  object-fit: cover;
}
.clients-grid img:hover {
  filter: none;
  -webkit-filter: grayscale(0);
  -webkit-transform: scale(1.01);
}

.logo-animate {
  animation: slide 35s infinite linear;
}

.clients-grid.logo-animate-alt {
  grid-column-gap: 2rem;
  flex: none;
  width: 100rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  display: flex;
}

.logo-animate-alt {
  animation: slidealt 35s infinite linear;
  animation-direction: reverse;
}

@keyframes slide {
  0% {
    transform: translateX(calc(0% + 50px));
  }
  100% {
    transform: translateX(-100%);
  }
}
.logo-animate {
  animation: slide 35s infinite linear;
}

@keyframes slidealt {
  0% {
    transform: translateX(calc(0% + 50px));
  }
  100% {
    transform: translateX(-100%);
  }
}
.logo-animate-alt {
  animation: slidealt 35s infinite linear;
  animation-direction: reverse;
}

.video-section {
  position: relative;
  overflow: hidden;
}
.video-section img {
  width: 100%;
}
.video-section a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  font-size: 30px;
  color: #000000;
  border-radius: 100px;
  background: #ffffff;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-animation: pulse-secondary 2s infinite;
  animation: pulse-secondary 2s infinite;
  -webkit-box-shadow: 0 0 0 rgba(44, 202, 185, 0.9);
  box-shadow: 0 0 0 rgba(44, 202, 185, 0.9);
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767.98px) {
  .video-section a {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}
.video-section a:hover {
  color: #ffffff;
  background: #FFCE26;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@-webkit-keyframes pulse-secondary {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(44, 202, 185, 0.7);
    box-shadow: 0 0 0 rgba(44, 202, 185, 0.6);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(44, 202, 185, 0);
    box-shadow: 0 0 0 20px rgba(44, 202, 185, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(44, 202, 185, 0);
    box-shadow: 0 0 0 0 rgba(44, 202, 185, 0);
  }
}
@keyframes pulse-secondary {
  0% {
    -webkit-box-shadow: 0 0 0 rgba(44, 202, 185, 0.7);
    box-shadow: 0 0 0 rgba(44, 202, 185, 0.6);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(44, 202, 185, 0);
    box-shadow: 0 0 0 20px rgba(44, 202, 185, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(44, 202, 185, 0);
    box-shadow: 0 0 0 0 rgba(44, 202, 185, 0);
  }
}
.testimonial-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  .testimonial-section {
    padding: 60px 0;
  }
}
@media (max-width: 991.98px) {
  .testimonial-section {
    padding: 40px 0;
  }
}

.testimonial-info {
  position: relative;
}
.testimonial-info .testimonial-header {
  position: relative;
}
@media (max-width: 1199.98px) {
  .testimonial-info .testimonial-header {
    padding-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .testimonial-info .testimonial-header {
    padding-bottom: 20px;
  }
}
.testimonial-info .testimonial-header h2 {
  font-size: 54px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  margin-top: 250px;
  width: 580px;
  position: absolute;
  left: -250px;
}
@media (max-width: 1199.98px) {
  .testimonial-info .testimonial-header h2 {
    font-size: 34px;
    position: relative;
    margin-top: 0;
    left: 0;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}
@media (max-width: 991.98px) {
  .testimonial-info .testimonial-header h2 {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .testimonial-info .testimonial-header h2 {
    font-size: 20px;
  }
}
.testimonial-info .testimonial-card {
  padding-left: 180px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .testimonial-info .testimonial-card {
    padding-left: 0;
  }
}
@media (max-width: 991.98px) {
  .testimonial-info .testimonial-card .client-img {
    display: none;
  }
}
.testimonial-info .testimonial-grid {
  background: #26262C;
  padding: 48px;
  max-width: 650px;
  position: absolute;
  top: 50%;
  right: -350px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
@media (max-width: 1299.98px) {
  .testimonial-info .testimonial-grid {
    right: -200px;
  }
}
@media (max-width: 1199.98px) {
  .testimonial-info .testimonial-grid {
    padding: 30px;
  }
}
@media (max-width: 991.98px) {
  .testimonial-info .testimonial-grid {
    position: relative;
    max-width: inherit;
    top: 0;
    right: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@media (max-width: 767.98px) {
  .testimonial-info .testimonial-grid {
    padding: 20px;
  }
}
.testimonial-info .testimonial-grid .testimonial-slider .testimonial-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 24px;
}
@media (max-width: 767.98px) {
  .testimonial-info .testimonial-grid .testimonial-slider .testimonial-profile {
    padding-bottom: 20px;
  }
}
.testimonial-info .testimonial-grid .testimonial-slider .testimonial-profile img {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50px;
}
.testimonial-info .testimonial-grid .testimonial-slider .testimonial-profile div {
  margin-left: 15px;
}
.testimonial-info .testimonial-grid .testimonial-slider .testimonial-profile div h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
@media (max-width: 767.98px) {
  .testimonial-info .testimonial-grid .testimonial-slider .testimonial-profile div h4 {
    font-size: 14px;
  }
}
.testimonial-info .testimonial-grid .testimonial-slider .testimonial-profile div p {
  font-size: 14px;
  color: #ffffff;
}
.testimonial-info .testimonial-grid .testimonial-slider .testimonial-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .testimonial-info .testimonial-grid .testimonial-slider .testimonial-content h4 {
    font-size: 14px;
  }
}
.testimonial-info .testimonial-grid .testimonial-slider .testimonial-content p {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .testimonial-info .testimonial-grid .testimonial-slider .testimonial-content p {
    font-size: 14px;
  }
}

.slide-nav-center .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 24px;
}
@media (max-width: 767.98px) {
  .slide-nav-center .owl-nav {
    padding-top: 20px;
  }
}
.slide-nav-center .owl-nav button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #FFCE26;
  color: #FFCE26;
  margin: 0;
  width: 40px;
  min-width: 40px;
  height: 40px;
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .slide-nav-center .owl-nav button {
    width: 34px;
    min-width: 34px;
    height: 34px;
    font-size: 12px;
  }
}
.slide-nav-center .owl-nav button:hover {
  background: #FFCE26;
  border: 1px solid #FFCE26;
  color: #ffffff;
}
.slide-nav-center .owl-nav .owl-prev {
  margin-right: 16px;
}
@media (max-width: 767.98px) {
  .slide-nav-center .owl-nav .owl-prev {
    margin-right: 10px;
  }
}

.testimonial-shape {
  position: relative;
}
@media (max-width: 1199.98px) {
  .testimonial-shape {
    display: none;
  }
}
.testimonial-shape img {
  position: absolute;
  bottom: -50px;
  right: -400px;
  width: 240px;
}
@media (max-width: 1399.98px) {
  .testimonial-shape img {
    right: -300px;
    width: 230px;
  }
}
@media (max-width: 1299.98px) {
  .testimonial-shape img {
    bottom: -20px;
    right: -200px;
    width: 200px;
  }
}

.feature-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(212.38deg, #EAFFFD 6.52%, #FBFFFE 80.6%);
  padding: 80px 0 54px;
}
@media (max-width: 991.98px) {
  .feature-section {
    padding: 60px 0 40px;
  }
}
@media (max-width: 767.98px) {
  .feature-section {
    padding: 40px 0;
  }
}
.feature-section .feature-shape {
  position: relative;
}
@media (max-width: 1199.98px) {
  .feature-section .feature-shape {
    display: none;
  }
}
.feature-section .feature-shape img {
  position: absolute;
  top: 0;
  right: 0;
}

.feature-info {
  position: relative;
}
.feature-info .feature-img {
  padding-bottom: 65px;
}
@media (max-width: 991.98px) {
  .feature-info .feature-img {
    padding-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .feature-info .feature-img {
    padding-bottom: 20px;
  }
}
.feature-info .feature-img-two {
  padding: 0 20px 24px;
}
@media (max-width: 767.98px) {
  .feature-info .feature-img-two {
    padding: 0 0 20px;
  }
}
.feature-info .feature-img-two img {
  width: 100%;
}
.feature-info h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 48px;
  position: relative;
}
@media (max-width: 991.98px) {
  .feature-info h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .feature-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.feature-info h2 span {
  color: #FFCE26;
}
.feature-info h2 img {
  position: absolute;
  top: 20px;
  right: -50px;
}
@media (max-width: 1199.98px) {
  .feature-info h2 img {
    display: none;
  }
}
.feature-info h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .feature-info h5 {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.feature-info .feature-list {
  padding-bottom: 24px;
}
@media (max-width: 767.98px) {
  .feature-info .feature-list {
    padding-bottom: 20px;
  }
}
.feature-info .feature-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-info .feature-list ul li {
  margin-bottom: 16px;
}
.feature-info .feature-list ul li:last-child {
  margin-bottom: 0;
}
.feature-info .feature-list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  background: #ffffff;
  border: 1px solid #D0D0D7;
  border-radius: 10px;
  padding: 13px 16px;
}
.feature-info .feature-list ul li a:hover {
  color: #FFCE26;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 767.98px) {
  .feature-info .feature-list ul li a {
    font-size: 14px;
    padding: 8px 10px;
  }
}
.feature-info .feature-list ul li a i {
  font-size: 24px;
  margin-right: 10px;
}
@media (max-width: 767.98px) {
  .feature-info .feature-list ul li a i {
    font-size: 20px;
  }
}
.feature-info .feature-list ul li a span {
  margin-left: auto;
}
.feature-info .feature-list ul li a span i {
  margin-right: 0;
}
.feature-info p {
  font-size: 15px;
}
@media (max-width: 767.98px) {
  .feature-info p {
    font-size: 14px;
  }
}
.feature-info .btn {
  padding: 10px 38px;
}
@media (max-width: 767.98px) {
  .feature-info .btn {
    padding: 8px 20px;
  }
}

.smarter-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  .smarter-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .smarter-section {
    background: #F5F5F9;
    padding: 40px 0;
  }
}

.smarter-info {
  border-radius: 50px;
  padding: 48px;
}
@media (max-width: 991.98px) {
  .smarter-info {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .smarter-info {
    border-radius: 0;
    padding: 0;
  }
}
.smarter-info .smarter-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .smarter-info .smarter-header h2 {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .smarter-info .smarter-header h2 {
    font-size: 22px;
  }
}
.smarter-info .smarter-header p {
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .smarter-info .smarter-header p {
    margin-bottom: 20px;
  }
}
.smarter-info .smarter-header .smarter-btns {
  padding-bottom: 24px;
}
@media (max-width: 767.98px) {
  .smarter-info .smarter-header .smarter-btns {
    padding-bottom: 20px;
  }
}
.smarter-info .smarter-header .smarter-btns .btn {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 50px;
}
@media (max-width: 767.98px) {
  .smarter-info .smarter-header .smarter-btns .btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}
.smarter-info .smarter-header .smarter-btns .btn-secondary {
  margin-right: 20px;
}
@media (max-width: 767.98px) {
  .smarter-info .smarter-header .smarter-btns .btn-secondary {
    margin-right: 10px;
  }
}
.smarter-info .smarter-header .smarter-btns .btn-white {
  color: #26262C;
  background: transparent;
  border: 1px solid #26262C;
}
.smarter-info .smarter-header .smarter-btns .btn-white:hover {
  color: #ffffff;
  background: #26262C;
  border: 1px solid #26262C;
}
.smarter-info .smarter-header .watch-video a {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767.98px) {
  .smarter-info .smarter-header .watch-video a {
    font-size: 13px;
  }
}
.smarter-info .smarter-header .watch-video a:hover {
  color: #FFCE26;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.smarter-info .smarter-header .watch-video a:hover span {
  color: #ffffff;
  border: 1px solid #FFCE26;
  background: #FFCE26;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.smarter-info .smarter-header .watch-video a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  font-size: 20px;
  color: #000000;
  border: 1px solid #D0D0D7;
  border-radius: 50px;
  background: #ffffff;
  width: 50px;
  height: 50px;
  margin-right: 16px;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767.98px) {
  .smarter-info .smarter-header .watch-video a span {
    font-size: 16px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}
.smarter-info .smarter-img {
  text-align: right;
}
@media (max-width: 767.98px) {
  .smarter-info .smarter-img {
    text-align: left;
    padding-top: 20px;
  }
}
.smarter-info .smarter-img img {
  border-radius: 30px;
}
@media (max-width: 767.98px) {
  .smarter-info .smarter-img img {
    width: 100%;
  }
}

footer {
  background-color: #002955;
}
footer .footer-widget .footer-logo {
  margin-bottom: 15px;
}
footer .footer-widget .footer-logo a img {
  width: 150px;
}
footer .footer-widget .footer-logo p {
  font-size: 16px;
  font-weight: 300;
  color: #FBF6B2;
}
footer .footer-widget p {
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
}
footer .footer-widget ul li i {
  color: #FFCE26;
}
footer .footer-widget ul li a {
  color: #ffffff;
}
footer .footer-widget ul li:not(:last-child) {
  margin-bottom: 10px;
}
footer .footer-btm {
  border-top: 1px solid white;
  text-align: center;
  padding-top: 23px;
  padding-bottom: 23px;
}
footer .footer-btm p {
  color: #ffffff;
}

.progress-wrap {
  position: fixed;
  right: 25px;
  bottom: 25px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(112, 201, 134, 0.2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font-family: "FontAwesome";
  text-align: center;
  line-height: 35px;
  font-size: 17px;
  color: #FFCE26;
  left: 0;
  top: 0;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #FFCE26;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.section-blk {
  padding: 80px 0;
}

.bg-theme {
  background-color: #FFCE26;
}

.title-style-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 50px;
  padding: 0;
}
@media (max-width: 992px) {
  .title-style-wrapper {
    text-align: center;
    justify-content: center;
  }
}
.title-style-wrapper .title-style {
  flex: 1 0 0;
}
.title-style-wrapper .title-style span {
  display: block;
  font-size: 16px;
  color: #141414;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (min-width: 1599.98px) {
  .title-style-wrapper .title-style span {
    font-size: 40px;
  }
}
.title-style-wrapper .title-style h2 {
  font-size: 30px;
  font-weight: 300;
  color: #002E66;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  .title-style-wrapper .title-style h2 {
    font-size: 25px;
  }
}
@media (max-width: 767.98px) {
  .title-style-wrapper .title-style h2 {
    font-size: 20px;
  }
}
@media (min-width: 1599.98px) {
  .title-style-wrapper .title-style h2 {
    font-size: 40px;
  }
}
.title-style-wrapper .title-style.center-position {
  text-align: center;
}
.title-style-wrapper .title-style.right-position {
  text-align: right;
}
.title-style-wrapper .title-style p {
  margin-top: 15px;
}

.card-wrapper .card-theme1 {
  border-radius: 15px;
  padding: 15px;
  background-color: rgba(235, 221, 196, 0.2);
}
.card-wrapper .card-theme1 .icon-shadow {
  box-shadow: 0px 40px 40px rgba(200, 160, 90, 0.2);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #ffffff;
  margin-bottom: 30px;
  width: 68px;
  height: 68px;
}
.card-wrapper .card-theme1 .icon-shadow img {
  width: 40px;
}
.card-wrapper .card-theme1 h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
}
@media (min-width: 1599.98px) {
  .card-wrapper .card-theme1 h3 {
    font-size: 25px;
  }
}
.card-wrapper .card-theme2 {
  border-radius: 15px;
  padding: 15px;
  background-color: rgba(235, 221, 196, 0.2);
}
.card-wrapper .card-theme2 h2 {
  font-size: 30px;
  margin: 0 0 20px;
  padding: 0;
}
.card-wrapper .card-theme2 .flex-content-info {
  display: flex;
  gap: 30px;
  align-items: start;
}
@media (max-width: 992px) {
  .card-wrapper .card-theme2 .flex-content-info {
    flex-direction: column;
    gap: 14px;
  }
}
.card-wrapper .card-theme2 .flex-content-info h4 {
  font-size: 20px;
  color: #FFCE26;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .card-wrapper .card-theme2 .flex-content-info h4 {
    min-width: 203px;
    max-width: 203px;
  }
}
.card-wrapper .card-theme2 .flex-content-info p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .card-wrapper .card-theme2 .flex-content-info.about-block h4 {
    min-width: 140px;
    max-width: 140px;
  }
}
.card-wrapper .card-theme2:not(:last-child) {
  margin-bottom: 15px;
}
.card-wrapper .card-theme3 {
  border-radius: 15px;
  background-color: rgba(235, 221, 196, 0.2);
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .card-wrapper .card-theme3 {
    flex-direction: column;
  }
}
.card-wrapper .card-theme3 .left-img-blk {
  border-radius: 15px;
  overflow: hidden;
  height: 254px;
  width: 230px;
  min-width: 230px;
}
@media (max-width: 992px) {
  .card-wrapper .card-theme3 .left-img-blk {
    padding-top: 15px;
    height: auto;
  }
}
.card-wrapper .card-theme3 .left-img-blk img {
  object-fit: cover;
  overflow: hidden;
}
.card-wrapper .card-theme3 .right-content {
  padding: 15px;
}
@media (max-width: 992px) {
  .card-wrapper .card-theme3 .right-content {
    padding: 0 15px 15px;
  }
}
.card-wrapper .card-theme3 .right-content p {
  margin: 15px 0;
  padding: 0;
}
.card-wrapper .card-theme3 .right-content span {
  font-size: 18px;
  font-weight: 600;
}
.card-wrapper .card-theme3 .right-content img {
  width: 30px;
}

.list-style.dark-blk li {
  text-align: right;
  justify-content: end;
  background: linear-gradient(90deg, rgba(251, 248, 243, 0.2) 0%, rgba(255, 234, 197, 0.2) 100%);
}
.list-style ul li {
  padding: 10px 15px;
  background: #FBF8F3;
  background: linear-gradient(90deg, rgb(251, 248, 243) 0%, rgb(255, 234, 197) 100%);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  border-radius: 110px;
}
@media (min-width: 1599.98px) {
  .list-style ul li {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  .list-style ul li {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .list-style ul li {
    font-size: 14px;
  }
}
.list-style ul li i {
  font-size: 32px;
  color: #FFCE26;
}
.list-style ul li:not(:last-child) {
  margin-bottom: 15px;
}

.blockquote-btn {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin: 40px 0 0 0;
  padding: 10px 0 10px 20px;
  border-left: 3px solid #1a1a1a;
}
.blockquote-btn span {
  color: #1a1a1a;
}
.blockquote-btn span i {
  font-size: 40px;
}
.blockquote-btn.white-btn {
  color: #ffffff;
  border-left: 3px solid #ffffff;
}
.blockquote-btn.white-btn span {
  color: #ffffff;
}

.spot-shadow {
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.spot-shadow:before {
  position: absolute;
  background: url("../img/spot-2.png") right bottom/cover no-repeat;
  width: 887px;
  height: 787px;
  content: "";
  right: 0;
  bottom: 0;
  z-index: -1;
}

.foo-bottom-blk p {
  margin: 10px 0 0 0;
}
.foo-bottom-blk a {
  color: #ffffff;
}
.foo-bottom-blk a:hover {
  color: #FFCE26;
}

.footer-menu p {
  margin: 10px 0 0 0;
}
.footer-menu a {
  color: #ffffff;
}
.footer-menu a:hover {
  color: #FFCE26;
}

.social-link {
  margin: 30px 0;
}
.social-link a {
  display: inline-block;
  font-size: 18px;
  position: relative;
  margin-right: 6px;
}
.social-link a:last-child {
  margin-right: 0;
}
.social-link .hi-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  font-size: 0px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #ffffff;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.social-link .hi-icon:hover {
  border: 1px solid #FFCE26;
  background: #FFCE26;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.social-link .hi-icon:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0;
  content: "";
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.social-link .hi-icon:before {
  speak: none;
  font-size: 18px;
  line-height: 35px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased;
}
.social-link .hi-icon {
  overflow: hidden;
  -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  -moz-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.social-link .hi-icon:after {
  display: none;
}
.social-link .hi-icon:hover:before {
  -webkit-animation: toTopFromBottom 0.5s forwards;
  -moz-animation: toTopFromBottom 0.5s forwards;
  animation: toTopFromBottom 0.5s forwards;
}
@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toTopFromBottom {
  49% {
    -moz-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

.btn-group .btn-style:hover i {
  transform: translate(3px, -3px);
}

@media (max-width: 991.98px) {
  .with-img .btn-group {
    justify-content: center;
    width: 100%;
  }
}

.footer-title {
  font-size: 18px;
}

.icon-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .icon-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; /* keeps spacing consistent */
  }
}
@media (max-width: 767.98px) {
  .icon-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; /* keeps spacing consistent */
  }
}
.icon-wrapper .icon-blk {
  display: flex;
  flex: 1 0 0;
  gap: 14px;
  align-items: center;
}
.icon-wrapper .icon-blk p {
  color: #0150A4;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  .icon-wrapper .icon-blk p {
    font-size: 14px;
  }
}
.icon-wrapper .icon-blk img {
  width: 40px;
}

.key-wrapper .key-card {
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  .key-wrapper .key-card {
    margin-bottom: 30px;
  }
  .key-wrapper .key-card:not(:last-child) {
    margin-bottom: 0px;
  }
}
.key-wrapper .key-card p {
  font-size: 18px;
  margin: 10px 0 0;
  padding: 0;
}

.bg-pdt {
  background: url("../img/pdt-banner.jpg") left bottom/cover no-repeat;
  min-height: 768px;
}

.title-style-wrapper.style2 .title-style span {
  font-size: 18px;
  color: #141414;
  text-transform: none;
}
.title-style-wrapper.style2 .title-style h2 {
  font-size: 30px;
  font-weight: 400;
  color: #141414;
}

.pdt-card {
  background-color: white;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .pdt-card {
    margin-bottom: 23px;
  }
}
.pdt-card .pdt-info h4 {
  font-size: 23px;
  margin: 0 0 5px;
}
.pdt-card .pdt-info span {
  color: #9A9A9A;
  font-size: 16px;
}
.pdt-card .price-tag {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.pdt-card .price-tag span {
  color: #595959;
  padding-left: 5px;
  font-weight: 400;
  text-decoration: line-through;
}

.btn-cart {
  background-color: #0150A4;
  padding: 10px 23px;
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
}

.flex-card {
  display: flex;
  gap: 14px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .flex-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; /* keeps spacing consistent */
  }
}
.flex-card .key-card {
  flex: 1 0 0;
}

.bg-blue {
  background-color: #0150A4;
}
.bg-blue .title-style-wrapper .title-style span {
  text-transform: none;
  color: #FFCE26;
}
.bg-blue .title-style-wrapper .title-style h2 {
  color: white;
}

.main-content {
  position: relative;
}
.main-content .owl-theme .custom-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}
.main-content .owl-theme .custom-nav .owl-prev, .main-content .owl-theme .custom-nav .owl-next {
  position: absolute;
  height: 100px;
  color: inherit;
  background: none;
  border: none;
  z-index: 100;
}
.main-content .owl-theme .custom-nav .owl-prev i, .main-content .owl-theme .custom-nav .owl-next i {
  font-size: 23px;
  color: #141414;
}
.main-content .owl-theme .custom-nav .owl-prev {
  left: 104px;
}
.main-content .owl-theme .custom-nav .owl-next {
  right: 104px;
}

.avail-wrapper {
  background-color: #F1F1F1;
  border-radius: 20px;
  overflow: hidden;
}
.avail-wrapper .avail-title {
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 68px;
}

.avail-brand-wrapper {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}
.avail-brand-wrapper img {
  width: 77px;
  height: auto;
}

.gallery-wrap {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.slider-nav-thumbnails {
  width: 100px;
  min-width: 100px; /* thumbnail column width */
  max-height: 500px; /* adjust as needed */
}

.slider-nav-thumbnails img {
  width: 100%;
  height: 90px; /* uniform thumbnail height */
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.slider-nav-thumbnails div:not(:last-child) {
  margin-bottom: 15px;
}
.slider-nav-thumbnails .slick-current {
  border: 1px solid #999999;
}

.product-img {
  border: 1px solid #999999;
}

.gallery-wrap {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* Thumbnails column (desktop) */
.slider-nav-thumbnails {
  width: 100px;
  max-height: 500px;
}

.slider-nav-thumbnails img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.rental-slider {
  flex: 1;
  max-width: 400px; /* optional: limit max width */
}

.rental-slider img {
  width: 100%;
  height: 500px; /* control how tall the big image should be */
  object-fit: cover; /* crop nicely instead of squishing */
  border-radius: 12px;
}

/* 📱 Mobile: shrink image height */
@media (max-width: 768px) {
  .rental-slider img {
    height: 320px;
  }
}
/* 📱 Mobile: stack layout */
@media (max-width: 768px) {
  .gallery-wrap {
    flex-direction: column;
  }
  .slider-nav-thumbnails {
    width: 100%;
    max-height: none;
    order: 2; /* push thumbnails below main slider */
  }
  .slider-nav-thumbnails img {
    height: 70px; /* smaller thumbs on mobile */
  }
}
.product-detail-info h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
.product-detail-info .rating-blk {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
  align-items: center;
}
.product-detail-info .rating-blk .rate-icons {
  display: flex;
  gap: 3px;
}
.product-detail-info .rating-blk .rate-icons i {
  color: #FFC300;
}
.product-detail-info .rating-blk p {
  margin: 0;
  font-size: 18px;
  color: #666666;
}
.product-detail-info span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #0150A4;
  margin-bottom: 15px;
}
.product-detail-info p {
  font-size: 18px;
  color: #141414;
  margin-bottom: 23px;
}

.price-blk .price-tag-blk {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
}
.price-blk .price-tag-blk .amt-blk {
  display: flex;
  align-items: center;
  font-size: 40px;
  color: #141414;
}
.price-blk .price-tag-blk .amt-blk span {
  padding-left: 10px;
  display: flex;
  align-items: center;
  font-size: 30px;
  color: #666666;
  text-decoration: line-through;
  margin: 0;
}
.price-blk .price-tag-blk .price-badge {
  background-color: #FFC300;
  border-radius: 10px;
  padding: 5px 10px;
}
.price-blk .price-tag-blk .price-badge p {
  color: #141414;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.price-blk p {
  font-size: 23px;
  color: #FF003B;
  font-weight: medium;
}
.price-blk p span {
  font-size: 23px;
  display: inline-block;
  font-weight: bold;
  color: #FF003B;
}

.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f8f8;
}

.qty-btn {
  background: none;
  border: none;
  font-size: 20px;
  padding: 8px 14px;
  cursor: pointer;
  user-select: none;
  color: #555;
}

.qty-btn:hover {
  background: #eee;
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}

.buy-action-blk {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.breadcrumb {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  text-decoration: none;
  color: #0073e6; /* link color */
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #005bb5; /* darker on hover */
}

.breadcrumb .separator {
  margin: 0 8px;
  color: #888;
}

.breadcrumb .current {
  color: #222;
  font-weight: 500;
}

.cart-count {
  background: #FFCE26;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 18px;
}

.email-input {
  max-width: 350px;
  border: 1px solid #9be2ff;
  border-radius: 8px;
  background-color: transparent;
  color: #fff;
}

.email-input input {
  border: none;
  box-shadow: none;
  background: transparent;
  color: #fff;
}

.email-input input:focus {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
}

.email-input input::placeholder {
  color: #9be2ff;
}

.email-input .input-group-text {
  background: transparent;
  border: none;
  color: #9be2ff;
}

.footer-widget h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 18px;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.owl-nav i {
  font-size: 32px;
}

.owl-nav button {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.owl-nav button:hover {
  background: #0150A4; /* Bootstrap cyan */
}

.owl-dots {
  display: none; /* hide dots */
}

.owl-carousel .item {
  display: flex;
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
  height: 400px; /* Fixed carousel height */
  background: #111; /* Optional background */
}

.owl-stage {
  display: flex;
  align-items: center;
}

.bg-darkblue {
  background-color: #002E66;
}

.btn-old {
  border: 1px solid #ffffff;
  border-radius: 7px;
  padding: 7px 20px;
  color: #ffffff;
}

.btn-old:hover {
  background-color: #ffffff;
  color: #002E66;
}

.info-left {
  display: flex;
  gap: 20px;
}
.info-left span {
  font-size: 64px;
  color: #F6D061;
  font-weight: bold;
}
.info-left div h4 {
  font-size: 36px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 25px;
}
.info-left div h4 span {
  font-size: 30px;
  color: #F6D061;
  font-weight: 500;
}

.no-flex {
  flex-direction: column;
  align-items: center !important;
  gap: 5px !important;
  margin-bottom: 20px;
}
.no-flex p {
  color: white !important;
}

.bg-grey {
  background-color: #f5f5f5;
}

/* Tabs */
.custom-tabs .nav-link {
  border-radius: 0;
  background: #ddd;
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
}

.custom-tabs .nav-link.active {
  background: #ffffff;
  color: #000;
}

.custom-tabs .nav-item:not(:last-child) {
  margin-right: 10px;
}

/* Tab content box */
.tab-content {
  background: #fff;
  border-radius: 0 0 12px 12px;
  padding: 30px;
  min-height: 300px;
}

/* Numbered list */
.numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.numbered-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.numbered-list li .num {
  background: #005eb8;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.numbered-list li h6 {
  font-weight: bold;
  margin: 0 0 5px 0;
}

.bg-couple {
  background: url("../img/bg-banner-couples.jpg") center center/cover no-repeat;
}

.about-banner {
  background: #1a1a1a;
  position: relative;
  z-index: 5;
  padding-bottom: 0;
}
@media (max-width: 992px) {
  .about-banner {
    height: 275px;
  }
}
@media (max-width: 767.98px) {
  .about-banner {
    height: auto;
  }
}
.about-banner:before {
  background: url("../img/spot-3.png") top left/cover no-repeat;
  content: "";
  position: absolute;
  width: 577px;
  height: 680px;
  left: 0;
  top: 0;
  z-index: -1;
}
.about-banner .banner-img-blk {
  height: 474px;
}
@media (max-width: 1199.98px) {
  .about-banner .banner-img-blk {
    height: 347px;
  }
}
@media (max-width: 992px) {
  .about-banner .banner-img-blk {
    height: 275px;
  }
}
@media (max-width: 767.98px) {
  .about-banner .banner-img-blk {
    height: 275px;
  }
}
.about-banner .banner-info-blk {
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 20px;
  padding: 50px;
  z-index: 5;
  overflow: hidden;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
@media (max-width: 767.98px) {
  .about-banner .banner-info-blk {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199.98px) {
  .about-banner .banner-info-blk {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .about-banner .banner-info-blk {
    padding: 20px;
  }
}
.about-banner .banner-info-blk p {
  font-size: 27px;
  color: #ffffff;
  margin: 0;
  padding: 0;
}
@media (max-width: 1199.98px) {
  .about-banner .banner-info-blk p {
    font-size: 23px;
  }
}
@media (max-width: 992px) {
  .about-banner .banner-info-blk p {
    font-size: 18px;
  }
}
@media (min-width: 1599.98px) {
  .about-banner .banner-info-blk p {
    font-size: 30px;
  }
}
.about-banner .banner-info-blk:before {
  background: url("../img/spot-4.png") bottom right/cover no-repeat;
  content: "";
  position: absolute;
  width: 627px;
  height: 405px;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.inner-wrapper .btn-group .btn-style {
  background: #FFCE26;
  color: #ffffff;
}
.inner-wrapper .btn-group .btn-style:hover span {
  background-color: #ffffff;
  color: #1a1a1a;
}

.award-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
}

.award-wrapper .award-item-two {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 33.33%;
  counter-increment: ol-counter;
  position: relative;
  z-index: 2;
}

.award-wrapper .award-item-two:nth-child(even) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .award-wrapper .award-item-two:nth-child(even) .award-icon {
    position: relative;
    top: -100px;
  }
}
@media (max-width: 767.98px) {
  .award-wrapper .award-item-two:nth-child(even) .award-icon {
    position: relative;
    top: auto;
  }
}

.award-wrapper .award-item-two:nth-child(even)::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30%;
  top: 70px;
  right: 0px;
  background: #707176;
}
@media (max-width: 992px) {
  .award-wrapper .award-item-two:nth-child(even)::after {
    background: transparent;
  }
}

.award-wrapper .award-item-two:nth-child(even) .award-content {
  margin-bottom: 139px;
}

.award-wrapper .award-item-two:nth-child(even) .award-content::before {
  position: absolute;
  content: "";
  width: 105%;
  height: 1px;
  bottom: -71px;
  top: auto;
  left: 0;
  background: #707176;
}

.award-wrapper .award-item-two:nth-child(even) .award-content::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 25px;
  left: 0px;
  background: #707176;
}
@media (max-width: 992px) {
  .award-wrapper .award-item-two:nth-child(even) .award-content::after {
    background: transparent;
  }
}

.award-wrapper .award-item-two:nth-child(3)::after, .award-wrapper .award-item-two:nth-child(1)::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  background: #FFCE26;
  z-index: 2;
}

.award-wrapper .award-item-two:nth-child(1) .award-content {
  position: relative;
  z-index: 2;
}

.award-wrapper .award-item-two:nth-child(1) .award-content::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: -20px;
  right: 0px;
  background: #707176;
}
@media (max-width: 992px) {
  .award-wrapper .award-item-two:nth-child(1) .award-content::after {
    background: transparent;
  }
}

.award-wrapper .award-item-two:nth-child(3)::after {
  right: 0;
  left: auto;
}

.award-wrapper .award-item-two:nth-child(3) .award-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .award-wrapper .award-item-two:nth-child(3) .award-content {
    margin-top: 160px;
  }
}

.award-wrapper .award-item-two:nth-child(3) .award-content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: -40px;
  left: 0;
  background: #707176;
}

.award-wrapper .award-item-two:nth-child(3) .award-content::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #707176;
}
@media (max-width: 992px) {
  .award-wrapper .award-item-two:nth-child(3) .award-content::after {
    background: transparent;
  }
}

.award-wrapper .award-item-two::before {
  content: "0" counter(ol-counter);
  color: var(--tj-color-common-white);
  line-height: 1;
  font-weight: var(--tj-fw-medium);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #FFCE26;
  padding: 11px 22px;
  z-index: 4;
}

.award-wrapper .award-item-two .award-icon {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .award-wrapper .award-item-two .award-icon {
    margin-bottom: 29px;
  }
}

.award-wrapper .award-item-two:nth-child(3) .award-icon {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .award-wrapper .award-item-two:nth-child(3) .award-icon {
    margin-bottom: 10px;
  }
}

.award-wrapper .award-item-two .award-icon img {
  width: 140px;
}
@media (max-width: 992px) {
  .award-wrapper .award-item-two .award-icon img {
    width: 86px;
  }
}

.award-wrapper .award-item-two .award-content {
  margin-top: 45px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .award-wrapper .award-item-two .award-content {
    font-size: 12px;
    margin-top: 97px;
  }
}

.award-wrapper .award-item-two .award-content::before {
  position: absolute;
  content: "";
  width: 105%;
  height: 1px;
  top: -60px;
  left: 0;
  background: #707176;
}

.award-wrapper .award-item-two .award-content span {
  display: block;
  color: #FFCE26;
  font-size: 24px;
  margin-bottom: 5px;
}

.award-wrapper .award-item-two .award-content .title {
  margin-bottom: 20px;
}

.award-wrapper .award-item-two .desc {
  max-width: 300px;
  margin: 0 auto;
}

.award-wrapper .award-item-two .desc p {
  line-height: 1.8;
}

.award-wrapper .award-item-two .desc p:last-child {
  margin-bottom: 0;
}

.award-wrapper .award-item-two:hover::before {
  background-color: #FFCE26;
  color: #1a1a1a;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .award-wrapper .award-item-two .award-content::before {
    top: -45px;
  }
  .award-wrapper .award-item-two .award-content .desc {
    max-width: 215px;
  }
  .award-wrapper .award-item-two:nth-child(3) .award-content::before {
    top: -25px;
  }
  .award-wrapper .award-item-two:nth-child(2) .award-content {
    margin-bottom: 210px;
  }
  .award-wrapper .award-item-two:nth-child(2) .award-content::before {
    bottom: -55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .award-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .award-wrapper .award-item-two {
    width: 100%;
  }
  .award-wrapper .award-item-two::before {
    top: 44%;
  }
  .award-wrapper .award-item-two::after {
    display: none;
  }
  .award-wrapper .award-item-two .award-icon {
    margin-bottom: 70px;
  }
  .award-wrapper .award-item-two .award-content::after {
    display: none;
  }
  .award-wrapper .award-item-two .award-content::before {
    width: 100%;
  }
  .award-wrapper .award-item-two:nth-child(2)::before {
    top: 38%;
  }
  .award-wrapper .award-item-two:nth-child(2) .award-icon {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .award-wrapper .award-item-two:nth-child(2) .award-content {
    margin-bottom: 25px;
  }
  .award-wrapper .award-item-two:nth-child(2) .award-content::before {
    bottom: auto;
    top: -60px;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .list-style {
    display: flex;
    gap: 14px;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .list-style {
    flex-direction: column;
  }
}
.list-style .flex-ul {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .list-style .flex-ul {
    gap: 10px;
    flex-direction: column;
    margin-bottom: 0 !important;
  }
}
.list-style .flex-ul li {
  min-width: 300px;
  font-size: 16px;
  margin: 0 !important;
}
@media (max-width: 991.98px) {
  .list-style .flex-ul li {
    font-size: 14px;
    min-width: none;
  }
}
.list-style .flex-ul:not(:last-child) {
  margin-bottom: 24px;
}

.about-section {
  background: url("../img/about-bg.jpg") top right/cover no-repeat;
  padding: 120px 0;
}

.about-content p {
  font-size: 24px;
  margin-bottom: 20px;
}
.about-content h2 {
  font-size: 46px;
  font-weight: 400;
  max-width: 485px;
  margin: 0 0 0;
}

.message-section {
  padding: 80px 0;
}

.message-bg {
  padding: 50px;
  background: #0150A4;
  border-radius: 50px;
}

.message-left {
  margin-bottom: 20px;
}
.message-left h4 {
  font-size: 40px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 50px;
}
.message-left img {
  border-radius: 50px;
}

.message-content h6 {
  font-size: 24px;
  font-weight: 500;
  color: #FFF;
  margin-bottom: 14px;
}
.message-content h4 {
  font-size: 40px;
  font-weight: 500;
  color: #FFF;
  margin-bottom: 14px;
}
.message-content h5 {
  font-size: 24px;
  font-weight: 500;
  color: #FFF;
  margin-bottom: 25px;
}
.message-content p {
  font-size: 18px;
  color: #FFF;
  margin-bottom: 20px;
}
.message-content p:last-child {
  margin-bottom: 0;
}

.about-us-section {
  padding: 0 0 90px;
}

.about-left {
  margin-bottom: 20px;
}
.about-left img {
  border-radius: 55px;
}

.about-text h4 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}
.about-text p {
  font-size: 18px;
}

.certificate-section {
  padding: 0 0 80px;
}

.certificate-head {
  text-align: center;
}
.certificate-head h4 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 60px;
}

.certificate-grid {
  padding: 24px;
  margin-bottom: 24px;
  background: #F8F3F3;
  min-height: 335px;
}

.product-banner {
  background: url("../img/product-bg.jpg") top right/cover no-repeat;
  padding: 120px 0;
}

.product-section {
  padding: 100px 0;
}

.product-card {
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #999999;
}
.product-card .product-imgs {
  margin-bottom: 40px;
}
.product-card .product-content h4 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  max-width: 400px;
  margin-bottom: 20px;
}
.product-card .ratings li span {
  font-weight: 500;
  color: #666666;
}
.product-card h5 {
  font-size: 18px;
  font-weight: 500;
  color: #0150A4;
  margin-top: 10px;
  margin-bottom: 20px;
}
.product-card p {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.product-card p span {
  font-size: 40px;
  font-weight: 500;
  color: #666666;
  text-decoration: line-through;
}

.explore-banner {
  background: #1a1a1a;
  position: relative;
  z-index: 5;
  padding-bottom: 0;
  height: 590px;
}
.explore-banner:before {
  background: url("../img/explore-banner-img.jpg") center right/cover no-repeat;
  content: "";
  position: absolute;
  width: 1074px;
  height: 680px;
  right: -140px;
  top: 0;
  z-index: -1;
}
.explore-banner:after {
  background: linear-gradient(90deg, rgb(26, 26, 26) 36%, rgba(26, 26, 26, 0) 100%);
  content: "";
  position: absolute;
  width: 1074px;
  height: 680px;
  left: 0;
  top: 0;
  z-index: -1;
}
.explore-banner .banner-info-blk {
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 20px;
  padding: 50px;
  z-index: 5;
  overflow: hidden;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
@media (max-width: 767.98px) {
  .explore-banner .banner-info-blk {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199.98px) {
  .explore-banner .banner-info-blk {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .explore-banner .banner-info-blk {
    padding: 20px;
  }
}
.explore-banner .banner-info-blk p {
  font-size: 27px;
  color: #ffffff;
  margin: 0;
  padding: 0;
}
@media (max-width: 1199.98px) {
  .explore-banner .banner-info-blk p {
    font-size: 23px;
  }
}
@media (max-width: 992px) {
  .explore-banner .banner-info-blk p {
    font-size: 18px;
  }
}
@media (min-width: 1599.98px) {
  .explore-banner .banner-info-blk p {
    font-size: 30px;
  }
}
.explore-banner .banner-info-blk:before {
  background: url("../img/spot-4.png") bottom right/cover no-repeat;
  content: "";
  position: absolute;
  width: 627px;
  height: 405px;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.explore-banner h1 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  position: relative;
  margin: 0;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .explore-banner h1 {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .explore-banner h1 {
    font-size: 20px;
  }
}
.explore-banner h1 span {
  padding: 0 10px;
}
.explore-banner h1 i {
  color: #FFCE26;
  font-size: 15px;
}
.explore-banner h1:before {
  background: url("../img/focus-img.png") bottom right/cover no-repeat;
  content: "";
  position: absolute;
  width: 36px;
  height: 102px;
  left: 0;
  z-index: 1;
}
.explore-banner h1:after {
  background: url("../img/focus-img.png") bottom right/cover no-repeat;
  content: "";
  position: absolute;
  width: 36px;
  height: 102px;
  right: 0;
  transform: rotateY(-180deg);
  z-index: 1;
}

.shape-content-info p {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 30px;
  padding: 0;
}

@media (max-width: 767.98px) {
  .shape-img-blk {
    text-align: center;
  }
}
.shape-img-blk img {
  border-radius: 30px;
  box-shadow: 0 40px 40px rgba(200, 160, 90, 0.41);
}

.flex-card .card-theme1:not(:last-child) {
  margin-bottom: 20px;
}

.mt-10 {
  margin-top: 77px;
}

.flex-curve-blk {
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .flex-curve-blk {
    flex-direction: column;
  }
}
.flex-curve-blk .curve-img-blk {
  border: 1px dashed #FFCE26;
  padding: 20px;
  border-radius: 230px;
}
@media (max-width: 767.98px) {
  .flex-curve-blk .curve-img-blk {
    text-align: center;
    border: 0px solid transparent;
  }
}
.flex-curve-blk ul li:not(:last-child) {
  margin-bottom: 50px;
}

.mt-150 {
  margin-top: 150px;
}
@media (max-width: 767.98px) {
  .mt-150 {
    margin-top: 50px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}
@media (max-width: 767.98px) {
  .mb-150 {
    margin-bottom: 50px;
  }
}

.accordion-faq .accordion-item {
  border-radius: 10px;
  overflow: hidden;
  border: 0px solid transparent;
  background-color: rgba(235, 221, 196, 0.2);
}
.accordion-faq .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
.accordion-faq .accordion-item .accordion-button {
  background-color: #FFCE26;
  border-radius: 20px;
  color: #ffffff;
  border: 0px solid transparent;
}
.accordion-faq .accordion-item .accordion-button.collapsed {
  background-color: rgba(235, 221, 196, 0.2);
  color: #1a1a1a;
}
.accordion-faq .accordion-item .accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 5L8 11L14 5'/%3E%3C/svg%3E");
}
.accordion-faq .accordion-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 5L8 11L14 5'/%3E%3C/svg%3E");
}
.accordion-faq .accordion-item .accordion-collapse .show .accordion-body {
  background-color: rgba(235, 221, 196, 0.2);
  padding: 10px;
}

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