/*-----------------------------------------------------------------------------------

  Project Name: Digibank - Advanced Digital Banking System with Rewards
  Author: Tdevs
  Support: 
  Description: Digibank - Advanced Digital Banking System with Rewards
  Version: 1.0

-----------------------------------------------------------------------------------

/*----------------------------------------*/
/*   Globals Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
:root {
  --td-ff-body: "K2D", sans-serif;
  --td-ff-fontawesome: "Font Awesome 6 Pro";
  --td-ff-icomoon: "icomoon";
  --td-white: hsl(0, 0%, 100%);
  --td-black: hsl(0, 0%, 0%);
  --td-placeholder: hsla(0, 0%, 0%, 0.5);
  --td-selection: hsl(0, 0%, 0%);
  --td-heading: #130804;
  --td-primary: #FF7E42;
  --td-text-primary: #585858;
  --td-text-secondary: #b9b8c3;
  --td-border-primary: #DBDBDB;
  --td-warning: #FFA336;
  --td-success: #00D909;
  --td-danger: #FF0101;
  --td-green: #80ED99 ;
  --td-sugar-milk: #FFF9F6;
  --td-forsythia-bud: #20293A;
  --golden-glam: #F4B943;
  --td-fw-normal: normal;
  --td-fw-thin: 100;
  --td-fw-elight: 200;
  --td-fw-light: 300;
  --td-fw-regular: 400;
  --td-fw-medium: 500;
  --td-fw-sbold: 600;
  --td-fw-bold: 700;
  --td-fw-ebold: 800;
  --td-fw-black: 900;
  --td-fs-body: 16px;
  --td-fs-p: 16px;
  --td-fs-h1: 60px;
  --td-fs-h2: 48px;
  --td-fs-h3: 38px;
  --td-fs-h4: 32px;
  --td-fs-h5: 24px;
  --td-fs-h6: 20px;
}

/*---------------------------------
/*  Default Spacing
---------------------------------*/
.section-space {
  padding-top: 110px;
  padding-bottom: 110px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.section-space-top {
  padding-top: 110px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space-top {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-top {
    padding-top: 70px;
  }
}

.section-space-bottom {
  padding-bottom: 110px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 70px;
  }
}

.section-title-space {
  margin-bottom: 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title-space {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title-space {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-space {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title-space {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .section-title-space {
    margin-bottom: 30px;
  }
}

/*----------------------------------------*/
/*   Typography scss
/*----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: var(--td-ff-body);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: var(--td-text-primary);
}
body.dark-theme {
  background-color: #041F2C;
}
body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
  color: var(--td-white);
}

/*----------------------------------------*/
/*  Body-overlay bg
/*----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--td-heading);
  margin-top: 0px;
  line-height: 1.125;
  margin-bottom: 0;
  font-weight: 700;
  word-break: break-word;
}

h1,
.h1 {
  line-height: 1.125;
  font-weight: 700;
  font-size: clamp(1.75rem, 1rem + 2vw, 3rem);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 32px;
  }
}

h2,
.h2 {
  font-size: clamp(1.375rem, 0.875rem + 1.5vw, 2.5rem);
  line-height: 1.3;
  font-weight: 700;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  h2,
  .h2 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2,
  .h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2,
  .h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  h2,
  .h2 {
    font-size: 24px;
  }
}

h3,
.h3 {
  font-size: clamp(1.375rem, 0.875rem + 1.5vw, 2.125rem);
  line-height: 1.2;
  font-weight: 700;
}

h4,
.h4 {
  font-size: clamp(1.375rem, 0.875rem + 1.5vw, 1.625rem);
  line-height: 1.34;
  font-weight: 700;
}

h5,
.h5 {
  font-size: clamp(1.375rem, 0.875rem + 1.5vw, 1.125rem);
  line-height: 1.4;
  font-weight: 500;
}

h6,
.h6 {
  font-size: clamp(1.375rem, 0.875rem + 1.5vw, 1.25rem);
  line-height: 1.44;
  font-weight: 500;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  color: var(--td-text-primary);
  font-size: 1rem;
  line-height: 1.63;
}
.dark-theme p {
  color: var(--td-text-secondary);
}
p.b1 {
  font-size: 12px;
  line-height: 1.4;
}
p.b2 {
  font-size: 14px;
  line-height: 1.5;
}
p.b3 {
  font-size: 20px;
  line-height: 1.625;
}
p.b4 {
  font-size: 22px;
  line-height: 1.754;
}
p:last-child {
  margin-bottom: 0px;
}

a {
  text-decoration: none;
}

a,
.btn,
img,
button,
select,
textarea,
.transition-3 {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

.o-x-clip {
  overflow-x: clip;
}

img {
  max-width: 100%;
  object-fit: cover;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

hr:not([size]) {
  margin: 0;
  border-color: var(--td-border-primary);
  opacity: 1;
  border-width: 1px;
}

*::-moz-selection {
  background: var(--td-black);
  color: var(--td-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--td-black);
  color: var(--td-white);
  text-shadow: none;
}

::selection {
  background: var(--td-black);
  color: var(--td-white);
  text-shadow: none;
}

*::-moz-placeholder {
  opacity: 1;
  font-size: 14px;
}

*::placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
}

/*---------------------------------
  1.2 Common Classes
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.position-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hr-1 {
  border-top: 1px solid var(--td-border-primary);
}

.x-clip {
  overflow-x: clip;
}

.o-visible {
  overflow: visible;
}

.valign {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

input[type=text],
input[type=search],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
textarea {
  outline: none;
  background-color: transparent;
  width: 100%;
  font-size: 14px;
}
input[type=text]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: var(--td-primary);
}

textarea {
  padding: 14px 24px;
}
textarea:focus {
  border-color: var(--td-heading);
}

/*---------------------------------
/*  Custom Check Box
---------------------------------*/
.animate-custom .cbx {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.animate-custom .cbx span {
  display: inline-block;
  vertical-align: middle;
}
.animate-custom .cbx span a {
  text-decoration: underline;
}
.animate-custom .cbx span a:hover {
  color: var(--td-primary);
}
.animate-custom .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid var(--td-text-secondary);
  transition: all 0.2s ease;
  margin-inline-end: 5px;
}
.animate-custom .cbx span:first-child svg {
  position: absolute;
  z-index: 1;
  top: 4px;
  inset-inline-start: 2px;
  fill: none;
  stroke: var(--td-white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.animate-custom .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--td-primary);
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  transition-delay: 0.2s;
}
.animate-custom .cbx span:last-child {
  margin-inline-start: 0;
  font-size: 16px;
  display: inline-flex;
  gap: 5px;
}
.dark-theme .animate-custom .cbx span:last-child {
  color: var(--td-text-secondary);
}
.animate-custom .cbx span:last-child:after {
  content: "";
  position: absolute;
  top: 8px;
  inset-inline-start: 0;
  height: 1px;
  width: 100%;
  background: var(--td-text-secondary);
  transform-origin: 0 0;
  transform: scaleX(0);
}
.animate-custom .inp-cbx:checked + .cbx span:first-child {
  border-color: var(--td-primary);
  background: var(--td-primary);
  animation: check-15 0.6s ease;
}
.animate-custom .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.animate-custom .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(2.2);
  opacity: 0;
  transition: all 0.6s ease;
}
.animate-custom .inp-cbx:checked + .cbx span:last-child {
  transition: all 0.3s ease;
}
.animate-custom input[type=checkbox] ~ label::after {
  display: none;
}
.animate-custom input[type=checkbox] ~ label {
  padding-inline-start: 0;
}

@keyframes check-15 {
  50% {
    transform: scale(1.2);
  }
}
/*----------------------------------------
  Bootstrap customize
-----------------------------------------*/
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 30px;
}

@media (min-width: 1601px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1350px;
  }
}
.large-container {
  max-width: 1530px;
}

.row {
  --bs-gutter-x: 30px;
}

.g-0, .gx-0 {
  --bs-gutter-x: ;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0 ;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 10px;
}

.gy-12 {
  --bs-gutter-y: 12px;
}

.gy-15 {
  --bs-gutter-y: 15px;
}

.gx-15 {
  --bs-gutter-x: 15px;
}

.g-20 {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.gy-20 {
  --bs-gutter-y: 20px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

.gy-20 {
  --bs-gutter-y: 20px;
}

.g-24 {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.gy-24 {
  --bs-gutter-y: 24px;
}

.gx-24 {
  --bs-gutter-x: 24px;
}

.gy-24 {
  --bs-gutter-y: 24px;
}

.g-30,
.gx-30 {
  --bs-gutter-x: 30px;
}

.g-30,
.gy-30 {
  --bs-gutter-y: 30px;
}

.g-40,
.gx-40 {
  --bs-gutter-x: 40px;
}

.g-40,
.gy-40 {
  --bs-gutter-y: 40px;
}

.g-50,
.gx-50 {
  --bs-gutter-x: 50px;
}

.g-50,
.gy-50 {
  --bs-gutter-y: 50px;
}

.g-60,
.gy-60 {
  --bs-gutter-y: 60px;
}

.gy-xs-16 {
  --bs-gutter-y: 15px;
}

/*----------------------------------------
  Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: #000000;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.body-overlay {
  background-color: #000000;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.body-overlay.opened {
  opacity: 0.7;
  visibility: visible;
}

/*----------------------------------------
  Mfp customize
-----------------------------------------*/
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1280px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1600px) and (max-width: 1800px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 1000px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 850px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 820px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 750px;
  }
}

.mfp-close {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.mfp-close:hover {
  color: var(--td-white);
}
.mfp-close::after {
  position: absolute;
  content: "\f00d";
  height: 100%;
  width: 100%;
  font-family: var(--td-ff-fontawesome);
  font-size: 31px;
  font-weight: 200;
  inset-inline-end: -20px;
  margin-top: -25px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mfp-close::after {
    inset-inline-end: 15px;
    margin-top: -30px;
  }
}

.color-switcher {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
@media (max-width: 575px) {
  .color-switcher {
    width: 40px;
    height: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .color-switcher {
    width: 50px;
    height: 30px;
  }
}
.color-switcher input {
  opacity: 0;
  width: 0;
  height: 0;
}
.color-switcher .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #415C68;
  border: 1px solid rgba(255, 255, 255, 0.37);
}
.color-switcher .slider.round {
  border-radius: 34px;
}
.color-switcher .slider.round:before {
  border-radius: 50%;
}
.color-switcher .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  inset-inline-start: 4px;
  bottom: 4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: linear-gradient(137.02deg, var(--td-primary) 0%, var(--golden-glam) 96.71%);
  box-shadow: 0px 10px 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 575px) {
  .color-switcher .slider:before {
    height: 16px;
    width: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .color-switcher .slider:before {
    height: 20px;
    width: 20px;
  }
}
.color-switcher input:checked + .slider {
  background-color: #415C68;
}
.color-switcher input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .color-switcher input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
[dir=rtl] .color-switcher input:checked + .slider:before {
  -webkit-transform: translateX(-26px);
  -ms-transform: translateX(-26px);
  transform: translateX(-26px);
}
@media (max-width: 575px) {
  .color-switcher input:checked + .slider:before {
    -webkit-transform: translateX(14px);
    -ms-transform: translateX(14px);
    transform: translateX(14px);
  }
}

/*----------------------------------------*/
/* Congratulations style
/*----------------------------------------*/
@media (max-width: 575px) {
  .congratulations-section {
    padding: 30px 0;
  }
}

.congratulation-wrapper {
  display: grid;
  place-content: center;
  text-align: center;
  height: 100vh;
  position: relative;
  z-index: 55;
}

.confetti-container {
  perspective: 700px;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.confetti {
  position: absolute;
  z-index: 1;
  top: -10px;
  border-radius: 0%;
}
.confetti--animation-slow {
  animation: confetti-slow 2.25s linear 1 forwards;
}
.confetti--animation-medium {
  animation: confetti-medium 1.75s linear 1 forwards;
}
.confetti--animation-fast {
  animation: confetti-fast 1.25s linear 1 forwards;
}

.js-container.container {
  max-width: 100%;
  margin: 0 auto;
  width: 100vw;
  height: 100vh;
  display: fixed;
  top: 0px;
}

.dark-theme .congratulation-contents-para {
  color: var(--td-text-secondary);
}

.congratulation-contents-title {
  margin-bottom: 10px;
}
.dark-theme .congratulation-contents-title {
  color: var(--td-white);
}

@keyframes confetti-slow {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  }
  100% {
    transform: translate3d(25px, 105vh, 0) rotateX(360deg) rotateY(180deg);
  }
}
@keyframes confetti-medium {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  }
  100% {
    transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(360deg);
  }
}
@keyframes confetti-fast {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  }
  100% {
    transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg);
  }
}
/* Checkmark */
.checkmark-circle {
  width: 150px;
  height: 150px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.checkmark-circle .background {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00C09D;
  position: absolute;
}
.checkmark-circle .checkmark {
  border-radius: 5px;
}
.checkmark-circle .checkmark.draw:after {
  -webkit-animation-delay: 100ms;
  -moz-animation-delay: 100ms;
  animation-delay: 100ms;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-name: checkmark;
  -moz-animation-name: checkmark;
  animation-name: checkmark;
  -webkit-transform: scaleX(-1) rotate(135deg);
  -moz-transform: scaleX(-1) rotate(135deg);
  -ms-transform: scaleX(-1) rotate(135deg);
  -o-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.checkmark-circle .checkmark:after {
  opacity: 1;
  height: 75px;
  width: 37.5px;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
  border-right: 15px solid var(--td-white);
  border-top: 15px solid var(--td-white);
  border-radius: 2.5px !important;
  content: "";
  top: 80px;
  position: absolute;
  left: 40px;
}

@-webkit-keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 37.5px;
    opacity: 1;
  }
  40% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }
  100% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }
}
@-moz-keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 37.5px;
    opacity: 1;
  }
  40% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }
  100% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 37.5px;
    opacity: 1;
  }
  40% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }
  100% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }
}
/*----------------------------------------*/
/* Contact css
/*----------------------------------------*/
.contact-info-item {
  background: var(--td-white);
  border: 1px solid var(--td-border-primary);
  border-radius: 20px;
  padding: 95px 50px 50px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 60px;
}
.dark-theme .contact-info-item {
  background-color: #415C68;
  border-color: rgba(255, 255, 255, 0.3);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-info-item {
    padding: 75px 30px 50px;
  }
}
@media (max-width: 575px) {
  .contact-info-item {
    padding: 75px 20px 50px;
  }
}
.contact-info-item .icon {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 118px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-info-item .icon {
    max-width: 98px;
  }
}
.contact-info-item .icon span {
  background: var(--td-white);
  box-shadow: 0px 14px 24px -4px rgba(19, 8, 4, 0.11);
  border-radius: 50%;
  display: inline-block;
}
.dark-theme .contact-info-item .icon span {
  background-color: #415C68;
}
.contact-info-item .contents .title {
  font-size: 20px;
  margin-bottom: 8px;
}
.contact-info-item .contents .description {
  margin-bottom: 15px;
}
.contact-info-item .contents .link {
  font-size: 28px;
  font-weight: 700;
}
.dark-theme .contact-info-item .contents .link {
  color: var(--td-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-info-item .contents .link {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-info-item .contents .link {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .contact-info-item .contents .link {
    font-size: 20px;
  }
}
.contact-info-item .contents .link a:hover {
  color: var(--td-primary);
}

.contact-form-wrapper form {
  background: #FFF5F1;
  border: 1px solid #FFDAC7;
  border-radius: 16px;
  padding: 50px 50px;
}
.dark-theme .contact-form-wrapper form {
  background: #415C68;
  border-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-wrapper form {
    padding: 30px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-wrapper form {
    padding: 30px 30px;
  }
}
@media (max-width: 575px) {
  .contact-form-wrapper form {
    padding: 20px 20px;
  }
}

.contact-form-input .input, .contact-form-input textarea {
  background: var(--td-white);
  border: 1px solid #DEE4EC;
  box-shadow: 0px 36px 75px -4px rgba(19, 8, 4, 0.08);
  border-radius: 14px;
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  color: var(--td-heading);
}
.contact-form-input .input:focus, .contact-form-input textarea:focus {
  border-color: var(--td-primary);
}
.contact-form-input .input::-webkit-input-placeholder, .contact-form-input textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--td-heading);
  font-size: 16px;
}
.contact-form-input .input::-moz-placeholder, .contact-form-input textarea::-moz-placeholder { /* Firefox 19+ */
  color: var(--td-heading);
  font-size: 16px;
}
.contact-form-input .input:-moz-placeholder, .contact-form-input textarea:-moz-placeholder { /* Firefox 4-18 */
  color: var(--td-heading);
  font-size: 16px;
}
.contact-form-input .input:-ms-input-placeholder, .contact-form-input textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--td-heading);
  font-size: 16px;
}
.contact-form-input .input::placeholder, .contact-form-input textarea::placeholder { /* MODERN BROWSER */
  color: var(--td-heading);
  font-size: 16px;
}
.contact-form-input .textarea {
  height: 230px;
  padding: 20px 20px;
}

/*----------------------------------------*/
/*  Rewards css
/*----------------------------------------*/
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 45px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .rewards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .rewards-grid {
    grid-template-columns: 1fr;
  }
}

.rewards-item {
  background: var(--td-white);
  border: 1px solid var(--td-border-primary);
  border-radius: 20px;
  padding: 90px 40px 40px;
  text-align: center;
  position: relative;
  margin-top: 60px;
}
.dark-theme .rewards-item {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid #4F4E4E;
}
@media (max-width: 480px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rewards-item {
    padding: 65px 20px 30px;
  }
}
.rewards-item .icon {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 118px;
}
@media (max-width: 480px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .rewards-item .icon {
    max-width: 98px;
  }
}
.rewards-item .contents .title {
  font-size: 26px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rewards-item .contents .title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .rewards-item .contents .title {
    font-size: 20px;
  }
}
.rewards-item .contents .description {
  margin-bottom: 25px;
}
.rewards-item .rewards-point {
  text-align: center;
  margin-bottom: 20px;
}
.rewards-item .rewards-point span {
  display: inline-flex;
  padding: 10px 15px;
  gap: 10px;
  height: 44px;
  background: #FFEEE6;
  border-radius: 12px;
  color: var(--td-primary);
}

.reward-table table {
  border-spacing: 0px 20px;
  border-collapse: separate;
  margin-bottom: 0;
  background: var(--td-white);
  border: 1px solid #D7D7D7;
  border-radius: 12px;
  padding: 0 30px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .reward-table table {
    min-width: 550px;
  }
}
.reward-table table thead tr th {
  font-size: 16px;
  border: 0;
  background: transparent;
  border-bottom: 1px solid var(--td-border-primary);
  padding: 0px 20px 20px;
  color: var(--td-text-primary);
}
.reward-table table tbody tr td {
  font-weight: 700;
  color: var(--td-heading);
  padding: 0px 20px;
  border: 0;
  font-size: 16px;
}
.reward-table table tbody tr td:first-child {
  border-radius: 6px 0px 0px 6px;
}
.reward-table table tbody tr td:last-child {
  border-radius: 0px 6px 6px 0px;
}

/*----------------------------------------*/
/*  Timeline css
/*----------------------------------------*/
.work-timeline-grid {
  max-width: 990px;
  margin: 0 auto;
}

.work-timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 0px;
  gap: 30px 307px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-timeline-item {
    gap: 30px 130px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .work-timeline-item {
    flex-direction: column;
    padding-top: 100px;
  }
}
.work-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .work-timeline-item:nth-child(even) {
    flex-direction: column;
  }
}
.work-timeline-item:not(:last-child) {
  padding-bottom: 80px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1600px) and (max-width: 1800px) {
  .work-timeline-item:not(:last-child) {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .work-timeline-item:not(:last-child) {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .work-timeline-item:not(:last-child) {
    padding-bottom: 50px;
  }
}
.work-timeline-item::before {
  position: absolute;
  content: "";
  height: 100%;
  border: 5px solid #E2E2E2;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.dark-theme .work-timeline-item::before {
  border-color: #415C68;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .work-timeline-item::before {
    display: none;
  }
}
.work-timeline-item .content {
  max-width: 400px;
  background: var(--td-white);
  box-shadow: 0px 36px 75px -4px rgba(19, 8, 4, 0.08);
  border-radius: 18px;
  padding: 40px 40px;
  position: relative;
  z-index: 1;
}
.dark-theme .work-timeline-item .content {
  background: rgba(255, 255, 255, 0.16);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .work-timeline-item .content {
    padding: 30px 30px;
  }
}
@media (max-width: 480px) {
  .work-timeline-item .content {
    padding: 30px 20px;
  }
}
.work-timeline-item .content::before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 1px;
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  background: linear-gradient(135.52deg, rgb(255, 126, 66) 0%, rgb(244, 185, 67) 100%);
  mask-composite: exclude;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .work-timeline-item .content {
    max-width: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-timeline-item .content {
    max-width: 310px;
  }
}
.work-timeline-item .content .title {
  font-size: 26px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-timeline-item .content .title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .work-timeline-item .content .title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .work-timeline-item .content .title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .work-timeline-item .content .title {
    font-size: 18px;
  }
}
.work-timeline-item .content .title::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100px;
  background-color: var(--td-primary);
  bottom: 0;
  inset-inline-start: 0;
}
.work-timeline-item .content .title::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  bottom: 0;
  opacity: 0.25;
  border: 1.5px solid var(--td-primary);
  inset-inline-start: 0;
}
.work-timeline-item .content .description {
  margin-bottom: 0;
}
.work-timeline-item .timeline-thumb {
  max-width: 190px;
  margin: 0 auto;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .work-timeline-item .timeline-thumb {
    max-width: 160px;
  }
}
@media (max-width: 575px) {
  .work-timeline-item .timeline-thumb {
    max-width: 120px;
  }
}
.work-timeline-item .timeline-thumb img {
  border-radius: 10px;
}
.work-timeline-item .timeline-count {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.work-timeline-item .timeline-count .number {
  width: 65px;
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(137.02deg, var(--td-primary) 0%, var(--golden-glam) 96.71%);
  box-shadow: 0px 12px 24px rgba(255, 126, 66, 0.23);
  color: var(--td-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .work-timeline-item .timeline-count .number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/*----------------------------------------*/
/* Cta style
/*----------------------------------------*/
.cta-main-wrapper {
  background-color: var(--td-white);
  padding: 50px 50px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  margin-top: 125px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-main-wrapper {
    margin-top: 70px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-main-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .cta-main-wrapper {
    padding: 25px 25px;
  }
}

.cta-content .cta-title {
  font-size: 45px;
  margin-bottom: 20px;
  color: var(--td-heading);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .cta-content .cta-title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-content .cta-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-content .cta-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-content .cta-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-content .cta-title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .cta-content .cta-title {
    font-size: 20px;
  }
}
.cta-content .description {
  margin-bottom: 33px;
  padding-bottom: 33px;
  position: relative;
  color: var(--td-text-primary);
}
.cta-content .description:before {
  position: absolute;
  content: "";
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-image: linear-gradient(90deg, rgba(88, 88, 88, 0.33) 0%, rgba(88, 88, 88, 0) 100%);
  border-image-slice: 1;
}

.cta-thumb {
  position: absolute;
  bottom: -54px;
  inset-inline-end: 0;
}

.cta-shape {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  z-index: -1;
  max-width: 431px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-shape {
    position: inherit;
    margin-top: 70px;
  }
}
.cta-shape img {
  width: 100%;
}

/*----------------------------------------*/
/*  Price css
/*----------------------------------------*/
.price-main-wrapper {
  background: var(--td-white);
  border-radius: 40px;
  padding: 50px 70px 70px;
  position: relative;
  z-index: 2;
}
.dark-theme .price-main-wrapper {
  background: hsl(196.12, 72.04%, 18.24%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px) {
  .price-main-wrapper {
    padding: 50px 50px 70px;
  }
}
@media (max-width: 575px) {
  .price-main-wrapper {
    padding: 50px 30px 50px;
  }
}
@media (max-width: 480px) {
  .price-main-wrapper {
    padding: 50px 15px 15px;
  }
}
.price-main-wrapper::before {
  position: absolute;
  content: "";
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  height: 50%;
  background: #20293A;
  border-radius: 33px;
  z-index: -1;
}
@media (max-width: 575px) {
  .price-main-wrapper::before {
    display: none;
  }
}

.price-tab-content {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 100px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .price-tab-content {
    gap: 50px;
    flex-direction: column;
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .price-tab-content {
    gap: 30px;
    flex-direction: column;
    margin-bottom: 46px;
  }
}

.price-tab-list.td-tab {
  padding: 10px 10px;
  background: #E9E9E9;
  border-radius: 57px;
}
@media (max-width: 575px) {
  .price-tab-list.td-tab {
    border-radius: 24px;
  }
}
.price-tab-list.td-tab .nav-tabs {
  gap: 20px 70px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .price-tab-list.td-tab .nav-tabs {
    gap: 16px 16px;
  }
}
.price-tab-list.td-tab .nav-tabs .nav-link {
  height: 70px;
  padding: 0 40px;
  background: var(--td-white);
  box-shadow: 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  border-radius: 45.6px;
  font-size: 24px;
  color: var(--td-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .price-tab-list.td-tab .nav-tabs .nav-link {
    font-size: 20px;
    gap: 12px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .price-tab-list.td-tab .nav-tabs .nav-link {
    height: 50px;
    font-size: 18px;
    gap: 10px;
    padding: 0 20px;
  }
}
.price-tab-list.td-tab .nav-tabs .nav-link .icon {
  display: none;
}
.price-tab-list.td-tab .nav-tabs .nav-link.active {
  color: var(--td-primary);
  opacity: 1;
}
.price-tab-list.td-tab .nav-tabs .nav-link.active .icon {
  display: block;
}
.price-tab-list.td-tab .nav-tabs .nav-link.active .icon svg {
  max-width: 44px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .price-tab-list.td-tab .nav-tabs .nav-link.active .icon svg {
    max-width: 32px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .price-tab-list.td-tab .nav-tabs .nav-link.active .icon svg {
    max-width: 20px;
  }
}

.price-item {
  background: var(--td-white);
  box-shadow: -9px 34px 200px 10px rgba(19, 8, 4, 0.2);
  border-radius: 26px;
  padding: 40px 40px 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .price-item {
    padding: 30px 25px 30px;
  }
}
@media (max-width: 480px) {
  .price-item {
    padding: 20px 20px 20px;
  }
}
.price-item.plan-active {
  position: relative;
  z-index: 5;
  margin-bottom: 15px;
}
.price-item.plan-active::before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  -o-border-radius: 26px;
  -ms-border-radius: 26px;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(303deg, rgba(var(--td-white), 0) 0%, rgba(255, 255, 255, 0.43) 100%);
  background: linear-gradient(137.02deg, rgb(255, 126, 66) 0%, rgb(244, 185, 67) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.price-item.plan-active::after {
  position: absolute;
  content: "";
  height: 100%;
  width: calc(100% - 40px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.price-heading {
  margin-bottom: 20px;
}
.price-heading .title {
  font-size: 30px;
  margin-bottom: 5px;
  color: var(--td-heading);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .price-heading .title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .price-heading .title {
    font-size: 20px;
  }
}
.price-heading .description {
  font-size: 18px;
  color: var(--td-heading);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .price-heading .description {
    font-size: 16px;
  }
}

.price-value {
  display: flex;
  gap: 10px;
  align-items: center;
}
.price-value .title {
  font-size: 40px;
  font-weight: 700;
  color: var(--td-heading);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .price-value .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .price-value .title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .price-value .title {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .price-value .title {
    font-size: 26px;
  }
}
.price-value .dollar {
  font-size: 26px;
  color: var(--td-heading);
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .price-value .dollar {
    font-size: 20px;
  }
}
.price-value sub {
  font-size: 20px;
}
@media (max-width: 575px) {
  .price-value sub {
    font-size: 16px;
  }
}

.price-list {
  margin-top: 35px;
  margin-bottom: 35px;
}
.price-list ul li {
  list-style: none;
}
.price-list ul li:not(:last-child) {
  margin-bottom: 20px;
}
.price-list ul li .list-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.price-list ul li .list-item .title {
  font-size: 18px;
  font-weight: 500;
  color: var(--td-heading);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .price-list ul li .list-item .title {
    font-size: 16px;
  }
}

.row [class*=col-]:nth-child(2) .price-item {
  margin-top: -40px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .row [class*=col-]:nth-child(2) .price-item {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .row [class*=col-]:nth-child(2) .price-item {
    margin-bottom: 0;
  }
}

.pricing-section.style-two {
  padding-top: 180px;
}

/*----------------------------------------*/
/* feedback style
/*----------------------------------------*/
.feedback-item {
  background: var(--td-white);
  border: 1px solid var(--td-border-primary);
  border-radius: 16px;
  padding: 65px 25px 30px;
  position: relative;
  margin-top: 20px;
}
.dark-theme .feedback-item {
  background-color: #415C68;
  border-color: rgba(255, 255, 255, 0.3);
}

.admin-thumb-content {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  top: -20px;
  background: var(--td-white);
  border: 1px solid var(--td-border-primary);
  box-shadow: 0px 20px 26px rgba(69, 69, 69, 0.1);
  border-radius: 32.5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 12px;
}
.dark-theme .admin-thumb-content {
  background-color: #415C68;
  border-color: rgba(255, 255, 255, 0.3);
}
.admin-thumb-content .thumb {
  max-width: 45px;
}
.admin-thumb-content .icon {
  height: 44px;
  width: 44px;
  background: #EF3737;
  box-shadow: 0px 8px 20px rgba(239, 55, 55, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.feedback-content .description {
  font-size: 18px;
}

.feedback-icon {
  margin-bottom: 10px;
}
.feedback-icon span {
  color: #FBB040;
}

.admin-info .title {
  font-size: 18px;
}
.dark-theme .admin-info .info {
  color: var(--td-border-primary);
}

.slider-pagination-wrapper {
  margin-top: 40px;
}

.td-swiper-dot .swiper-pagination-bullet {
  width: 25px;
  height: 9px;
  background-color: #C1C1C1;
  border-radius: 6px;
  opacity: 1;
  position: relative;
  margin: 0 8px !important;
}
.td-swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(137.02deg, var(--td-primary) 0%, var(--golden-glam) 96.71%);
  box-shadow: 0px 3px 8px rgba(255, 126, 66, 0.19);
}

/*----------------------------------------*/
/* About style
/*----------------------------------------*/
.video-wrapper {
  margin-top: 30px;
}

.video-content {
  background: var(--td-white);
  border: 1px solid var(--td-border-primary);
  box-shadow: 0px 36px 75px -4px rgba(19, 8, 4, 0.08);
  border-radius: 24px;
  width: max-content;
  padding: 18px 40px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  font-weight: 700;
  z-index: 1;
}
.dark-theme .video-content {
  background-color: #415C68;
}
@media (max-width: 480px) {
  .video-content {
    width: 100%;
    padding: 12px 24px;
  }
}
.video-content .title {
  font-size: 20px;
}
@media (max-width: 480px) {
  .video-content .title {
    font-size: 18px;
  }
}

.video-thumb-inner {
  border: 10px solid var(--td-white);
  box-shadow: 0px 26px 40px -6px rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  position: relative;
}
.dark-theme .video-thumb-inner {
  border-color: #415C68;
}
.video-thumb-inner .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .video-thumb-inner .play-btn {
    padding: 10px;
  }
}
.video-thumb-inner .play-btn span {
  height: 130px;
  width: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(137.02deg, var(--td-primary) 0%, var(--golden-glam) 96.71%);
  border-radius: 50%;
  color: var(--td-white);
  font-size: 30px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .video-thumb-inner .play-btn span {
    height: 80px;
    width: 80px;
  }
}

.video-thumb {
  position: relative;
  min-height: 650px;
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .video-thumb {
    min-height: 380px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .video-thumb {
    min-height: 500px;
  }
}
.video-thumb::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  inset-inline-start: 0;
  background: linear-gradient(0deg, rgba(19, 8, 4, 0.52), rgba(19, 8, 4, 0.52));
  border-radius: 24px;
}

/*----------------------------------------*/
/*  banner css
/*----------------------------------------*/
.sponsor-main-wrapper {
  position: relative;
  margin-top: -56px;
}

.sponsor_active .swiper-wrapper {
  align-items: center;
}

.sponsor-item-grid {
  background: var(--td-white);
  box-shadow: 0px 299px 500px rgba(7, 20, 60, 0.0363503), 0px 66.7856px 111.682px rgba(7, 20, 60, 0.0436), 0px 19.8838px 33.2505px rgba(7, 20, 60, 0.06);
  border-radius: 20px;
  margin: 0 auto;
  padding: 45px 45px;
  position: relative;
  margin-top: 7px;
  overflow: hidden;
}
.dark-theme .sponsor-item-grid {
  background-color: #415C68;
}
.sponsor-item-grid::before {
  position: absolute;
  content: "";
  height: 7px;
  width: 100%;
  top: 0;
  inset-inline-start: 0;
  background: var(--td-primary);
  border-radius: 24px 24px 0px 0px;
}

.sponsor-item {
  text-align: center;
}

.sponsor-thumb {
  max-width: 180px;
}

/*----------------------------------------*/
/*  Work process css
/*----------------------------------------*/
.work-process-main {
  position: relative;
}

.work-process-item {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8.5px);
  border-radius: 20px;
  padding: 30px 30px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .work-process-item {
    padding: 25px 25px;
  }
}
.work-process-item:before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(148.93deg, rgba(204, 204, 204, 0.68) 0%, rgba(143, 143, 143, 0.78) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.work-process-item .icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 243, 237, 0.24);
  box-shadow: 0px 15px 35px -5px rgba(0, 0, 0, 0.1);
  border-radius: 54.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .work-process-item .icon {
    width: 80px;
    height: 80px;
  }
}
.work-process-item .icon span {
  max-width: 58px;
}
@media (max-width: 575px) {
  .work-process-item .icon span {
    max-width: 34px;
  }
}
.work-process-item .content .title {
  margin-bottom: 20px;
  color: var(--td-white);
  font-size: 26px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .work-process-item .content .title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .work-process-item .content .title {
    font-size: 20px;
  }
}
.work-process-item .content .description {
  color: var(--td-white);
}

.work-process-main .row [class*=col-]:nth-child(2) .work-process-item, .work-process-main .row :nth-child(3) .work-process-item {
  margin-top: 200px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .work-process-main .row [class*=col-]:nth-child(2) .work-process-item, .work-process-main .row :nth-child(3) .work-process-item {
    margin-top: 0;
  }
}

.process-intro-logo {
  position: absolute;
  top: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 111px;
  height: 111px;
  background: #38444D;
  border-radius: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .process-intro-logo {
    position: inherit;
    margin-bottom: 40px;
  }
}
.process-intro-logo span {
  width: 91px;
  height: 91px;
  background: var(--td-white);
  border-radius: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*----------------------------------------*/
/*  Professional features css
/*----------------------------------------*/
.professional-features-item {
  background: var(--td-white);
  border: 1px solid var(--td-border-primary);
  border-radius: 20px;
  padding: 55px 40px 55px;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 480px) {
  .professional-features-item {
    padding: 45px 30px 45px;
  }
}
.dark-theme .professional-features-item {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}
.professional-features-item::before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 1px;
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  background: linear-gradient(135.52deg, rgb(255, 126, 66) 0%, rgb(255, 126, 66) 100%);
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
.professional-features-item:hover {
  box-shadow: 0px 36px 75px -4px rgba(19, 8, 4, 0.08);
  border-color: transparent;
}
.professional-features-item:hover::before {
  opacity: 1;
}
.professional-features-item .icon {
  padding-bottom: 45px;
  border-bottom: 1px solid var(--td-border-primary);
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 575px) {
  .professional-features-item .icon {
    padding-bottom: 35px;
    margin-bottom: 25px;
  }
}
.professional-features-item .icon::before {
  position: absolute;
  content: "";
  width: 40%;
  height: 1px;
  background-color: var(--td-primary);
  bottom: -1px;
  inset-inline-start: 0;
}
.professional-features-item .icon span {
  max-width: 81px;
  display: block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .professional-features-item .icon span {
    max-width: 65px;
  }
}
@media (max-width: 575px) {
  .professional-features-item .icon span {
    max-width: 55px;
  }
}
.professional-features-item .content .title {
  margin-bottom: 20px;
  font-size: 26px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .professional-features-item .content .title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .professional-features-item .content .title {
    font-size: 22px;
  }
}
.professional-features-item .content .title a:hover {
  color: var(--td-primary);
}

/*----------------------------------------*/
/*  Our solutions css
/*----------------------------------------*/
.our-solutions-item {
  text-align: center;
  max-width: 321px;
  margin: 0 auto;
  text-align: center;
}

.our-solutions-icon {
  margin-bottom: 35px;
}

.our-solutions-content .title {
  font-size: 26px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .our-solutions-content .title {
    font-size: 20px;
  }
}

/*----------------------------------------*/
/*  terms-conditions css
/*----------------------------------------*/
.terms-conditions-content .wrapper-title {
  line-height: 1.3;
  margin-bottom: 30px;
}
.terms-conditions-content p {
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 30px;
}
.terms-conditions-content .info-title {
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .terms-conditions-content .info-title {
    font-size: 18px;
  }
}
.terms-conditions-content .icon_list {
  margin-bottom: 40px;
}
.terms-conditions-content .icon_list.unordered-list-block > li {
  list-style: none;
}
.terms-conditions-content .icon_list.unordered-list-block > li:not(:last-child) {
  margin-bottom: 14px;
}
.terms-conditions-content .icon_list .list-item-text {
  color: var(--td-text-primary);
}
.dark-theme .terms-conditions-content .icon_list .list-item-text {
  color: var(--td-text-secondary);
}
.terms-conditions-content .icon_list .list-item-icon {
  flex: none;
  width: auto;
  height: auto;
  font-size: 5px;
  border-radius: 0;
  margin-inline-end: 10px;
  color: var(--td-text-primary);
  background-color: transparent;
}
.terms-conditions-content .link {
  font-size: 17px;
  font-weight: 600;
  line-height: 27px;
  color: var(--td-primary);
  text-decoration: underline;
}
.terms-conditions-content .author-mail {
  font-size: 21px;
  font-weight: 700;
  line-height: 29px;
  color: var(--td-primary);
}

/*----------------------------------------*/
/* About style
/*----------------------------------------*/
.about-thumb-wrap {
  position: relative;
  z-index: 11;
}
.about-thumb-wrap .about-card-one {
  background: rgba(var(--td-white), 0.75);
  box-shadow: -10px 18px 33px -3px rgba(46, 30, 85, 0.12);
  backdrop-filter: blur(35px);
  border-radius: 16px;
  width: max-content;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  inset-inline-start: -5%;
  top: 30%;
}
.about-thumb-wrap .about-card-one .title {
  font-size: 18px;
  font-weight: 700;
}
.about-thumb-wrap .about-card-two {
  background: rgba(var(--td-white), 0.75);
  box-shadow: -10px 18px 33px -3px rgba(46, 30, 85, 0.12);
  backdrop-filter: blur(35px);
  border-radius: 16px;
  max-width: 180px;
  padding: 15px 20px;
  position: absolute;
  inset-inline-start: 21%;
  bottom: 0;
}
.about-thumb-wrap .about-card-two .short-title {
  font-size: 15px;
  color: var(--td-heading);
}
.about-thumb-wrap .about-card-two .title {
  font-size: 22px;
  font-weight: 700;
}
.about-thumb-wrap .check-line {
  position: absolute;
  top: 10%;
  inset-inline-end: -7%;
  box-shadow: 14px 20px 45px 2px rgba(8, 34, 84, 0.1);
  border-radius: 100px;
}
.about-thumb-wrap .about-thumb img {
  width: 100%;
}
.about-thumb-wrap .round-one {
  width: 175px;
  height: 175px;
  background: #7984EE;
  border-radius: 50%;
  position: absolute;
  top: 20%;
  z-index: -1;
  inset-inline-start: 20%;
}
.about-thumb-wrap .round-two {
  position: absolute;
  width: 175px;
  height: 175px;
  background: #5BC1F4;
  border-radius: 50%;
  bottom: -40px;
  z-index: -1;
  inset-inline-start: 30%;
}

.about-content-wrap {
  padding-inline-start: 25px;
}
.about-content-wrap .common-list {
  margin-bottom: 35px;
}

.about-main-wrapper .btn-wrap .site-btn {
  background-color: #415C68;
  color: var(--td-white);
}

/*----------------------------------------*/
/*  Postbox css
/*----------------------------------------*/
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox-wrapper {
    padding-inline-start: 0;
  }
}

.postbox-text p {
  font-size: 18px;
  line-height: 26px;
}
.postbox-text p.first-description:first-letter {
  font-size: 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox-text p.first-description:first-letter {
    font-size: 38px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox-text p {
    font-size: 16px;
  }
}
.postbox-text p b {
  font-weight: 700;
}

.postbox-thumb-grid {
  display: grid;
  grid-template-columns: 62% auto;
  gap: 30px 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1600px) and (max-width: 1800px) {
  .postbox-thumb-grid {
    grid-template-columns: 63.5% auto;
  }
}
@media (max-width: 575px) {
  .postbox-thumb-grid {
    grid-template-columns: 1fr;
  }
}

.postbox-thumb img {
  border-radius: 10px;
}

.postbox-title h3 {
  font-size: 25px;
  margin-bottom: 18px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox-title h3 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox-title h3 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox-title h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .postbox-title h3 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .postbox-title h3 {
    font-size: 20px;
  }
}

.sidebar-wrapper {
  padding: 25px 30px 30px;
  background: rgba(var(--td-white), 0.08);
  border: 1px solid rgba(var(--td-white), 0.08);
  border-radius: 10px;
}
@media (max-width: 480px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-wrapper {
    padding: 20px 20px;
  }
}

.sidebar-widget-title {
  margin-bottom: 25px;
  color: var(--td-white);
  font-size: 22px;
}
@media (max-width: 480px) {
  .sidebar-widget-title {
    font-size: 20px;
  }
}

/*----------------------------------------*/
/*  why choose css
/*----------------------------------------*/
.why-choose-grid {
  display: grid;
  grid-template-columns: auto 547px auto;
  align-items: center;
  gap: 50px 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .why-choose-grid {
    grid-template-columns: auto 400px auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-choose-grid {
    gap: 50px 0px;
    grid-template-columns: 1fr 240px 1fr;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

.why-choose-item {
  background: var(--td-white);
  border: 1px solid var(--td-border-primary);
  box-shadow: 0px 36px 65px -4px rgba(19, 8, 4, 0.08);
  border-radius: 18px;
  padding: 20px 76px 20px 28px;
  position: relative;
  -webkit-transition: 0.3s 0.3s 0s ease-out;
  -moz-transition: 0.3s 0.3s 0s ease-out;
  -ms-transition: 0.3s 0.3s 0s ease-out;
  -o-transition: 0.3s 0.3s 0s ease-out;
  transition: 0.3s 0.3s 0s ease-out;
}
[dir=rtl] .why-choose-item {
  padding: 20px 28px 20px 76px;
}
.dark-theme .why-choose-item {
  background-color: #415C68;
  border-color: rgba(255, 255, 255, 0.3);
}
.why-choose-item.has-right {
  margin-inline-start: 50px;
  padding: 20px 28px 20px 76px;
}
[dir=rtl] .why-choose-item.has-right {
  padding: 20px 76px 20px 28px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-choose-item.has-right {
    padding: 20px 28px 20px 46px;
  }
}
.why-choose-item.has-right .why-choose-icon {
  inset-inline-end: auto;
  inset-inline-start: -51px;
}
.why-choose-item.has-left {
  text-align: end;
  margin-inline-end: 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-item.has-left {
    text-align: start;
    margin-inline-start: 50px;
    padding: 20px 28px 20px 76px;
  }
}
.why-choose-item .has-left {
  margin-inline-end: 50px;
}
.why-choose-item .has-left .why-choose-icon {
  inset-inline-end: auto;
  inset-inline-start: -52px;
}

.why-choose-content .title {
  font-size: 24px;
  margin-bottom: 12px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .why-choose-content .title {
    font-size: 20px;
  }
}
.why-choose-content .description {
  margin-bottom: 0;
}

.why-choose-icon {
  position: absolute;
  inset-inline-end: -51px;
  top: 50%;
  transform: translateY(-50%);
  padding: 11px;
  background: var(--td-white);
  box-shadow: 0px 9px 35px -5px rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dark-theme .why-choose-icon {
  background-color: #415C68;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-icon {
    inset-inline-start: -51px;
    inset-inline-end: auto;
  }
}
.why-choose-icon span {
  background: #FFEFE8;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-choose-icon span {
    width: 60px;
    height: 60px;
  }
}
.why-choose-icon span img {
  max-width: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-choose-icon span img {
    max-width: 34px;
  }
}

.why-choose-column {
  display: flex;
  flex-direction: column;
  gap: 100px 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-column {
    gap: 30px 0;
  }
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-thumb {
    max-width: 500px;
    margin: 0 auto;
  }
}

/*----------------------------------------*/
/* caches-privacy style
/*----------------------------------------*/
.caches-privacy {
  position: fixed;
  bottom: 30px;
  inset-inline-start: 30px;
  width: 430px;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  z-index: 80;
  backdrop-filter: blur(22px);
  background: var(--td-white);
  box-shadow: 0px 299px 500px rgba(7, 20, 60, 0.0363503), 0px 66.7856px 111.682px rgba(7, 20, 60, 0.0436), 0px 19.8838px 33.2505px rgba(7, 20, 60, 0.06);
  display: none;
}
@media (max-width: 480px) {
  .caches-privacy {
    width: auto;
    padding: 20px;
    inset-inline-start: 15px;
    inset-inline-end: 15px;
  }
}
.caches-privacy .content {
  margin-bottom: 15px;
}
.caches-privacy .content .title {
  font-size: 20px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .caches-privacy .content .title {
    font-size: 18px;
  }
}
.caches-privacy .content p {
  font-size: 14px;
  margin-bottom: 0;
}
.caches-privacy .content p a {
  color: #000000;
}
.caches-privacy .caches-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.caches-privacy .caches-btn .learn-more {
  font-size: 15px;
  font-weight: 500;
}
.caches-privacy .caches-btn .learn-more:hover {
  text-decoration: underline;
  color: var(--td-primary);
}
.caches-privacy .caches-btn .shifter-btn {
  height: 40px;
}
.caches-privacy .caches-btn .shifter-btn .btn-hover-slide {
  padding: 0px 26px;
}

/*----------------------------------------*/
/* FAQ style
/*----------------------------------------*/
.accordion-wrapper.site-faq .accordion .accordion-button {
  padding: 20px 65px 20px 20px;
  font-size: 24px;
  font-weight: 500;
  background: transparent;
  box-shadow: none;
  color: var(--td-heading);
  border-top: 0;
  font-weight: 700;
  display: flex;
  gap: 16px;
}
.dark-theme .accordion-wrapper.site-faq .accordion .accordion-button {
  color: var(--td-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .accordion-wrapper.site-faq .accordion .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .accordion-wrapper.site-faq .accordion .accordion-button {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .accordion-wrapper.site-faq .accordion .accordion-button {
    font-size: 18px;
    padding: 21px 30px 20px 20px;
  }
}
[dir=rtl] .accordion-wrapper.site-faq .accordion .accordion-button {
  padding: 20px 20px 20px 67px;
}
.accordion-wrapper.site-faq .accordion .accordion-button:not(.collapsed) {
  border: 0;
  border-radius: 0;
}
.accordion-wrapper.site-faq .accordion .accordion-button:not(.collapsed) .count {
  background: linear-gradient(137.02deg, var(--td-primary) 0%, #F4B943 96.71%);
  color: var(--td-white);
}
.accordion-wrapper.site-faq .accordion .accordion-button:not(.collapsed):after {
  content: "\f078" !important;
  background-image: none;
}
.accordion-wrapper.site-faq .accordion .accordion-button:not(.collapsed) .accordion-body {
  background: var(--td-white);
}
.accordion-wrapper.site-faq .accordion .accordion-button::after {
  position: absolute;
  inset-inline-end: 20px;
  content: "\f077";
  font-family: var(--td-ff-fontawesome);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  top: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: none;
}
@media (max-width: 575px) {
  .accordion-wrapper.site-faq .accordion .accordion-button::after {
    inset-inline-end: 20px;
  }
}
.accordion-wrapper.site-faq .accordion .accordion-button .count {
  width: 50px;
  height: 50px;
  background: #FBF1F0;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--td-heading);
}
@media (max-width: 575px) {
  .accordion-wrapper.site-faq .accordion .accordion-button .count {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}
.accordion-wrapper.site-faq .accordion .accordion-body {
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  background: transparent;
  padding-bottom: 25px;
  border-radius: 0px;
  padding-top: 10px;
}
@media (max-width: 480px) {
  .accordion-wrapper.site-faq .accordion .accordion-body {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
  }
}
.accordion-wrapper.site-faq .accordion .accordion-body p {
  font-size: 16px;
  margin-inline-start: 62px;
  position: relative;
  padding-inline-start: 30px;
}
@media (max-width: 575px) {
  .accordion-wrapper.site-faq .accordion .accordion-body p {
    margin-inline-start: 15px;
    position: relative;
    padding-inline-start: 25px;
  }
}
.accordion-wrapper.site-faq .accordion .accordion-body p::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: #BFBFBF;
  top: 0;
  inset-inline-start: 0;
}
.accordion-wrapper.site-faq .accordion .accordion-body .accordion-body-list {
  margin-top: 14px;
}
.accordion-wrapper.site-faq .accordion .accordion-body .accordion-body-list ul li:not(:last-child) {
  margin-bottom: 7px;
}
.accordion-wrapper.site-faq .accordion .accordion-item {
  background: transparent;
  box-shadow: none;
  border: 1px solid var(--td-border-primary);
  border-radius: 18px;
}
.accordion-wrapper.site-faq .accordion .accordion-item:not(:last-child) {
  margin-bottom: 30px;
}
.accordion-wrapper.site-faq .accordion .accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion-wrapper.site-faq .accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion-wrapper.site-faq .accordion .accordion-item.active {
  position: relative;
  border-color: transparent;
}
.accordion-wrapper.site-faq .accordion .accordion-item.active::before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -o-border-radius: 18px;
  -ms-border-radius: 18px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(303deg, rgba(var(--td-white), 0) 0%, rgba(255, 255, 255, 0.43) 100%);
  background: linear-gradient(137.02deg, rgb(255, 126, 66) 0%, rgb(244, 185, 67) 100%);
  -webkit-mask: linear-gradient(var(--td-white) 0 0) content-box, linear-gradient(var(--td-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.accordion-collapse.collapse.show {
  box-shadow: 0px 36px 75px -4px rgba(19, 8, 4, 0.08);
  border-radius: 18px;
}

/*----------------------------------------*/
/* Footer style
/*----------------------------------------*/
.footer-style-two {
  overflow: hidden;
  padding-bottom: 145px;
  padding-top: 90px;
}
.footer-style-two .footer-intro-main {
  margin-bottom: 40px;
}
@media xs {
  .footer-style-two .footer-intro-main {
    margin-bottom: 25px;
  }
}
.footer-style-two .footer-main {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  justify-content: space-between;
  gap: 50px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-style-two .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media xs, only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-style-two .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .footer-style-two .footer-main {
    grid-template-columns: 1fr;
  }
}
.footer-style-two .footer-wg-title {
  margin-bottom: 25px;
}
.footer-style-two .footer-wg-title h5 {
  font-size: 24px;
  font-weight: 700;
  color: var(--td-white);
}
@media (max-width: 575px) {
  .footer-style-two .footer-wg-title h5 {
    font-size: 20px;
  }
}
.footer-style-two .footer-contact-info {
  margin-bottom: 30px;
}
.footer-style-two .footer-contact-info ul li {
  list-style: none;
  display: flex;
}
.footer-style-two .footer-contact-info ul li:not(:last-child) {
  margin-bottom: 18px;
}
.footer-style-two .footer-contact-info ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--td-white);
  font-size: 18px;
}
.footer-style-two .footer-contact-info ul li a:hover {
  color: var(--td-primary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-style-two .footer-contact-info ul li a {
    font-size: 16px;
  }
}
.footer-style-two .footer-contact-info ul li a span {
  color: var(--td-primary);
}
.footer-style-two .footer-links ul li {
  list-style: none;
}
.footer-style-two .footer-links ul li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-style-two .footer-links ul li a {
  font-size: 18px;
  display: block;
  color: #C8C8C8;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-style-two .footer-links ul li a {
    font-size: 16px;
  }
}
.footer-style-two .footer-links ul li a:hover {
  color: var(--td-primary);
}
.footer-style-two .footer-social {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-style-two .footer-social a {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  background: rgba(var(--td-white), 1);
  border: 1px solid rgba(240, 240, 240, 0.57);
  color: #BEBEBE;
  position: relative;
}
.footer-style-two .footer-social a::before {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(154.73deg, var(--td-primary) -1.83%, var(--golden-glam) 138.32%);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: -1;
}
.footer-style-two .footer-social a:hover {
  transform: translateY(-5px);
  border-color: transparent;
  color: var(--td-white);
  box-shadow: 0px 11px 20px rgba(255, 126, 66, 0.24);
}
.footer-style-two .footer-social a:hover svg * {
  fill: var(--td-white);
}
.footer-style-two .footer-social a:hover::before {
  opacity: 1;
}
.footer-style-two .footer-newsletter .description {
  font-size: 18px;
  color: #C8C8C8;
  margin-bottom: 30px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-style-two .footer-newsletter .description {
    font-size: 16px;
  }
}
.footer-style-two .footer-newsletter .footer-form {
  position: relative;
}
.footer-style-two .footer-newsletter .footer-form input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0px 12px 30px rgba(75, 87, 115, 0.14);
  border-radius: 30px;
  height: 50px;
  width: 100%;
  padding-inline-start: 20px;
  padding-inline-end: 65px;
  color: #C8C8C8;
  outline: 0;
  font-size: 14px;
}
.footer-style-two .footer-newsletter .footer-form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #C8C8C8;
}
.footer-style-two .footer-newsletter .footer-form input::-moz-placeholder { /* Firefox 19+ */
  color: #C8C8C8;
}
.footer-style-two .footer-newsletter .footer-form input:-moz-placeholder { /* Firefox 4-18 */
  color: #C8C8C8;
}
.footer-style-two .footer-newsletter .footer-form input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #C8C8C8;
}
.footer-style-two .footer-newsletter .footer-form input::placeholder { /* MODERN BROWSER */
  color: #C8C8C8;
}
.footer-style-two .footer-newsletter .footer-form .input-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
  color: var(--td-white);
  position: absolute;
  inset-inline-end: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.footer-style-two .footer-newsletter .footer-form .input-btn::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image: linear-gradient(90deg, var(--td-primary) 21%, #ee9558 50%, var(--golden-glam) 80%);
  background-size: 250%;
  background-position: left;
  transition: all 0.5s ease;
  z-index: -1;
}

.footer-bottom {
  position: relative;
  z-index: 1;
}
.dark-theme .footer-bottom {
  background-color: hsl(220, 20%, 23.53%);
}
.footer-bottom .footer-copyright {
  padding: 28px;
}
.footer-bottom .footer-copyright .content {
  justify-content: center;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-bottom .footer-copyright .content {
    text-align: center;
    margin-bottom: 10px;
  }
}
.footer-bottom .footer-copyright .content .description {
  margin-bottom: 0;
  color: var(--td-heading);
}
.dark-theme .footer-bottom .footer-copyright .content .description {
  color: var(--td-white);
}
.footer-bottom .footer-bottom-links {
  display: flex;
  justify-content: end;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-bottom .footer-bottom-links {
    justify-content: center;
  }
}
.footer-bottom .footer-bottom-links ul {
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-bottom .footer-bottom-links ul {
    gap: 10px 10px;
  }
}
.footer-bottom .footer-bottom-links ul li {
  list-style: none;
}
.footer-bottom .footer-bottom-links ul li a {
  color: var(--td-heading);
}
.dark-theme .footer-bottom .footer-bottom-links ul li a {
  color: var(--td-white);
}
.footer-bottom .footer-bottom-links ul li a:hover {
  color: var(--td-primary);
}
.footer-bottom .footer-logo {
  position: absolute;
  width: 230px;
  height: 106px;
  background: var(--td-white);
  border: 10px solid rgba(var(--td-white), 0.16);
  border-radius: 26px 26px 0px 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  top: -65%;
  z-index: -1;
}
.dark-theme .footer-bottom .footer-logo {
  background-color: hsl(220, 20%, 23.53%);
}
@media (max-width: 575px) {
  .footer-bottom .footer-logo {
    width: 200px;
  }
  .footer-bottom .footer-logo img {
    width: 140px;
  }
}
.footer-bottom .footer-logo .logo-white {
  display: none;
}
.dark-theme .footer-bottom .footer-logo .logo-white {
  display: block;
}
.dark-theme .footer-bottom .footer-logo .logo-black {
  display: none;
}
.footer-bottom .footer-logo::before {
  position: absolute;
  content: "";
  height: calc(100% + 20px);
  width: calc(100% + 40px);
  top: -20px;
  background-color: rgba(var(--td-white), 0.15);
  inset-inline-start: 50%;
  transform: translateX(-50%);
  border-radius: 26px 26px 0px 0px;
  z-index: -1;
}

/*----------------------------------------*/
/*  how it works style
/*----------------------------------------*/
.how-it-work-main {
  padding: 100px 115px 125px;
  border: 1px solid rgba(var(--td-white), 0.05);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .how-it-work-main {
    padding: 50px 50px 50px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .how-it-work-main {
    padding: 30px 30px 30px;
  }
}

.how-it-work-grid {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .how-it-work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .how-it-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .how-it-work-grid {
    grid-template-columns: 1fr;
  }
}

.how-it-works-item {
  position: relative;
}
@media (max-width: 480px) {
  .how-it-works-item {
    text-align: center;
  }
}
.how-it-works-item .content .title {
  color: var(--td-white);
  font-size: 16px;
  margin-bottom: 20px;
}
.how-it-works-item .content .description {
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--td-white), 0.7);
  max-width: 240px;
}
@media (max-width: 480px) {
  .how-it-works-item .content .description {
    margin: 0 auto;
  }
}
.how-it-works-item .icon {
  margin-bottom: 22px;
}
.how-it-works-item .icon span {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.how-it-works-item .step {
  position: absolute;
  top: 28px;
  inset-inline-end: -26px;
  width: 90%;
  height: 1px;
  background: var(--td-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .how-it-works-item .step {
    width: 85%;
  }
}
.how-it-works-item .step::after {
  position: absolute;
  content: "";
  top: 50%;
  inset-inline-end: 0;
  width: 5px;
  height: 5px;
  background: var(--td-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
}
.how-it-works-item .step .arrow {
  border: solid var(--td-white);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  position: absolute;
  inset-inline-start: 1px;
  top: -3px;
}
[dir=rtl] .how-it-works-item .step .arrow {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.how-it-works-item .step .arrow .left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.how-it-works-item .step .arrow .up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.how-it-works-item .step .arrow .down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
@media (max-width: 575px) {
  .how-it-works-item .step {
    display: none;
  }
}
.how-it-works-item:nth-child(1) .step::after, .how-it-works-item:nth-child(2) .step::after, .how-it-works-item:nth-child(3) .step::after {
  inset-inline-end: auto;
  inset-inline-start: 0;
}
.how-it-works-item:nth-child(1) .step .arrow, .how-it-works-item:nth-child(2) .step .arrow, .how-it-works-item:nth-child(3) .step .arrow {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  inset-inline-start: auto;
  inset-inline-end: 1px;
}
[dir=rtl] .how-it-works-item:nth-child(1) .step .arrow, [dir=rtl] .how-it-works-item:nth-child(2) .step .arrow, [dir=rtl] .how-it-works-item:nth-child(3) .step .arrow {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.how-it-works-item:nth-child(4n) .step, .how-it-works-item :nth-child(8n) .step, .how-it-works-item :nth-child(12n) .step, .how-it-works-item :nth-child(16n) .step, .how-it-works-item :nth-child(20n) .step, .how-it-works-item:last-child .step {
  display: none;
}
.how-it-works-item:nth-child(4n):not(:last-child) {
  position: relative;
}
.how-it-works-item:nth-child(4n):not(:last-child)::before {
  content: "";
  position: absolute;
  width: 223px;
  height: calc(100% + 33px);
  border-top: 1px solid var(--td-white);
  border-inline-end: 1px solid var(--td-white);
  border-bottom: 1px solid var(--td-white);
  border-image: initial;
  border-top-right-radius: 110px;
  border-bottom-right-radius: 110px;
  border-inline-start: none;
  top: 27px;
  inset-inline-start: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .how-it-works-item:nth-child(4n):not(:last-child)::before {
    width: 160px;
  }
}
[dir=rtl] .how-it-works-item:nth-child(4n):not(:last-child)::before {
  transform: rotate(180deg);
  border-inline-end: 0;
}
.how-it-works-item:nth-child(4n):not(:last-child)::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background-color: var(--td-white);
  top: 25px;
  inset-inline-start: 60px;
  border-radius: 50%;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .how-it-works-item:nth-child(4n):not(:last-child)::before, .how-it-works-item:nth-child(4n):not(:last-child)::after {
    display: none;
  }
}
.how-it-works-item:nth-child(4n):last-child {
  position: relative;
}
.how-it-works-item:nth-child(4n):last-child::after {
  position: absolute;
  content: "";
  border: solid var(--td-white);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  position: absolute;
  inset-inline-start: 60px;
  top: 26px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .how-it-works-item:nth-child(4n):last-child::after {
    display: none;
  }
}

/*----------------------------------------*/
/*  Main menu css
/*----------------------------------------*/
.td-main-menu > ul {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  gap: 18px;
}
.td-main-menu > ul > li:not(:last-child) {
  margin-inline-end: 15px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .td-main-menu > ul > li:not(:last-child) {
    margin-inline-end: 5px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-main-menu > ul > li:not(:last-child) {
    margin-inline-end: 8px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-main-menu > ul > li:not(:last-child) {
    margin-inline-end: 0;
  }
}
.td-main-menu > ul > li.active > a {
  color: var(--td-primary);
}
.td-main-menu > ul > li > a {
  position: relative;
}
.td-main-menu > ul > li:last-child a::before {
  display: none;
}
.td-main-menu > ul > li:hover > a {
  color: var(--td-primary);
}
.td-main-menu > ul > li:hover > ul {
  opacity: 1;
  pointer-events: all;
  inset-inline-start: 0px;
}
.td-main-menu > ul > li:hover > ul.dp-menu li:hover > ul {
  opacity: 1;
  pointer-events: all;
  inset-inline-start: 100%;
}
.td-main-menu li {
  position: relative;
  list-style: none;
}
.td-main-menu li a {
  font-size: 16px;
  line-height: 1;
  color: var(--td-white);
  padding: 28px 5px;
  display: inline-block;
  letter-spacing: 0.2px;
}

.menu-icon {
  width: 30px;
  height: 20px;
  position: relative;
  display: block;
}
.menu-icon::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 0;
  inset-inline-start: 0;
  background: var(--td-white);
  transition: all 0.3s;
}
.menu-icon::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  inset-inline-start: 0;
  background: var(--td-white);
  transition: all 0.3s;
}
.menu-icon span {
  position: absolute;
  content: "";
  width: 18px;
  height: 1px;
  top: 50%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--td-white);
}
.menu-icon:hover::after, .menu-icon:hover::before,
.menu-icon:hover span {
  background-color: var(--td-primary);
}

/*----------------------------------------*/
/*  Meanmenu css
/*----------------------------------------*/
.mean-container {
  margin-bottom: 30px;
}
.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px 13px;
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  cursor: pointer;
  color: var(--td-white);
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  font-weight: 700;
  display: none !important;
}
.mean-container a.meanmenu-reveal span {
  display: block;
  background: var(--td-white);
  height: 3px;
  margin-top: 3px;
}
.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}
.mean-container .mean-nav {
  background: none;
  margin-top: 0;
  float: left;
  width: 100%;
}
.mean-container .mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}
.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0 !important;
}
.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}
.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}
.mean-container .mean-nav ul li.dropdown-opened > a, .mean-container .mean-nav ul li.dropdown-opened > span {
  color: var(--td-white);
}
.mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked, .mean-container .mean-nav ul li.dropdown-opened > span.mean-expand.mean-clicked {
  background: var(--td-white);
  color: var(--td-white);
  border-color: transparent;
}
.mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked i, .mean-container .mean-nav ul li.dropdown-opened > span.mean-expand.mean-clicked i {
  color: var(--td-white);
  transform: rotate(90deg);
}
.mean-container .mean-nav ul li.mean-last {
  border-bottom: none;
  margin-bottom: 0;
}
.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  transition: 0.3s;
}
.mean-container .mean-nav ul li > a > i {
  display: none;
}
.mean-container .mean-nav ul li a, .mean-container .mean-nav ul li span {
  display: block;
  float: left;
  width: 90%;
  padding: 10px 5%;
  margin: 0;
  text-align: left;
  text-decoration: none;
  width: 100%;
  padding: 10px 0;
  color: var(--td-black);
  border-top: 1px solid var(--td-border-primary) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.dark-theme .mean-container .mean-nav ul li a, .dark-theme .mean-container .mean-nav ul li span {
  color: var(--td-white);
}
.mean-container .mean-nav ul li a:hover, .mean-container .mean-nav ul li span:hover {
  color: var(--td-primary);
}
.mean-container .mean-nav ul li a:hover i, .mean-container .mean-nav ul li span:hover i {
  color: var(--td-primary);
}
.mean-container .mean-nav ul li a.mean-expand, .mean-container .mean-nav ul li span.mean-expand {
  text-align: center;
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: transparent;
  border: none !important;
  font-size: 14px;
  margin-top: 5px;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.079) !important;
  height: 30px;
  width: 30px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover, .mean-container .mean-nav ul li span.mean-expand:hover {
  background: var(--td-white);
  color: var(--td-white);
  border-color: var(--td-white);
}
.mean-container .mean-nav ul li a.mean-expand:hover i, .mean-container .mean-nav ul li span.mean-expand:hover i {
  color: var(--td-white);
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked, .mean-container .mean-nav ul li span.mean-expand.mean-clicked {
  color: var(--td-white);
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover, .mean-container .mean-nav ul li span.mean-expand.mean-clicked:hover {
  background: var(--td-white);
  color: var(--td-white);
  border-color: var(--td-white);
}
.mean-container .mean-nav ul li li a {
  width: 90%;
  padding: 10px 7%;
  text-shadow: none !important;
  visibility: visible;
}
.mean-container .mean-nav ul li li li a {
  width: 80%;
  padding: 10px 12%;
}
.mean-container .mean-nav ul li li li li a {
  width: 70%;
  padding: 10px 17%;
}
.mean-container .mean-nav ul li li li li li a {
  width: 60%;
  padding: 10px 20%;
}
.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  float: left;
  width: 100%;
  position: relative;
  padding: 4px 0;
  min-height: 42px;
  z-index: 999999;
}
.mean-container .mean-bar, .mean-container .mean-bar * {
  /* Fix for box sizing on Foundation Framework etc. */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/*----------------------------------------*/
/* Blog style
/*----------------------------------------*/
.single-blog-item {
  background: var(--td-white);
  border: 1px solid var(--td-border-primary);
  border-radius: 19px;
  padding: 20px 20px;
}
.dark-theme .single-blog-item {
  background-color: #415C68;
  border-color: rgba(255, 255, 255, 0.3);
}
.single-blog-item .blog-thumb {
  margin-bottom: 28px;
  overflow: hidden;
}
.single-blog-item .blog-thumb img {
  border-radius: 16px;
  width: 100%;
}
.single-blog-item .blog-meta {
  display: flex;
  align-items: center;
  gap: 12px 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .single-blog-item .blog-meta {
    gap: 12px 14px;
  }
}
.single-blog-item .blog-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--td-text-primary);
}
.dark-theme .single-blog-item .blog-meta span {
  color: var(--td-text-secondary);
}
.single-blog-item .blog-meta span svg * {
  fill: #c3c3c3;
}
.single-blog-item .blog-content .title {
  margin-bottom: 15px;
  font-size: 24px;
}
@media (max-width: 575px) {
  .single-blog-item .blog-content .title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .single-blog-item .blog-content .title {
    font-size: 20px;
  }
}
.single-blog-item .blog-content .title a:hover {
  color: var(--td-primary);
}

/*----------------------------------------*/
/*  banner css
/*----------------------------------------*/
.banner-style-two {
  padding-top: 175px;
  padding-bottom: 145px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-style-two {
    padding-top: 155px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style-two {
    padding-top: 155px;
    padding-bottom: 145px;
  }
}
.banner-style-two .container {
  max-width: 1745px;
  padding: 0 100px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-style-two .container {
    padding: 0 40px;
  }
}
.banner-style-two .banner-content {
  max-width: 920px;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-style-two .banner-content {
    max-width: 850px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style-two .banner-content {
    max-width: 100%;
  }
}
.banner-style-two .banner-content .banner-subtitle {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 8px 20px 11px;
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--td-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style-two .banner-content .banner-subtitle {
    padding: 6px 16px 9px;
  }
}
@media (max-width: 480px) {
  .banner-style-two .banner-content .banner-subtitle {
    font-size: 14px;
  }
}
.banner-style-two .banner-content .banner-title {
  color: var(--td-white);
  margin-bottom: 60px;
  font-size: 70px;
  line-height: 108.7%;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .banner-style-two .banner-content .banner-title {
    font-size: 60px;
    padding: 6px 16px 9px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .banner-style-two .banner-content .banner-title {
    font-size: 55px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-style-two .banner-content .banner-title {
    font-size: 48px;
    margin-bottom: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-style-two .banner-content .banner-title {
    font-size: 40px;
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style-two .banner-content .banner-title {
    font-size: 36px;
    margin-bottom: 45px;
    line-height: 1.33;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-style-two .banner-content .banner-title {
    margin-bottom: 35px;
    font-size: 36px;
    line-height: 1.33;
  }
}
@media (max-width: 575px) {
  .banner-style-two .banner-content .banner-title {
    margin-bottom: 35px;
    font-size: 28px;
    line-height: 1.33;
  }
}
@media (max-width: 480px) {
  .banner-style-two .banner-content .banner-title {
    font-size: 24px;
    line-height: 1.33;
  }
}
.banner-style-two .banner-content .banner-title .highlight {
  color: var(--td-secondary);
  font-weight: 600;
}
.banner-style-two .banner-content .description {
  color: var(--td-white);
  line-height: 1.5;
  font-size: 20px;
  max-width: 693px;
  margin-bottom: 35px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style-two .banner-content .description {
    font-size: 16px;
  }
}
.banner-style-two .banner-content .mark-line-inner {
  position: relative;
}
.banner-style-two .banner-content .mark-line-inner .mark-line {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.banner-list ul li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 35px;
  list-style: none;
  margin-bottom: 45px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-list ul li {
    gap: 10px 26px;
  }
}
.banner-list ul li .list-item {
  display: flex;
  gap: 10px;
}
.banner-list ul li .list-title {
  color: var(--td-white);
}

.banner-illustration {
  position: relative;
}
.banner-illustration .shape-text {
  position: absolute;
  top: -2%;
  inset-inline-start: 25%;
  background: var(--td-white);
  max-width: 184px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 64px;
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: card-bounce;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
}
.banner-illustration .shape-text h6 {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--td-heading);
}
@media (max-width: 575px) {
  .banner-illustration .shape-text h6 {
    font-size: 14px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-illustration .shape-text {
    top: 60%;
    z-index: 9;
  }
}
.banner-illustration .user-one {
  max-width: 60px;
  position: absolute;
  top: 0;
  inset-inline-end: 0;
}
.banner-illustration .user-two {
  max-width: 60px;
  position: absolute;
  top: 20%;
  inset-inline-start: 0;
}
.banner-illustration .card-one {
  position: absolute;
  bottom: 40%;
  inset-inline-start: -60px;
}
.banner-illustration .card-two {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
}
.banner-illustration .computer {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
}
.banner-illustration .men {
  position: absolute;
  inset-inline-end: 0;
  bottom: 0;
}

/*----------------------------------------*/
/*  Header css
/*----------------------------------------*/
.header-transparent {
  position: absolute;
  inset-inline-start: 0;
  margin: auto;
  width: 100%;
  z-index: 99;
  background-color: transparent;
}

.active-sticky {
  position: fixed !important;
  top: 0;
  z-index: 111;
  inset-inline-end: 0;
  inset-inline-start: 0;
  width: 100%;
  background: var(--td-white);
  -webkit-box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
  box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .active-sticky {
    padding: 15px 10px;
  }
}
.active-sticky .menu-icon::before {
  background: var(--td-black);
}
.dark-theme .active-sticky .menu-icon::before {
  background: var(--td-white);
}
.active-sticky .menu-icon::after {
  background: var(--td-black);
}
.dark-theme .active-sticky .menu-icon::after {
  background: var(--td-white);
}
.active-sticky .menu-icon span {
  background-color: var(--td-black);
}
.dark-theme .active-sticky .menu-icon span {
  background: var(--td-white);
}
.active-sticky .menu-icon:hover::after, .active-sticky .menu-icon:hover::before,
.active-sticky .menu-icon:hover span {
  background-color: var(--td-primary);
}
.active-sticky .header-lang-item {
  border-color: transparent;
}
.active-sticky .switch .slider {
  border-color: transparent;
}
.active-sticky .site-btn.white-btn {
  background: rgba(88, 88, 88, 0.13);
  color: var(--td-heading);
}
.dark-theme .active-sticky .site-btn.white-btn {
  background-color: #415C68;
  color: var(--td-white);
}
.dark-theme .active-sticky .site-btn.white-btn svg * {
  fill: var(--td-white);
}

.header-style-two {
  padding-top: 20px;
}
.header-style-two.active-sticky {
  padding: 10px 0;
}
.dark-theme .header-style-two.active-sticky {
  background: rgb(25, 39, 45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-style-two.active-sticky {
    padding: 15px 0;
  }
}
.header-style-two .header-logo .logo-black {
  display: none;
}
.header-style-two .header-logo img {
  height: 65px;
  width: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-style-two .header-logo img {
    height: 55px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-style-two .header-logo img {
    height: 45px;
  }
}
.header-style-two .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  max-width: 1680px;
  padding: 0 15px;
}
.header-style-two .header-inner .header-left {
  display: flex;
  align-items: center;
  gap: 0 125px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-style-two .header-inner .header-left {
    gap: 0 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-style-two .header-inner .header-left {
    gap: 0 30px;
  }
}
.header-style-two .header-inner .header-right .header-action {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-style-two .header-inner .header-right .header-action .header-btn-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-style-two .header-inner .header-right .header-action .header-btn-wrap .site-btn {
  height: 50px;
}
.header-style-two.active-sticky .td-main-menu > ul > li > a {
  color: var(--td-text-primary);
}
.dark-theme .header-style-two.active-sticky .td-main-menu > ul > li > a {
  color: var(--td-text-secondary);
}
.header-style-two.active-sticky .td-main-menu > ul > li > a:hover {
  color: var(--td-primary);
}
.header-style-two.active-sticky .logo-white {
  display: none;
}
.dark-theme .header-style-two.active-sticky .logo-white {
  display: block;
}
.header-style-two.active-sticky .logo-black {
  display: block;
}
.dark-theme .header-style-two.active-sticky .logo-black {
  display: none;
}

.header-lang-item {
  position: relative;
  background-color: #415C68;
  border: 1px solid rgba(255, 255, 255, 0.37);
  border-radius: 100px;
  padding: 5px 13px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-lang-item {
    padding: 2px 8px 4px;
  }
}
@media (max-width: 575px) {
  .header-lang-item {
    padding: 2px 5px;
  }
}
.header-lang-item > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  padding-inline-end: 20px;
  transition: all 0.1s linear;
  z-index: 1;
  color: var(--td-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-lang-item > span {
    font-size: 14px;
  }
}
.header-lang-item > span:hover {
  cursor: pointer;
}
.header-lang-item > span::after {
  position: absolute;
  content: "\f107";
  font-family: var(--td-ff-fontawesome);
  margin-inline-start: 7px;
  inset-inline-end: 0;
  top: 2px;
}
.header-lang-item ul {
  position: absolute;
  top: 130%;
  inset-inline-start: 0;
  z-index: 111;
  background-color: var(--td-white);
  padding: 10px 15px;
  box-shadow: 0px 1px 3px rgba(3, 4, 28, 0.12);
  visibility: hidden;
  opacity: 0;
  min-width: max-content;
  -webkit-transition: all 0.2s 0s ease-out;
  -moz-transition: all 0.2s 0s ease-out;
  -ms-transition: all 0.2s 0s ease-out;
  -o-transition: all 0.2s 0s ease-out;
  transition: all 0.2s 0s ease-out;
}
.header-lang-item ul.lang-list-open {
  visibility: visible;
  opacity: 1;
}
.header-lang-item ul li {
  list-style: none;
}
.header-lang-item ul li a {
  font-size: 14px;
}
.header-lang-item ul li a:hover {
  color: #000000;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .header-right {
    gap: 12px 16px;
  }
}
@media (max-width: 575px) {
  .header-right {
    gap: 12px;
  }
}
.header-right .header-quick-action {
  display: flex;
  align-items: center;
  gap: 12px 24px;
}
@media (max-width: 575px) {
  .header-right .header-quick-action {
    gap: 12px 12px;
  }
}

.header-style-two .color-switcher .slider {
  border: 1px solid transparent;
}
.dark-theme .header-style-two .color-switcher .slider {
  border: 1px solid rgba(255, 255, 255, 0.37);
}
.header-style-two .header-lang-item {
  border: 1px solid transparent;
}
.dark-theme .header-style-two .header-lang-item {
  border: 1px solid rgba(255, 255, 255, 0.37);
}
.header-style-two.auth-header .header-logo .logo-white {
  display: none;
}
.dark-theme .header-style-two.auth-header .header-logo .logo-white {
  display: block;
}
.header-style-two.auth-header .header-logo .logo-black {
  display: block;
}
.dark-theme .header-style-two.auth-header .header-logo .logo-black {
  display: none;
}

/*----------------------------------------*/
/* Authentication style
/*----------------------------------------*/
.auth-inner {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.auth-wrapper {
  width: 550px;
  margin: 0 auto;
  padding: 30px 35px 35px;
  background: rgba(var(--td-white), 0.08);
  border: 1px solid rgba(var(--td-white), 0.08);
  border-radius: 10px;
}
@media (max-width: 575px) {
  .auth-wrapper {
    width: calc(100% - 30px);
    padding: 25px 15px 30px;
  }
}
.auth-wrapper.sing-up {
  width: 760px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .auth-wrapper.sing-up {
    width: calc(100% - 60px);
  }
}
@media (max-width: 575px) {
  .auth-wrapper.sing-up {
    width: calc(100% - 30px);
  }
}

.auth-from-top-content {
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .auth-from-top-content {
    margin-bottom: 35px;
  }
}
.auth-from-top-content .auth-logo {
  margin-bottom: 35px;
}
.auth-from-top-content .auth-logo img {
  width: 120px;
  height: 30px;
}
.auth-from-top-content .title {
  margin-bottom: 5px;
}
.auth-from-top-content .email-hidden {
  font-size: 18px;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .auth-main-from {
    width: 100%;
  }
}
.auth-main-from .auth-from-top-content .title {
  font-size: 32px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .auth-main-from .auth-from-top-content .title {
    font-size: 28px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .auth-main-from .auth-from-top-content .title {
    font-size: 24px;
  }
}
.auth-main-from .auth-login-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 35px;
  margin-top: 25px;
}
.auth-main-from .auth-login-option .auth-remind-checkbox input[type=checkbox] ~ label::before {
  width: 16px;
  height: 16px;
  top: 3px;
}
.auth-main-from .auth-login-option .auth-remind-checkbox input[type=checkbox] ~ label::after {
  width: 16px;
  height: 16px;
}
.auth-main-from .auth-login-option .auth-remind-checkbox .remind-me {
  font-size: 14px;
  padding-inline-start: 24px;
}
.auth-main-from .auth-login-option .forget-content span {
  font-size: 16px;
}
.auth-main-from .auth-login-option .forget-content span a {
  text-decoration: underline;
  color: var(--td-primary);
}
.auth-main-from .auth-login-option .forget-content span a:hover {
  text-decoration: none;
}

.auth-login-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 27px;
  margin-top: 6px;
}
.auth-login-option .auth-remind-checkbox input[type=checkbox] ~ label::before {
  width: 16px;
  height: 16px;
  top: 3px;
}
.auth-login-option .auth-remind-checkbox input[type=checkbox] ~ label::after {
  width: 16px;
  height: 16px;
}
.auth-login-option .auth-remind-checkbox .remind-me {
  font-size: 14px;
  padding-inline-start: 24px;
}
.auth-login-option .forget-content span {
  font-size: 14px;
  font-weight: 500;
}
.auth-login-option .forget-content span a {
  text-decoration: underline;
}
.auth-login-option .forget-content span a:hover {
  text-decoration: none;
}

.auth-from-bottom-content {
  text-align: center;
  margin-top: 30px;
}

.auth-account .description {
  font-weight: 500;
}
.auth-account .description .link {
  color: var(--td-primary);
  text-decoration: underline;
}
.auth-account .description .link:hover {
  text-decoration: none;
}

.auth-privacy-policy {
  max-width: 323px;
  margin: auto;
  margin-top: 20px;
}
.auth-privacy-policy .description {
  font-size: 14px;
}
.auth-privacy-policy .description .link {
  font-weight: 600;
  color: var(--td-primary);
  text-decoration: underline;
}
.auth-privacy-policy .description .link:hover {
  text-decoration: none;
}
.auth-privacy-policy .description span {
  padding: 0 5px;
}

.td-authentication-section {
  padding: 80px 0 80px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-authentication-section {
    padding: 60px 0 60px;
  }
}

.auth-main-grid {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .auth-main-grid {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.auth-main-from .auth-from-inner {
  width: 510px;
  margin: 0 auto;
  background: var(--td-white);
  box-shadow: 8px 50px 138px rgba(0, 0, 0, 0.11);
  border-radius: 10px;
  padding: 35px 40px 40px;
}
.dark-theme .auth-main-from .auth-from-inner {
  background: rgba(255, 255, 255, 0.16);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .auth-main-from .auth-from-inner {
    width: 460px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .auth-main-from .auth-from-inner {
    width: 100%;
    padding: 25px 20px 30px;
  }
}

.auth-account {
  text-align: center;
  margin-top: 22px;
}

.auth-sing-in-thumb {
  max-width: 648px;
}

.otp-code-status {
  background: #EDFFF6;
  border: 1px solid var(--td-green);
  border-radius: 12px;
  padding: 5px 10px 5px 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.otp-code-status strong {
  color: var(--td-heading);
}
.otp-code-status .otp-count-time {
  background: linear-gradient(137.02deg, var(--td-primary) 0%, var(--golden-glam) 96.71%);
  box-shadow: 0px 8px 16px rgba(19, 8, 4, 0.12);
  border-radius: 10px;
  padding: 6px 10px;
  color: var(--td-white);
}

/*----------------------------------------*/
/* Breadcrumb style
/*----------------------------------------*/
.breadcrumb-space {
  padding: 170px 0 80px;
  min-height: 390px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-space {
    padding: 120px 0 100px;
    min-height: 360px;
  }
}

.breadcrumb-overlay {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.breadcrumb-content .td-breadcrumb-menu {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: inline-block;
  padding: 2px 15px 4px;
  margin-bottom: 20px;
}
.breadcrumb-content .td-breadcrumb-menu nav ul {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  gap: 10px 25px;
  justify-content: center;
  flex-wrap: wrap;
}
.breadcrumb-content .td-breadcrumb-menu nav ul li {
  list-style: none;
  position: relative;
  line-height: 1;
  color: #C8C8C8;
}
.breadcrumb-content .td-breadcrumb-menu nav ul li:not(:nth-child(1))::before {
  display: inline-block;
  content: "\f324";
  position: absolute;
  top: calc(50% + 2px);
  inset-inline-start: -19px;
  font-size: 12px;
  color: rgba(var(--td-white), 0.6);
  font-family: var(--td-ff-fontawesome);
  top: 50%;
}
.breadcrumb-content .td-breadcrumb-menu nav ul li:last-child {
  color: var(--td-white);
}
.breadcrumb-content .td-breadcrumb-menu nav ul li:last-child::before {
  color: rgba(var(--td-white), 1);
}
.breadcrumb-content .td-breadcrumb-menu nav ul li.active span {
  color: var(--td-primary);
}
.breadcrumb-content .td-breadcrumb-menu nav ul li span {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.breadcrumb-content .td-breadcrumb-menu nav ul li span a {
  font-weight: var(--td-fw-medium);
}
.breadcrumb-content .td-breadcrumb-menu nav ul li span a:hover {
  color: var(--td-primary);
}
.breadcrumb-content .breadcrumb-title {
  font-size: 55px;
  color: var(--td-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-content .breadcrumb-title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-content .breadcrumb-title {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-content .breadcrumb-title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .breadcrumb-content .breadcrumb-title {
    font-size: 30px;
  }
}
.breadcrumb-content > .description {
  color: #C8C8C8;
  font-weight: 400;
  max-width: 624px;
}

.breadcrumb-gallery-wrapper {
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
  display: flex;
  gap: 10px;
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  z-index: -1;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .breadcrumb-gallery-wrapper {
    top: 50px;
    width: 55%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb-gallery-wrapper {
    top: 5%;
    width: 55%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-gallery-wrapper {
    width: 40%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-gallery-wrapper {
    transform: inherit;
    position: inherit;
  }
}
[dir=rtl] .breadcrumb-gallery-wrapper {
  -webkit-transform: rotate(335deg);
  -moz-transform: rotate(335deg);
  -ms-transform: rotate(335deg);
  -o-transform: rotate(335deg);
  transform: rotate(335deg);
}
.breadcrumb-gallery-wrapper .breadcrumb-thumb:nth-child(1) {
  transform: translateY(-42%);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-gallery-wrapper .breadcrumb-thumb:nth-child(1) {
    transform: translateY(0px);
  }
}
.breadcrumb-gallery-wrapper .breadcrumb-thumb:nth-child(2) {
  transform: translateY(-16%);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-gallery-wrapper .breadcrumb-thumb:nth-child(2) {
    transform: translateY(0px);
  }
}
.breadcrumb-gallery-wrapper .breadcrumb-thumb:nth-child(3) {
  transform: translateY(-30%);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-gallery-wrapper .breadcrumb-thumb:nth-child(3) {
    transform: translateY(0px);
  }
}

.breadcrumb-pattern {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

/*----------------------------------------*/
/*  List style
/*----------------------------------------*/
.common-list ul li {
  list-style: none;
}
.common-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.common-list ul li .list-item {
  display: flex;
  gap: 10px;
}
.common-list ul li .list-item .list-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--td-heading);
}
.dark-theme .common-list ul li .list-item .list-title {
  color: var(--td-text-secondary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .common-list ul li .list-item .list-title {
    font-size: 16px;
  }
}

.postbox-list ul {
  margin-bottom: 15px;
}
.postbox-list ul li {
  list-style: none;
  position: relative;
  padding-inline-start: 15px;
  font-size: 18px;
}
.dark-theme .postbox-list ul li {
  color: var(--td-text-secondary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox-list ul li {
    font-size: 16px;
  }
}
.postbox-list ul li:not(:last-child) {
  margin-bottom: 6px;
}
.postbox-list ul li:after {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background: #585858;
  inset-inline-start: 0;
  top: 15px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.dark-theme .postbox-list ul li:after {
  background-color: var(--td-text-secondary);
}

/*----------------------------------------*/
/*  Alerts Styles
/*----------------------------------------*/
.td-alert-success {
  background: rgba(133, 255, 196, 0.1);
  border-radius: 10px;
}
.td-alert-success .btn-close {
  background-size: 12px;
}
.td-alert-success .btn-close:focus {
  box-shadow: none;
}

.td-alert-danger {
  background: rgba(255, 1, 1, 0.1);
  border-radius: 10px;
}
.td-alert-danger .btn-close {
  background-size: 12px;
}
.td-alert-danger .btn-close:focus {
  box-shadow: none;
}

.alert.alert-outline.td-alert-danger.alert-outline {
  height: 46px;
  background: #FFF1EA;
  border: 1px solid #FF0101;
  border-radius: 12px;
}

/*----------------------------------------*/
/* Badge
/*----------------------------------------*/
e .td-badge {
  font-size: 14px;
  text-transform: capitalize;
  display: inline-block;
  padding: 6px 15px;
  color: var(--td-heading);
  line-height: 1;
  text-align: center;
  background-color: var(--td-white);
}
e .td-badge.primary {
  background: var(--td-primary);
  color: var(--td-white);
}
e .td-badge.warning {
  background: var(--td-tertiary);
  color: var(--td-white);
}
e .td-badge.danger {
  color: var(--td-white);
  background: var(--td-bg-danger);
}
e .td-badge.success {
  color: var(--td-white);
  background: var(--td-bg-success);
}
e .td-badge.black {
  color: var(--td-white);
  background: var(--td-black);
}

/*---------------------------------
/*  Button styles
---------------------------------*/
.btn-wrap {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px 15px;
  flex-wrap: wrap;
}

.site-btn {
  height: 54px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 30px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  color: #000000;
  background: var(--td-white);
  font-weight: 600;
  font-size: 18px;
}
.site-btn.gdt-btn {
  background: linear-gradient(154.73deg, var(--td-primary) -1.83%, var(--golden-glam) 138.32%);
  box-shadow: 0px 18px 30px -2px rgba(19, 8, 4, 0.11);
  color: var(--td-white);
}
.site-btn.gdt-btn .btn-hover-slide::before {
  background: #64148A;
}
.site-btn.gray-btn {
  background: rgba(88, 88, 88, 0.13);
  color: var(--td-heading);
}
.site-btn.peach-breeze-btn {
  background: #FFEEE6;
  border-radius: 12px;
  color: var(--td-primary);
}
.site-btn.peach-breeze-btn:hover {
  color: var(--td-white);
  background-color: var(--td-primary);
}
.site-btn.aare-river {
  background-color: #00c09d;
  border: 1px solid #00ab8c;
  box-shadow: 0 2px 4px 0 rgba(87, 71, 81, 0.2);
  color: var(--td-white);
}
.site-btn.aare-river:hover {
  background-color: #2ca893;
  transition: all 0.2s ease-out;
}
@media (max-width: 575px) {
  .site-btn {
    height: 46px;
    font-size: 14px;
    padding: 0 25px;
  }
  .site-btn span svg {
    width: 16px;
    height: 16px;
  }
}

.link-btn {
  width: 60px;
  height: 60px;
  background: rgba(88, 88, 88, 0.13);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.link-btn span:last-child {
  display: none;
}
.link-btn::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image: linear-gradient(90deg, var(--td-primary) 21%, #ee9558 50%, var(--golden-glam) 80%);
  background-size: 250%;
  background-position: left;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: -1;
}
.link-btn:hover span:first-child {
  display: none;
}
.link-btn:hover span:last-child {
  display: block;
}
.link-btn:hover::before {
  opacity: 1;
}

/*----------------------------------------*/
/*  Offcanvas
/*----------------------------------------*/
.offcanvas-area {
  background: var(--td-white) none repeat scroll 0 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 360px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.dark-theme .offcanvas-area {
  background-color: #1b2f38;
}
.offcanvas-area ::-webkit-scrollbar {
  display: none;
}
@media (max-width: 360px) {
  .offcanvas-area {
    width: 100%;
  }
}
.offcanvas-area.info-open {
  opacity: 1;
  transform: translateX(0);
}

.offcanvas-logo a img {
  height: 50px;
  width: auto;
}
.offcanvas-logo .offcanvas-white-logo {
  display: none;
}
.dark-theme .offcanvas-logo .offcanvas-white-logo {
  display: block;
}
.offcanvas-logo .offcanvas-dark-logo {
  display: block;
}
.dark-theme .offcanvas-logo .offcanvas-dark-logo {
  display: none;
}

.offcanvas-content {
  padding-bottom: 45px;
}

.offcanva-wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
@media (max-width: 480px) {
  .offcanva-wrapper {
    padding: 30px 20px;
  }
}

.offcanvas-top {
  padding-bottom: 20px;
}

.offcanvas-title {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 480px) {
  .offcanvas-title {
    font-size: 20px;
  }
}

.offcanvas-text p {
  margin-bottom: 25px;
}

.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000000;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  inset-inline-end: 0;
  transition: 0.3s;
}
.offcanvas-overlay.overlay-open {
  opacity: 0.6;
  visibility: visible;
}

.sidebar-toggle {
  cursor: pointer;
}

.offcanvas-contact-icon {
  margin-inline-end: 15px;
}

.offcanvas-header-btns .site-btn {
  height: 46px;
  font-size: 14px;
  padding: 0px 25px;
  gap: 6px;
}
.offcanvas-header-btns .site-btn.gray-btn {
  background-color: #415C68;
  color: var(--td-white);
}
.offcanvas-header-btns .site-btn.gray-btn svg * {
  fill: var(--td-white);
}
.offcanvas-header-btns .site-btn span svg {
  width: 16px;
  height: 16px;
}

.offcanvas-btn {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
}

.offcanvas-close-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 44px;
  width: 44px;
  line-height: 40px;
  border: 2px solid var(--td-border-primary);
  background-color: transparent;
  color: var(--tp-text-1);
  border-radius: 50%;
}
.dark-theme .offcanvas-close-icon svg * {
  stroke: var(--td-white);
}
.offcanvas-close-icon:hover {
  background-color: var(--td-primary);
  color: var(--td-white);
  border-color: transparent;
}

.offcanvas-contact {
  margin-bottom: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas-contact {
    border-top: 1px solid var(--td-border-primary);
    padding-top: 25px;
    margin-top: 5px;
  }
}
.offcanvas-contact ul li {
  margin-bottom: 2px;
  list-style: none;
}
.offcanvas-contact ul li a {
  position: relative;
  font-size: 18px;
  color: #414144;
  display: inline-block;
}
.dark-theme .offcanvas-contact ul li a {
  color: var(--td-text-secondary);
}
.offcanvas-contact ul li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  left: auto;
  right: 0;
  bottom: 0px;
  opacity: 0;
  background-color: currentColor;
  transition: all 0.3s linear;
}
.offcanvas-contact ul li a:hover::before {
  opacity: 1;
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.2s linear;
}

/*----------------------------------------*/
/* Section Title  
/*----------------------------------------*/
.gd-text {
  background: -webkit-linear-gradient(45deg, rgb(255, 126, 66) 0%, rgb(244, 185, 67) 100% 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--td-white);
  font-weight: 500;
}
.section-subtitle:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--td-white) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.4;
  z-index: -1;
  top: 0;
  inset-inline-start: 0;
}

.section-title {
  font-size: 55px;
  color: var(--td-heading);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .section-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title {
    font-size: 44px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .section-title {
    font-size: 28px;
    letter-spacing: -1px;
  }
}

/*----------------------------------------*/
/* Tab customize
/*----------------------------------------*/
.td-tab .nav-tabs {
  padding: 0;
  margin: 0;
  border: 0;
}
.td-tab .nav-tabs .nav-link {
  padding: 0;
  margin: 0;
  border: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/*----------------------------------------
   Basic pagination
-----------------------------------------*/
.pagination-wrapper {
  margin-top: 60px;
}

.td-pagination ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px 12px;
  flex-wrap: wrap;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-pagination ul {
    justify-content: start;
  }
}
.td-pagination ul li {
  list-style: none;
}
.td-pagination ul li a {
  width: 54px;
  height: 54px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  inset-inline-end: 0;
  top: 50%;
  font-weight: 500;
  font-size: 22px;
  color: var(--td-heading);
  border: 1px solid var(--td-border-primary);
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -o-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-pagination ul li a {
    font-size: 16px;
  }
}
.dark-theme .td-pagination ul li a {
  color: var(--td-white);
}
.dark-theme .td-pagination ul li a svg * {
  fill: var(--td-white);
}
.td-pagination ul li a::before {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(154.73deg, var(--td-primary) -1.83%, var(--golden-glam) 138.32%);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: -1;
}
.td-pagination ul li a:hover {
  color: var(--td-white);
  box-shadow: 0px 18px 30px -2px rgba(19, 8, 4, 0.11);
  border-color: transparent;
}
.td-pagination ul li a:hover::before {
  opacity: 1;
}
.td-pagination ul li a i {
  font-weight: 500;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-pagination ul li a svg {
    width: 8px;
  }
}
.td-pagination ul li .current {
  width: 54px;
  height: 54px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  inset-inline-end: 0;
  top: 50%;
  font-weight: 500;
  font-size: 22px;
  background: linear-gradient(154.73deg, var(--td-primary) -1.83%, var(--golden-glam) 138.32%);
  color: var(--td-white);
  border-color: transparent;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-pagination ul li .current {
    font-size: 16px;
  }
}

/*----------------------------------------*/
/* Back to top 
/*----------------------------------------*/
.back-to-top-wrap {
  position: fixed;
  bottom: 30px;
  inset-inline-end: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  background-color: var(--td-primary);
}
@media (max-width: 480px) {
  .back-to-top-wrap {
    bottom: 20px;
    inset-inline-end: 20px;
  }
}
.back-to-top-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.back-to-top-wrap::after {
  position: absolute;
  font-family: var(--td-ff-fontawesome);
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  font-weight: 400;
  color: var(--td-white);
  inset-inline-start: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.back-to-top-wrap svg path {
  fill: none;
}
.back-to-top-wrap svg.backtotop-circle path {
  stroke: #ccc;
  stroke-width: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

/*----------------------------------------*/
/*  forms scss
/*----------------------------------------*/
.single-floating-input {
  position: relative;
}
.single-floating-input .input-icon {
  position: absolute;
  inset-inline-start: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.dark-theme .single-floating-input .input-icon svg * {
  stroke: var(--td-text-secondary);
}

.form-floating > label {
  padding: 1rem 0.75rem 1rem 5rem;
  font-weight: 700;
  z-index: 9;
}
.dark-theme .form-floating > label {
  color: var(--td-text-secondary);
}
[dir=rtl] .form-floating > label {
  left: auto;
  right: 0;
  padding: 10px 80px 0px 30px;
}
.form-floating > label span {
  color: #FF661F;
}
.form-floating .form-control,
.form-floating .form-control-plaintext {
  padding: 1rem 0.75rem 1rem 5rem;
}
.form-floating .form-control, .form-floating .form-control-plaintext, .form-floating .form-select {
  line-height: 4.25;
}
.form-floating::before {
  position: absolute;
  content: "";
  height: calc(100% - 20px);
  width: 1px;
  background-color: #EEEEEE;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 65px;
  z-index: 99;
}
.form-floating .form-control {
  border-radius: 16px;
  color: #585858;
  font-size: 16px !important;
}
.form-floating .form-control:focus {
  box-shadow: none;
  background-color: transparent;
}

.form-floating > .form-control-plaintext ~ label {
  color: #130804;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.dark-theme .form-floating > .form-control:focus ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  color: var(--td-text-secondary);
}
[dir=rtl] .form-floating > .form-control:focus ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(1.5rem);
}
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  color: var(--td-text-primary);
}
.dark-theme .form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--td-text-secondary);
}
.form-floating > .form-select ~ label {
  color: #130804;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  padding: 1rem 0.75rem 1rem 5.6rem;
}

.auth-from-step {
  display: flex;
  align-items: center;
  gap: 20px 135px;
  position: relative;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 30px;
}
.auth-from-step::before {
  position: absolute;
  content: "";
  height: 4px;
  width: calc(100% - 90px);
  top: 24px;
  inset-inline-start: 44px;
  background: linear-gradient(90deg, var(--golden-glam) 55.94%, #FFFFFF 100%);
}
.auth-from-step .single-step .number {
  width: 48px;
  height: 48px;
  border: 2px solid #E8E8E8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  background-color: var(--td-white);
}
.auth-from-step .single-step .number.active {
  color: var(--td-primary);
  background-color: #FFEEE5;
  border: 2px solid transparent;
  background-image: linear-gradient(#FFEEE5, #FFEEE5), linear-gradient(45deg, var(--td-primary), var(--golden-glam));
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.auth-from-step .single-step .title {
  font-size: 16px;
  font-weight: 400;
}

.single-step.active .number {
  background: linear-gradient(154.73deg, var(--td-primary) -1.83%, var(--golden-glam) 138.32%);
  border: 0;
}

.form-floating .form-control {
  line-height: 4.25;
  padding: 0 30px 10px 80px;
}
.dark-theme .form-floating .form-control {
  color: var(--td-white);
}
[dir=rtl] .form-floating .form-control {
  padding: 0 80px 0px 30px;
}
.form-floating .form-control-plaintext {
  line-height: 4.25;
  padding: 0 30px 10px 80px;
}
.form-floating .form-select {
  line-height: 4.25;
  padding: 10px 30px 10px 80px;
  font-size: 16px;
}
.form-floating .form-select:focus {
  border-color: var(--td-primary);
  box-shadow: none;
}
.form-floating .input-group .form-select {
  width: 235px;
  flex: none;
}
.form-floating .input-group .form-control {
  padding-inline-start: 20px;
}

.custom-select-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.form-floating .form-control {
  cursor: pointer;
  color: var(--td-heading);
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
  content: "";
  background-color: transparent;
}

.custom-select-trigger {
  padding-inline-end: 1.5rem;
}

.custom-options {
  display: none;
  position: absolute;
  z-index: 999;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background-color: var(--td-white);
  border: 1px solid var(--td-border-primary);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-option {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.custom-option img {
  width: 24px;
  height: 18px;
  margin-inline-end: 10px;
}
.custom-option:hover {
  background-color: #f1f1f1;
}

.custom-option.selected {
  background-color: #f1f1f1;
}

.custom-select-container.active .custom-options {
  display: block;
}

.floating-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.floating-group .single-floating-input {
  flex-grow: 1;
}
.floating-group .country-code {
  height: 58px;
  display: inline-flex;
  border-radius: 15px;
}
.floating-group .country-code .form-control {
  width: 80px;
  font-size: 16px;
  font-weight: 500;
  color: var(--td-heading);
  border-radius: 16px;
  text-align: center;
}
.floating-group .country-code .form-control:focus {
  box-shadow: none;
  background-color: transparent;
}
.dark-theme .floating-group .country-code .form-control {
  color: var(--td-white);
}
.floating-group .country-code .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: 500;
}
.dark-theme .floating-group .country-code .form-control::-webkit-input-placeholder {
  color: var(--td-text-secondary);
}
.floating-group .country-code .form-control::-moz-placeholder { /* Firefox 19+ */
  font-weight: 500;
}
.dark-theme .floating-group .country-code .form-control::-moz-placeholder {
  color: var(--td-text-secondary);
}
.floating-group .country-code .form-control:-moz-placeholder { /* Firefox 4-18 */
  font-weight: 500;
}
.dark-theme .floating-group .country-code .form-control:-moz-placeholder {
  color: var(--td-text-secondary);
}
.floating-group .country-code .form-control:-ms-input-placeholder { /* IE 10+  Edge*/
  font-weight: 500;
}
.dark-theme .floating-group .country-code .form-control:-ms-input-placeholder {
  color: var(--td-text-secondary);
}
.floating-group .country-code .form-control::placeholder { /* MODERN BROWSER */
  font-weight: 500;
}
.dark-theme .floating-group .country-code .form-control::placeholder {
  color: var(--td-text-secondary);
}
.floating-group .country-code select {
  border-radius: 16px;
}
.floating-group .country-code select:focus {
  box-shadow: none;
  border-color: var(--td-primary);
}

.feedback-invalid {
  font-size: 12px;
  margin-top: 3px;
  color: #DC1D4B;
  display: none;
}

.input-attention {
  font-size: 12px;
  color: var(--td-danger);
}
.input-attention.xs {
  font-size: 10px;
}

.otp-verification {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 15px 15px;
  flex-wrap: wrap;
  max-width: max-content;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .otp-verification {
    gap: 10px 10px;
  }
}
.otp-verification input {
  height: 80px;
  width: 96px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid rgba(197, 197, 197, 0.7);
  border-radius: 12px;
}
.dark-theme .otp-verification input {
  color: var(--td-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .otp-verification input {
    height: 60px;
    width: 76px;
  }
}
@media (max-width: 480px) {
  .otp-verification input {
    height: 60px;
    width: 50px;
  }
}
.otp-verification input:focus {
  background: transparent;
  border-color: var(--td-primary);
}

/*----------------------------------------
   Image Preview 
-----------------------------------------*/
.file-upload-wrap .top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.file-upload-wrap .input-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #000000;
}

.upload-custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 155px;
  text-align: center;
  border: 2px dashed #000000;
  border-radius: 8px;
}
.upload-custom-file input[type=file] {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 2px;
  height: 2px;
  overflow: hidden;
  opacity: 0;
}
.upload-custom-file label {
  z-index: 1;
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  inset-inline-end: 0;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  -ms-transition: -ms-transform 0.4s;
  -o-transition: -o-transform 0.4s;
  transition: transform 0.4s;
  background-color: rgba(0, 0, 0, 0.1);
}
.upload-custom-file label span {
  display: block;
  color: var(--td-text-primary);
  font-size: 14px;
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  -ms-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}
.upload-custom-file label span b {
  color: #000000;
  font-weight: 500;
  text-decoration: underline;
}
.upload-custom-file label .type-file-text {
  margin-top: 5px;
  color: var(--td-danger);
}
.upload-custom-file label .upload-icon {
  width: 40px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.upload-custom-file label.file-ok {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.upload-custom-file label.file-ok span {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  padding: 0.3rem;
  color: var(--td-white);
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  font-size: 16px;
  margin: auto;
  text-decoration: none;
}
.upload-custom-file label.file-ok .upload-icon {
  display: none;
}
.upload-custom-file.without-image {
  height: 176px;
}

.upload-thumb-close {
  position: absolute;
  inset-inline-end: 10px;
  top: 35px;
  z-index: 5;
  color: var(--td-danger);
  display: none;
}

/*----------------------------------------*/
/*  Animations 
/*----------------------------------------*/
@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.animate-play {
  animation: pulse 2s infinite;
}

@keyframes card-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
/*----------------------------------------*/
/*  Shortcodes
/*----------------------------------------*/
.text-body {
  color: var(--td-heading);
}

.text-white {
  color: var(--td-white);
}

.text-black {
  color: var(--td-black);
}

.text-primary {
  color: var(--td-primary);
}

.text-heading {
  color: var(--td-heading) !important;
}

.text-secondary {
  color: var(--td-secondary);
}

.text-quaternary {
  color: var(--td-tertiary);
}

.primary-text {
  color: var(--td-text-primary) !important;
}

.radius-4 {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.radius-5 {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

.radius-8 {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

.radius-10 {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.radius-20 {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}

.radius-30 {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.radius-40 {
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -o-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
}

.radius-45 {
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -o-border-radius: 45px;
  -ms-border-radius: 45px;
  border-radius: 45px;
}

.radius-50 {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
}

.radius-60 {
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -o-border-radius: 60px;
  -ms-border-radius: 60px;
  border-radius: 60px;
}

.title-font {
  font-family: var(--td-ff-title);
}

.fw-3 {
  font-weight: var(--td-fw-light);
}

.fw-4 {
  font-weight: var(--td-fw-regular);
}

.fw-5 {
  font-weight: var(--td-fw-medium);
}

.fw-6 {
  font-weight: var(--td-fw-sbold);
}

.fw-7 {
  font-weight: var(--td-fw-bold);
}

.fw-8 {
  font-weight: var(--td-fw-ebold);
}

.fw-9 {
  font-weight: var(--td-fw-black);
}

.gap--5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

/*----------------------------------------*/
/*  Background Css
/*----------------------------------------*/
.white-bg {
  background-color: var(--td-white);
}

.black-bg {
  background-color: var(--td-black);
}

.theme-bg {
  background-color: var(--td-bg-primary);
}

.theme-bg-secondary {
  background-color: var(--td-bg-secondary);
}

.warning-bg {
  background-color: var(--td-tertiary);
}

.bg-sugar-milk {
  background-color: var(--td-sugar-milk);
}
.dark-theme .bg-sugar-milk {
  background-color: #1b2f38;
}

.bg-forsythia-bud {
  background-color: var(--td-forsythia-bud);
}

/*----------------------------------------*/
/*  Preloader scss
/*----------------------------------------*/
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  background-color: #121212;
  z-index: 999;
}

.sk-three-bounce {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #121212;
}
.sk-three-bounce .sk-child {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--td-primary);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}
.sk-three-bounce.is-brick-red.sk-three-bounce .sk-child {
  background-color: var(--td-theme-2);
}
.sk-three-bounce.is-mainly-blue.sk-three-bounce .sk-child {
  background-color: var(--td-theme-3);
}
.sk-three-bounce.is-orange.sk-three-bounce .sk-child {
  background-color: var(--td-theme-4);
}
.sk-three-bounce.is-purple.sk-three-bounce .sk-child {
  background-color: var(--td-theme-5);
}
.sk-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.sk-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*----------------------------------------*/
/*  Colors
/*----------------------------------------*/
.white-text {
  color: var(--td-white) !important;
}

.black-text {
  color: var(--td-black);
}

.text-primary {
  color: var(--td-heading);
}

.theme-primary {
  color: var(--td-bg-primary);
}

.theme-secondary {
  color: var(--td-secondary);
}

.theme-text-primary {
  color: var(--td-text-secondary);
}

.theme-text-secondary {
  color: var(--td-text-secondary);
}

.theme-text-tertiary {
  color: var(--td-text-tertiary);
}

.warning-text {
  color: var(--td-warning);
}

.success-text {
  color: var(--td-success);
}

.danger-text {
  color: var(--td-danger);
}

.green-text {
  color: var(--td-green);
}

.sugar-milk {
  color: var(--sugar-milk);
}

/*# sourceMappingURL=styles.css.map */
