@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400;500;600;700;800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

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

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #1c1c1c;
}

p {
  margin: 0;
  color: #1c1c1c;
}

input,
textarea,
a,
button {
  outline: none !important;
}

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

a {
  color: #73A6CE;
}

a:hover {
  color: #73A6CE;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "din-next-regular";
  src: url(../fonts/din-next-regular.ttf);
}
@font-face {
  font-family: "din-next-medium";
  src: url(../fonts/din-next-medium.ttf);
}
@font-face {
  font-family: "din-next-bold";
  src: url(../fonts/din-next-bold.ttf);
}
body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  background-color: #ffffff;
  color: #1c1c1c;
  font-family: "din-next-regular";
}

.font-medium {
  font-family: "din-next-medium";
}

.font-bold {
  font-family: "din-next-bold";
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  color: #949494;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 7px;
}

.form-control {
  height: 46px;
  background-color: #F9F9F9;
  border: 1px solid #F9F9F9;
  border-radius: 30px;
  box-shadow: none;
  padding: 8px 16px;
  font-size: 14px;
  color: #1C1C1C;
  font-family: "din-next-medium";
}

.form-control:focus {
  box-shadow: none;
  background-color: #fff;
  border-color: #73A6CE;
}

textarea.form-control {
  height: auto;
}

.main-wrapper {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.bg-primary {
  background-color: #73A6CE !important;
}

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

.border-primary {
  border-color: #73A6CE !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.main-content {
  padding: 60px 0px;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

::-moz-placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

::placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

::-moz-placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

::-ms-placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

::-o-placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

::-webkit-placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

.input-icon {
  position: relative;
}
.input-icon .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}
.input-icon.icon-right .icon {
  inset-inline-start: 10px;
}
.input-icon.icon-right .form-control {
  -webkit-padding-start: 35px;
          padding-inline-start: 35px;
}
.input-icon.icon-left .icon {
  inset-inline-end: 10px;
}
.input-icon.icon-left .form-control {
  -webkit-padding-end: 35px;
          padding-inline-end: 35px;
}

.text-muted {
  color: #74787C !important;
}

.text-black {
  color: #000 !important;
}

.box-shadow {
  box-shadow: 0px 4px 80px 0px rgba(167, 174, 193, 0.15) !important;
}

.rounded-30 {
  border-radius: 30px !important;
}

.rounded-15 {
  border-radius: 15px !important;
}

.bg-light-primary {
  background: rgba(115, 166, 206, 0.11) !important;
}

.btn {
  padding: 11px 40px;
  font-size: 16px;
  border-radius: 8px;
}

.btn-primary {
  color: #FFF;
  background: #73A6CE;
  border-color: #73A6CE;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 6px;
  z-index: -1;
  background-color: #5e92b9;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff !important;
  border-color: #5e92b9;
  background-color: #73A6CE !important;
  box-shadow: none !important;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-white {
  color: #73A6CE;
  background: #FFF;
  border-color: #FFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-white::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 6px;
  z-index: -1;
  background-color: #73A6CE;
}
.btn-white:hover, .btn-white:focus {
  color: #fff !important;
  border-color: #73A6CE;
  background-color: #FFF !important;
  box-shadow: none !important;
}
.btn-white:hover::before, .btn-white:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.pagination {
  margin-top: 40px;
}
.pagination .page-item {
  margin: 0px 6px;
}
.pagination .page-item .page-link {
  color: #73A6CE;
  border-radius: 50%;
  background-color: #FFF;
  margin: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border: 1px solid #E5E5E5;
  width: 32px;
  line-height: 1;
}
.pagination .page-item .page-link:hover {
  color: #fff;
  background-color: #73A6CE !important;
}
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #73A6CE !important;
}

.m-checkbox {
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000000;
}

/* Hide the browser's default checkbox */
.m-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.m-checkbox .checkmark {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #73A6CE;
  background-color: #FFF;
  left: 0px;
  top: 50%;
  display: block;
  transform: translateY(-50%);
}

/* Create the checkmark/indicator (hidden when not checked) */
.m-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.m-checkbox input:checked ~ .checkmark {
  border-color: #73A6CE;
}

.m-checkbox input:checked ~ .checkmark:after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-checkbox .checkmark:after {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: #73A6CE;
  width: 8px;
  height: 8px;
  background-color: #73A6CE;
  font-size: 12px;
}

.m-radio {
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000000;
}
@media (max-width: 991px) {
  .m-radio {
    font-size: 12px;
    margin-bottom: 7px;
  }
}

.m-radio .checkmark {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #fff;
  left: 0px;
  top: 50%;
  display: block;
  transition: opacity 0.3s ease-in-out;
  transform: translateY(-50%);
  border: 2px solid #73A6CE;
}
@media (max-width: 991px) {
  .m-radio .checkmark {
    width: 16px;
    height: 16px;
    border-width: 1px;
  }
}

.m-radio .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hide the browser's default radio */
.m-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Show the checkmark when checked */
.m-radio input:checked ~ .checkmark {
  border-color: #73A6CE;
}

.m-radio input:checked ~ .checkmark:after {
  opacity: 1;
}

.m-radio .checkmark:after {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 12px;
  content: "";
  width: 8px;
  height: 8px;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #73A6CE;
}

html[dir=rtl] .m-checkbox {
  padding-right: 25px;
}
html[dir=rtl] .m-checkbox .checkmark {
  right: 0px;
}
html[dir=rtl] .m-radio {
  padding-right: 25px;
}
html[dir=rtl] .m-radio .checkmark {
  right: 0px;
}

html[dir=ltr] .m-checkbox {
  padding-left: 25px;
}
html[dir=ltr] .m-checkbox .checkmark {
  left: 0px;
}
html[dir=ltr] .m-radio {
  padding-left: 25px;
}
html[dir=ltr] .m-radio .checkmark {
  left: 0px;
}

.main-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.main-header .navbar > .container {
  border-bottom: 1px solid #28343D;
}
.main-header .navbar .navbar-collapse .nav-link {
  display: block;
  padding: 9px 20px;
  font-size: 18px;
  color: #fff;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  font-family: "din-next-bold";
}
.main-header .navbar .navbar-collapse .nav-link.active, .main-header .navbar .navbar-collapse .nav-link:hover {
  color: #73A6CE;
}
@media (min-width: 992px) {
  .main-header .navbar .navbar-collapse .register {
    border-right: 1px solid #28343D;
  }
}
@media (max-width: 991px) {
  .main-header .navbar-brand img {
    max-height: 50px;
  }
  .main-header .navbar-toggler:focus {
    box-shadow: none !important;
  }
  .main-header .navbar .navbar-collapse .nav-link {
    color: #2b2b2b;
    font-size: 14px;
  }
  .main-header .navbar-collapse {
    position: absolute;
    width: 100%;
    z-index: 11111;
    background: rgb(255, 255, 255);
    top: 0px;
    right: 0px;
    box-shadow: rgba(41, 41, 41, 0.1098039216) 0px 20px 20px;
  }
  .main-header .navbar-collapse .navbar-nav {
    padding: 20px;
  }
}

.navbar-toggler.collapsed {
  color: #FFF;
}

.navbar-toggler {
  position: relative;
  z-index: 99999;
}
.navbar-toggler:not(.collapsed) i::before {
  content: "\f00d";
}

@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 9px 12px;
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
    max-width: 100%;
  }
}
.section {
  padding: 80px 0px;
}
@media (max-width: 991px) {
  .section {
    padding: 40px 0;
  }
}

.section-home {
  position: relative;
  z-index: 1;
}
.section-home::before {
  position: absolute;
  width: 100%;
  background: #030e17;
  content: "";
  height: 100%;
  bottom: 0px;
  z-index: -1;
  left: 0;
  opacity: 0.87;
}
.section-home .home-title {
  font-size: 35px;
}
@media (min-width: 992px) {
  .section-home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 250px 0;
  }
  .section-home .home-title {
    font-size: 48px;
    line-height: 72px;
  }
  .section-home .home-text {
    width: 85%;
    margin: auto;
  }
}
@media (max-width: 991px) {
  .section-home {
    padding: 110px 0 60px;
  }
  .section-home .home-title {
    font-size: 26px;
  }
  .section-home .home-text {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .section-title {
    font-size: 32px;
  }
}
.entry-title {
  display: inline-block;
  background-color: #73A6CE;
  color: #fff;
  border-radius: 30px;
  padding: 7px 22px;
}

.section-service {
  background: rgba(115, 166, 206, 0.1);
}

.widget_item-service {
  position: relative;
  padding: 25px;
  border-radius: 10px;
}
.widget_item-service .widget_item-icon {
  width: 70px;
  height: 70px;
  border: 1px solid #73A6CE;
  border-radius: 5px;
  margin-bottom: 35px;
}
@media (min-width: 992px) {
  .widget_item-service .widget_item-icon {
    margin-bottom: 75px;
  }
}
.widget_item-service .widget_item-icon img {
  max-height: 60px;
}
.widget_item-service .widget_item-title a {
  color: #000;
  transition: color 0.2s ease-in-out;
}
.widget_item-service .widget_item-title a:hover {
  color: #73A6CE;
}
.widget_item-service .widget_item-desc {
  height: 76px;
  overflow: hidden;
}
.widget_item-service a.text-primary:hover {
  color: #000 !important;
}

.widget_item-product .widget_item-image {
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 4px 80px 0px rgba(167, 174, 193, 0.15);
  padding: 30px;
  height: 330px;
}
.widget_item-product .widget_item-image img {
  max-height: 300px;
}
.widget_item-product .widget_item-title a {
  color: #000;
  transition: color 0.2s ease-in-out;
}
.widget_item-product .widget_item-title a:hover {
  color: #73A6CE;
}

.widget_item-oldPrice {
  position: relative;
  display: inline-block;
}
.widget_item-oldPrice::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #c2c2c2;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transform: rotate(-5deg);
}

.action-swiper {
  width: 110%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  z-index: 1;
  position: absolute;
}
.action-swiper .swiper-prev,
.action-swiper .swiper-next {
  font-size: 20px;
}
@media (max-width: 991px) {
  .action-swiper {
    width: 100%;
  }
}

.swiper-pagination .swiper-pagination-bullet,
.swiper--pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
  width: 60px;
  border-radius: 0;
  height: 10px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper--pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

.widget__item-faq:not(:last-of-type) {
  border-bottom: 1px solid #eee;
}

.widget__item-faq .widget__item-head {
  padding: 20px;
  cursor: pointer;
}

.widget__item-faq .widget__item-head:not(.collapsed) .fa-plus::before {
  content: "\f068";
}

.widget__item-faq .widget__item-content {
  padding: 20px 20px 40px;
}

.content-contact {
  background: url(../images/bg-contact.png);
  padding: 80px 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}
.content-contact .form-control {
  border: 1px solid #373737;
}
.content-contact .form-control:focus {
  border-color: #73A6CE;
}
@media (max-width: 991px) {
  .content-contact {
    padding: 30px 20px;
  }
}

.page-header {
  position: relative;
  padding: 160px 0 120px;
  z-index: 1;
}
.page-header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #030e17;
  opacity: 0.73;
  z-index: -1;
}
.page-header .breadcrumb-item {
  color: #fff;
  font-size: 24px;
}
.page-header .breadcrumb-item a {
  color: #fff;
}
.page-header .title {
  font-size: 40px;
}
@media (min-width: 992px) {
  .page-header .title {
    font-size: 56px;
  }
}
@media (max-width: 991px) {
  .page-header {
    padding: 110px 0 70px;
  }
  .page-header .title {
    font-size: 30px;
  }
  .page-header .breadcrumb-item {
    font-size: 18px;
  }
}

.slider .swiper-container {
  width: 100%;
  height: 100%;
}

.slider__flex {
  display: flex;
  align-items: flex-start;
}

.slider__col {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  -webkit-margin-end: 25px;
  margin-inline-end: 25px;
}

.slider__prev:focus,
.slider__next:focus {
  outline: none;
}

.slider__thumbs {
  height: 400px;
}

.slider__images {
  height: 400px;
  flex: 1;
  box-shadow: 0px 4px 80px 0px rgba(167, 174, 193, 0.15);
}

.slider__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider__images .slider__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.slider__images .slider__image img {
  max-height: 100%;
}

.slider__thumbs .slider__image {
  background-color: #f6f6f6;
  border: 1px solid #f6f6f6;
  padding: 10px;
  width: 88px;
  height: 88px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide-thumb-active .slider__image {
  background-color: #fff;
  border-color: #73A6CE;
}

.slider__thumbs .slider__image img {
  max-height: 100%;
}

@media (max-width: 767.98px) {
  .slider__col {
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
  }
  .slider .countdown timer .title {
    -webkit-margin-start: 6px;
    margin-inline-start: 3px;
    -webkit-margin-end: 22px;
    margin-inline-end: 11px;
  }
  .slider__images {
    height: 250px;
  }
}
.list-desc-product li {
  font-size: 16px;
}
.list-desc-product li i {
  font-size: 10px;
}

@media (min-width: 576px) {
  .modal-sm {
    --bs-modal-width: 380px;
  }
}
.nav-profile li a {
  display: flex;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  padding: 12px 20px;
  color: #000;
  margin: 5px 0;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.nav-profile li a img {
  transition: filter 0.2s ease-in-out;
}
.nav-profile li a.active, .nav-profile li a:hover {
  background-color: #73a6ce;
  color: #fff;
}
.nav-profile li a.active img, .nav-profile li a:hover img {
  filter: brightness(0) invert(1);
}
.nav-profile li.logout {
  margin-top: 40px;
}
.nav-profile li.logout a {
  color: #f14537;
}
.nav-profile li.logout a img {
  transform: translateY(3px);
}
.nav-profile li.logout a:hover {
  background-color: #f14537;
  color: #fff;
}

.widget_item-order {
  border-radius: 12px;
  border: 1px solid #e9e9e9;
  padding: 20px;
}
@media (min-width: 992px) {
  .widget_item-order .widget_item-image {
    width: 60px;
  }
}
.widget_item-order .widget_item-status {
  border-radius: 30px;
  padding: 10px 18px;
}
.widget_item-order .widget_item-status.success {
  background: rgba(39, 174, 96, 0.1);
  color: #27AE60;
}
.widget_item-order .widget_item-status.inprogress {
  background: #ECF6FC;
  color: #2D9CDB;
}

.image-invoice img {
  height: 44px;
}

.section-login {
  min-height: 100vh;
}
@media (min-width: 992px) {
  .section-login .section-title {
    font-size: 42px;
  }
}
.section-login > .row {
  min-height: 100vh;
}
.section-login .title-login {
  font-size: 40px;
}
@media (max-width: 991px) {
  .section-login .title-login {
    font-size: 26px;
  }
}
.section-login .bg-login {
  position: relative;
  z-index: 1;
}
.section-login .bg-login::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #030E17;
  opacity: 0.78;
  z-index: -1;
}

@media (max-width: 991px) {
  .slider__thumbs {
    height: 260px;
  }
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f053";
  font-family: "Font Awesome 6 free";
  font-weight: bold;
  color: #FFF;
  font-size: 14px;
  transform: translateY(11px);
  margin: 0px 5px;
}

.main-footer {
  border-radius: 64px;
  background: #F1F7FB;
  padding: 60px 55px;
}
@media (max-width: 991px) {
  .main-footer {
    padding: 40px 20px 30px;
  }
}
.main-footer .link-footer li {
  width: 50%;
}
.main-footer .link-footer a {
  color: #1E1E1E;
  display: inline-block;
  padding: 5px 0px;
  font-family: "din-next-medium";
  font-size: 16px;
  margin-bottom: 5px;
  position: relative;
  transition: color 200ms;
}
.main-footer .link-footer a:hover {
  color: #73A6CE;
}

.social-media {
  display: flex;
  align-items: center;
}
.social-media li:not(:last-of-type) {
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.social-media li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out, color 0.2s ease-in-out;
  color: #73A6CE;
  border: 1px solid #73A6CE;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-media li a:hover {
  background-color: #73A6CE;
  color: #FFF;
}/*# sourceMappingURL=main.css.map */