/* Default Css */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: #5347e3;
}

body {
  color: #40455f;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0.005em;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

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

.form-control:focus {
  color: #40455f;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  color: #40455f;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 125%;
}

h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 125%;
}

h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
}

h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: #352323;
}

ol {
  list-style: decimal;
}

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

/* Form */
label {
  color: #ddd;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: #5347e3;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #5347e3;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #5347e3;
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: #40455f;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #40455f;
  font-size: 16px;
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: #5347e3;
  background: #5347e3;
}
.btn-theme:hover {
  background: #5347e3;
  color: #fff;
  border-color: #5347e3;
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: #ddd;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: #5347e3;
}

.bg-dark {
  background-color: #101a23 !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: #ddd;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #5347e3;
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

[data-overlay] {
  position: relative;
  z-index: 1;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}

[data-overlay=light]::before {
  background-color: #fff;
}

[data-overlay=dark]::before {
  background-color: #000a2d;
}

[data-overlay=theme]::before {
  background-color: #5347e3;
}

[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1180px;
  }
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

.slide-bar {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -330px;
  width: 300px;
  padding: 25px 20px;
  height: 100%;
  display: block;
  background-color: #ffffff;
  z-index: 1020;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}

.slide-bar.show {
  right: 0;
}

.open-mobile-menu {
  display: inline-block;
}
.open-mobile-menu a {
  display: block;
  width: 50px;
  height: 50px;
  background: #212121;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  margin-left: 20px;
  color: #fff;
  border-radius: 5px;
}
.open-mobile-menu a:hover {
  background: #5347e3;
}
.open-mobile-menu a.active {
  background: #5347e3;
}

.close-mobile-menu a {
  color: #212121;
  position: relative;
  z-index: 2;
  font-size: 16px;
  top: -10px;
  left: 0;
}
.close-mobile-menu a:hover {
  color: #ff0000;
}

.on-side {
  overflow: hidden;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 4;
  left: 0;
  opacity: 0;
  display: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.body-overlay.active {
  opacity: 1;
  display: block;
}

.side-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-mobile-menu ul li a {
  padding: 13px 0;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: #101a23;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.side-mobile-menu ul li a:hover {
  color: #5347e3;
  padding-left: 5px;
}
.side-mobile-menu ul li a[aria-expanded=true] {
  color: #5347e3;
}
.side-mobile-menu ul li a[aria-expanded=true]:before {
  background: #5347e3;
  border-color: #5347e3;
}
.side-mobile-menu ul li .dropdown-toggle::after {
  display: none;
}
.side-mobile-menu ul li ul {
  padding-left: 0;
  list-style: none;
}
.side-mobile-menu ul li ul li {
  padding-left: 15px;
}
.side-mobile-menu ul li ul li:hover > a {
  color: #5347e3;
  padding-left: 20px;
}
.side-mobile-menu ul li ul li:hover > a:before {
  background: #5347e3;
  border-color: #5347e3;
}
.side-mobile-menu ul li ul li a {
  position: relative;
  padding-left: 15px;
  text-transform: capitalize;
  font-size: 12px;
}
.side-mobile-menu ul li ul li a:after {
  display: none;
}
.side-mobile-menu ul li ul li a:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #101a23;
  border-radius: 50%;
}
.side-mobile-menu ul li.has-dropdown > a {
  position: relative;
}
.side-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #101a23;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border: 1px solid #fff;
  background: #fff;
}
.side-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn i {
  transition: all 0.3s ease-in-out;
}
.side-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i {
  transform: rotate(-90deg);
}
.side-mobile-menu ul li.has-dropdown .sub-menu {
  display: none;
}

.header-area {
  padding-top: 30px;
  padding-bottom: 30px;
}
.header-area.header-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}

.logo img {
  max-width: 170px;
}

.header-btn a {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 36px;
  background: #5347e3;
  border-radius: 50px;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  position: relative;
  display: inline-block;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li a {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0.005em;
  color: #2B3C4E;
  padding: 10px 16px;
}
.main-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu ul li.has-dropdown > a:after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  margin-left: 5px;
}
.main-menu ul li .sub-menu {
  position: absolute;
  left: 50%;
  top: 120%;
  width: 280px;
  background: #fff;
  padding: 5px;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transform: translateX(-50%);
}
.main-menu ul li .sub-menu li {
  display: block;
  margin: 0;
}
.main-menu ul li .sub-menu li a {
  font-size: 14px;
  display: block;
  text-align: left;
  padding: 10px 30px;
  border-radius: 3px;
}
.main-menu ul li .sub-menu li a:hover {
  background: #f9fafb;
}
.main-menu .current-menu-item:hover,
.main-menu .current-menu-item > a {
  background: #ffd371 !important;
}

.menu-bar {
  margin-left: 15px;
}
.menu-bar a {
  display: inline-block;
  font-size: 20px;
  padding: 14px 15px;
  border: 1px solid #0176D3;
  border-radius: 4px;
}

.hero-area .shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-area .shape {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-area .shape {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero-content {
    text-align: center;
  }
}
.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .hero-content h2 {
    font-size: 36px;
  }
}
.hero-content p {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 64px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-content p br {
    display: none;
  }
}
.hero-content .btns {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content .btns {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .hero-content .btns {
    flex-direction: column;
  }
}
.hero-content .btns a {
  display: inline-block;
  padding: 16px;
  background: #5347e3;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content .btns a {
    padding: 14px;
  }
}
.hero-content .review {
  font-size: 14px;
}
.hero-content .review img {
  width: 24px;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content .review span {
    display: block;
  }
}
@media (max-width: 767px) {
  .hero-content .review span {
    display: block;
  }
}

.review-heading h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  color: #fff;
}

.review-content h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 24px;
}
.review-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 64px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .review-content p {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .review-content p {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .review-content p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .review-content p br {
    display: none;
  }
}
.review-content .read-more {
  display: inline-block;
  padding: 20px 32px;
  background: #fff;
  color: #5347e3;
  border-radius: 50px;
  margin-bottom: 48px;
}

.review-thumb {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .review-thumb {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .review-thumb {
    max-width: 90%;
  }
}

.review-testimonial {
  background: #6d63e7;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 24px;
}
.review-testimonial .text {
  margin-bottom: 16px;
}
.review-testimonial .text p {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
}
.review-testimonial .author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-testimonial .author .thumb {
  width: 48px;
  height: 48px;
}
.review-testimonial .author .content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
.review-testimonial .author .content p {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}

.review-area {
  background: #5347e3;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.review-area .shape-bg-1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 180px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #fff;
  z-index: -2;
}
@media (max-width: 767px) {
  .review-area .shape-bg-1 {
    width: 100%;
    height: 30px;
    background-size: 103%;
    background-position: top;
  }
}
.review-area .shape-bg-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #fff;
  z-index: -2;
}
@media (max-width: 767px) {
  .review-area .shape-bg-2 {
    width: 100%;
    height: 45px;
    background-size: 103%;
    background-position: bottom;
  }
}
.review-area .shape-1 {
  position: absolute;
  left: 0;
  top: 32%;
  z-index: -1;
  max-width: 135px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .review-area .shape-1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .review-area .shape-1 {
    display: none;
  }
}
.review-area .shape-2 {
  position: absolute;
  right: -15px;
  bottom: 8%;
  z-index: -1;
  max-width: 135px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .review-area .shape-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .review-area .shape-2 {
    display: none;
  }
}

.pricing-tailored-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.pricing-tailored-area .shape-1 {
  position: absolute;
  right: -30px;
  top: 0;
  z-index: -1;
  max-width: 135px;
}
.pricing-tailored-area .shape-2 {
  position: absolute;
  left: 0;
  top: 25%;
  z-index: -1;
  max-width: 135px;
}

.pricing-tailored-heading h2 {
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing-tailored-heading h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .pricing-tailored-heading h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.pricing-tailored-heading p {
  font-size: 18px;
  line-height: 28px;
}

.pricing-tailored-content h3 {
  font-size: 24px;
  line-height: 32px;
  max-width: 455px;
}
.pricing-tailored-content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

.pricing-tailored-thumb {
  max-width: 345px;
  display: inline-block;
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing-tailored-thumb {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .pricing-tailored-thumb {
    max-width: 100%;
  }
}

.cta-wrapper {
  background: #5347e3;
  padding: 32px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-left: -100px;
  display: inline-block;
  width: 100%;
  max-width: 1150px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cta-wrapper {
    margin-left: -20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cta-wrapper {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .cta-wrapper {
    margin-left: 0;
  }
}
.cta-wrapper h3 {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 16px;
}
.cta-wrapper p {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  max-width: 630px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper p {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper p {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
    margin-bottom: 40px;
  }
}
.cta-wrapper .read-more {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 24px;
  color: #5347e3;
  background: #fff;
  border-radius: 50px;
}
.cta-wrapper .shape-1 {
  position: absolute;
  right: 300px;
  top: 0;
  max-width: 124px;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper .shape-1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .shape-1 {
    display: none;
  }
}
.cta-wrapper .shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 170px;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper .shape-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .shape-2 {
    display: none;
  }
}

.cta-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta-area {
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .cta-area {
    overflow: visible;
  }
}
.cta-area .cta-shape-1 {
  position: absolute;
  left: 0;
  top: 50px;
  max-width: 384px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-shape-1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .cta-area .cta-shape-1 {
    display: none;
  }
}
.cta-area .cta-shape-2 {
  position: absolute;
  right: -80px;
  bottom: 0;
  max-width: 384px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-shape-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .cta-area .cta-shape-2 {
    display: none;
  }
}

.steps-area {
  position: relative;
  z-index: 1;
}
.steps-area .shape-1 {
  position: absolute;
  left: 0;
  top: 50px;
  max-width: 48px;
}

.steps-heading h2 {
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .steps-heading h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .steps-heading h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.steps-heading p {
  font-size: 18px;
  line-height: 28px;
}

.steps-layout {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .steps-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .steps-layout {
    grid-template-columns: 1fr;
  }
}
.steps-layout .steps-col .steps-wrap {
  background: #e2e0ff;
  border-radius: 15px;
  padding: 64px 0;
  text-align: center;
  height: 260px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .steps-layout .steps-col .steps-wrap {
    height: 230px;
  }
}
.steps-layout .steps-col .steps-wrap .icon {
  max-width: 64px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.steps-layout .steps-col .steps-wrap .icon.icon-1 {
  max-width: 48px;
}
.steps-layout .steps-col .steps-wrap h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 0;
}
.steps-layout .steps-col p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-weight: 500;
}

.steps-btn a {
  padding: 16px 48px;
  font-size: 14px;
  line-height: 20px;
  background: #5347e3;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
}

.faq-area {
  background: #5347e3;
  position: relative;
  z-index: 1;
}
.faq-area .shape-1 {
  position: absolute;
  left: 0;
  bottom: 100%;
  z-index: 1;
  width: 100%;
}
.faq-area .shape-2 {
  position: absolute;
  left: 0;
  top: 80px;
  z-index: -1;
  max-width: 135px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq-area .shape-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .faq-area .shape-2 {
    display: none;
  }
}
.faq-area .shape-3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  max-width: 135px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq-area .shape-3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .faq-area .shape-3 {
    display: none;
  }
}

.faq-heading h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 16px;
  color: #fff;
}
.faq-heading p {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
}

.testimonial-area {
  overflow: hidden;
}

.faq-accordion .accordion-item {
  background: none;
  border-radius: 0;
  border: 0;
}
.faq-accordion .accordion-item .accordion-header .accordion-button {
  border-radius: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  background: none;
  border: 0;
  box-shadow: none;
  padding: 10px 0;
  position: relative;
  padding-right: 50px;
}
.faq-accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.faq-accordion .accordion-item .accordion-header .accordion-button:before {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed:before {
  content: "\f078";
}
.faq-accordion .accordion-item .accordion-body {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

.testimonial-heading h2 {
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-heading h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .testimonial-heading h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.testimonial-heading p {
  font-size: 18px;
  line-height: 28px;
}

.testimonial-slider-active {
  position: relative;
}
.testimonial-slider-active .testimonial-pagination {
  margin-top: 30px;
  font-size: 20px;
  line-height: 28px;
  color: #5019c8;
}
.testimonial-slider-active .testimonial-button-prev {
  position: absolute;
  left: 60px;
  bottom: 0;
  z-index: 9;
  font-size: 20px;
  line-height: 28px;
  color: #5019c8;
  cursor: pointer;
}
.testimonial-slider-active .testimonial-button-next {
  position: absolute;
  left: 100px;
  bottom: 0;
  z-index: 9;
  font-size: 20px;
  line-height: 28px;
  color: #5019c8;
  cursor: pointer;
}

.testimonial-wrap .text {
  margin-bottom: 24px;
}
.testimonial-wrap .text p {
  font-size: 14px;
  line-height: 20px;
}
.testimonial-wrap .author {
  display: flex;
}
.testimonial-wrap .author .thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}
.testimonial-wrap .author .content h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-wrap .author .content p {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 10px;
}
.testimonial-wrap .author .content .rating {
  font-size: 12px;
}
.testimonial-wrap .author .content .rating i {
  color: #ffd45c;
}

.breadcrumb-menu {
  margin-top: 24px;
}
.breadcrumb-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-menu ul li {
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 20px;
  margin-right: 8px;
  color: #40455f;
}
.breadcrumb-menu ul li:after {
  content: "/";
  margin-left: 8px;
}
.breadcrumb-menu ul li:last-child:after {
  display: none;
}
.breadcrumb-menu ul li a {
  color: #40455f;
}

.product-tabs-area {
  padding-top: 48px;
}
.product-tabs-area .product-tab-heading h2 {
  font-size: 30px;
  line-height: 36px;
}

.product-tabs-wrapper {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.product-tabs-wrapper .product-tabs-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}
.product-tabs-wrapper .product-tabs-top .title {
  padding: 16px 32px;
  border-right: 1px solid #e5e7eb;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-tabs-wrapper .product-tabs-top .title {
    display: none;
  }
}
@media (max-width: 767px) {
  .product-tabs-wrapper .product-tabs-top .title {
    display: none;
  }
}
.product-tabs-wrapper .product-tabs-top .title h4 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
.product-tabs-wrapper .product-tabs-top .nav-tabs {
  flex: 1;
  border: 0;
  padding: 8px;
  overflow-x: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-tabs-wrapper .product-tabs-top .nav-tabs {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .product-tabs-wrapper .product-tabs-top .nav-tabs {
    width: 100%;
    justify-content: space-between;
  }
}
.product-tabs-wrapper .product-tabs-top .nav-tabs .nav-item {
  margin: 0 16px;
}
@media (max-width: 767px) {
  .product-tabs-wrapper .product-tabs-top .nav-tabs .nav-item {
    margin: 0 5px;
  }
}
.product-tabs-wrapper .product-tabs-top .nav-tabs .nav-item .nav-link {
  padding: 8px 32px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  background: #5347e3;
  border: 0;
  box-shadow: none;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .product-tabs-wrapper .product-tabs-top .nav-tabs .nav-item .nav-link {
    padding: 8px 20px;
  }
}
.product-tabs-wrapper .product-tabs-top .nav-tabs .nav-item .nav-link.active {
  color: #40455f;
  background: #ffd371;
}
.product-tabs-wrapper .product-tabs-bottom .product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 32px;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-tabs-wrapper .product-tabs-bottom .product-info {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .product-tabs-wrapper .product-tabs-bottom .product-info {
    padding: 16px;
    grid-template-columns: 1fr;
  }
}
.product-tabs-wrapper .product-tabs-bottom .product-info .right {
  padding-left: 64px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-tabs-wrapper .product-tabs-bottom .product-info .right {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .product-tabs-wrapper .product-tabs-bottom .product-info .right {
    padding-left: 0;
  }
}
.product-tabs-wrapper .product-tabs-bottom .product-info .variations_form .variations {
  width: 100%;
}
.product-tabs-wrapper .product-tabs-bottom .product-info .variations_form .variations tr {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.product-tabs-wrapper .product-tabs-bottom .product-info .variations_form .variations select {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  outline: none;
}
.product-tabs-wrapper .product-tabs-bottom .product-info .variations_form .label label {
  color: #40455f;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.product-tabs-wrapper .product-tabs-bottom .product-info .variations_form .single_variation_wrap label {
  display: none;
}
.product-tabs-wrapper .product-tabs-bottom .product-info .variations_form .single_variation_wrap select,
.product-tabs-wrapper .product-tabs-bottom .product-info .variations_form .single_variation_wrap input {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  outline: none;
}
.product-tabs-wrapper .product-tabs-bottom .product-info .variations_form .wapf-product-totals {
  display: none !important;
}
.product-tabs-wrapper .product-tabs-bottom .product-info .meta-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  margin-bottom: 24px;
}
.product-tabs-wrapper .product-tabs-bottom .product-info .meta-info .meta-col {
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .product-tabs-wrapper .product-tabs-bottom .product-info .meta-info .meta-col {
    font-size: 12px;
  }
}
.product-tabs-wrapper .product-tabs-bottom .product-info .meta-info .meta-col img {
  width: 16px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .product-tabs-wrapper .product-tabs-bottom .product-info .meta-info .meta-col img {
    margin-right: 8px;
  }
}
.product-tabs-wrapper .product-tabs-bottom .product-info .single_add_to_cart_button {
  width: 100%;
  padding: 16px;
  background: #5347e3;
  color: #fff;
  border-radius: 50px;
  border: 0;
}

.product-tabs-area-2 .product-tab-heading {
  text-align: center;
}
.product-tabs-area-2 .product-tab-heading h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.product-tabs-area-2 .product-tab-heading p {
  font-size: 12px;
  line-height: 16px;
}

.product-tabs-wrapper-2 .product-tabs-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.product-tabs-wrapper-2 .product-tabs-top .nav-tabs {
  display: inline-flex;
  border: 0;
  padding: 0 8px;
  background: #F1F0FF;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-tabs-wrapper-2 .product-tabs-top .nav-tabs {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .product-tabs-wrapper-2 .product-tabs-top .nav-tabs {
    width: 100%;
    justify-content: space-between;
  }
}
.product-tabs-wrapper-2 .product-tabs-top .nav-tabs .nav-item {
  margin: 0 16px;
}
@media (max-width: 767px) {
  .product-tabs-wrapper-2 .product-tabs-top .nav-tabs .nav-item {
    margin: 0 5px;
    flex: 1;
  }
}
.product-tabs-wrapper-2 .product-tabs-top .nav-tabs .nav-item .nav-link {
  position: relative;
  padding: 20px 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #343434;
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .product-tabs-wrapper-2 .product-tabs-top .nav-tabs .nav-item .nav-link {
    padding: 20px 8px;
  }
}
.product-tabs-wrapper-2 .product-tabs-top .nav-tabs .nav-item .nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #5347E3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.product-tabs-wrapper-2 .product-tabs-top .nav-tabs .nav-item .nav-link.active:after {
  opacity: 1;
  visibility: visible;
}
.product-tabs-wrapper-2 .product-tabs-top .nav-tabs .nav-item .nav-link .tooltip-wrap {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  background: #D14A50;
  border-radius: 4px;
  padding: 4px 8px;
  color: #fff;
  white-space: nowrap;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
}
.product-tabs-wrapper-2 .product-tabs-top .nav-tabs .nav-item .nav-link .tooltip-wrap:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 99%;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #d14a50;
  transform: translateX(-50%);
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 32px;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-tabs-wrapper-2 .product-tabs-bottom .product-info {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .product-tabs-wrapper-2 .product-tabs-bottom .product-info {
    padding: 16px;
    grid-template-columns: 1fr;
  }
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .right {
  padding-left: 64px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-tabs-wrapper-2 .product-tabs-bottom .product-info .right {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .product-tabs-wrapper-2 .product-tabs-bottom .product-info .right {
    padding-left: 0;
  }
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .variations_form .variations {
  width: 100%;
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .variations_form .variations tr {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .variations_form .variations select {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  outline: none;
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .variations_form .label label {
  color: #40455f;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .variations_form .single_variation_wrap label {
  display: none;
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .variations_form .single_variation_wrap select,
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .variations_form .single_variation_wrap input {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  outline: none;
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .variations_form .wapf-product-totals {
  display: none !important;
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .meta-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  margin-bottom: 24px;
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .meta-info .meta-col {
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .product-tabs-wrapper-2 .product-tabs-bottom .product-info .meta-info .meta-col {
    font-size: 12px;
  }
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .meta-info .meta-col img {
  width: 16px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .product-tabs-wrapper-2 .product-tabs-bottom .product-info .meta-info .meta-col img {
    margin-right: 8px;
  }
}
.product-tabs-wrapper-2 .product-tabs-bottom .product-info .single_add_to_cart_button {
  width: 100%;
  padding: 16px;
  background: #5347e3;
  color: #fff;
  border-radius: 50px;
  border: 0;
}

.sitemap-area .title h4 {
  color: #5347e3;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}
.sitemap-area .title h4:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #5347e3;
  border-radius: 50%;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}
.sitemap-area .sitemap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap-area .sitemap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .sitemap-area .sitemap {
    grid-template-columns: 1fr;
  }
}
.sitemap-area .sitemap a {
  color: #40455f;
  font-size: 16px;
  line-height: 24px;
}

.contact-form-wrapper .title h2 {
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-wrapper .title h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .contact-form-wrapper .title h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.contact-form-wrapper .contact-form .input-wrap {
  margin-bottom: 16px;
}
.contact-form-wrapper .contact-form .input-wrap label {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #40455f;
  margin-bottom: 8px;
}
.contact-form-wrapper .contact-form .input-wrap input {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  outline: none;
}
.contact-form-wrapper .contact-form .input-wrap input::-webkit-input-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.contact-form-wrapper .contact-form .input-wrap input:-moz-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.contact-form-wrapper .contact-form .input-wrap input::-moz-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.contact-form-wrapper .contact-form .input-wrap input:-ms-input-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.contact-form-wrapper .contact-form .input-wrap input:focus {
  border-color: #5347e3;
}
.contact-form-wrapper .contact-form .input-wrap textarea {
  padding: 12px 16px;
  width: 100%;
  height: 190px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  outline: none;
}
.contact-form-wrapper .contact-form .input-wrap textarea::-webkit-input-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.contact-form-wrapper .contact-form .input-wrap textarea:-moz-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.contact-form-wrapper .contact-form .input-wrap textarea::-moz-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.contact-form-wrapper .contact-form .input-wrap textarea:-ms-input-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.contact-form-wrapper .contact-form .input-wrap textarea:focus {
  border-color: #5347e3;
}
.contact-form-wrapper .contact-form .btn-wrap input[type=submit] {
  padding: 12px 16px;
  width: 100%;
  border-radius: 50px;
  background: #5347e3;
  border: 1px solid #5347e3;
  outline: none;
  color: #fff;
}

.register-form-wrapper .title h2 {
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .register-form-wrapper .title h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .register-form-wrapper .title h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.register-form-wrapper .ur-frontend-form {
  border: 0;
  padding: 0;
}
.register-form-wrapper .ur-frontend-form .form-row {
  margin-bottom: 16px;
}
.register-form-wrapper .ur-frontend-form .form-row label {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #40455f;
  margin-bottom: 8px;
}
.register-form-wrapper .ur-frontend-form .form-row input {
  padding: 12px 16px !important;
  width: 100% !important;
  border-radius: 8px !important;
  background: #fff;
  border: 1px solid #e5e7eb;
  outline: none;
}
.register-form-wrapper .ur-frontend-form .form-row input::-webkit-input-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.register-form-wrapper .ur-frontend-form .form-row input:-moz-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.register-form-wrapper .ur-frontend-form .form-row input::-moz-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.register-form-wrapper .ur-frontend-form .form-row input:-ms-input-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.register-form-wrapper .ur-frontend-form .form-row input:focus {
  border-color: #5347e3;
}
.register-form-wrapper .ur-frontend-form .form-row textarea {
  padding: 12px 16px;
  width: 100%;
  height: 190px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  outline: none;
}
.register-form-wrapper .ur-frontend-form .form-row textarea::-webkit-input-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.register-form-wrapper .ur-frontend-form .form-row textarea:-moz-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.register-form-wrapper .ur-frontend-form .form-row textarea::-moz-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.register-form-wrapper .ur-frontend-form .form-row textarea:-ms-input-placeholder {
  color: rgba(64, 69, 95, 0.5);
}
.register-form-wrapper .ur-frontend-form .form-row textarea:focus {
  border-color: #5347e3;
}
.register-form-wrapper .ur-frontend-form .ur-button-container button {
  padding: 12px 16px;
  width: 100%;
  border-radius: 50px;
  background: #5347e3;
  border: 1px solid #5347e3;
  outline: none;
  color: #fff;
  margin: 0;
}
.register-form-wrapper .info {
  font-size: 12px;
  color: #40455f;
  line-height: 16px;
  text-align: center;
}
.register-form-wrapper .info a {
  color: #40455f;
  text-decoration: underline;
}

.blog-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-wrap {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.blog-wrap .thumb {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.blog-wrap .thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-wrap .content {
  padding: 24px;
}
.blog-wrap .content h3 {
  color: #111827;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 12px;
}
.blog-wrap .content h3 a {
  color: #111827;
}
.blog-wrap .content .text {
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
}
.blog-wrap .content .user-info {
  display: flex;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
}
.blog-wrap .content .user-info .icon {
  width: 40px;
  height: 40px;
}
.blog-wrap .content .user-info .icon img {
  width: 40px;
  height: 40px;
}

.basic-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.basic-pagination ul li {
  display: inline-block;
  margin-right: 10px;
}
.basic-pagination ul li a,
.basic-pagination ul li span {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5347e3;
}
.basic-pagination ul li a.current, .basic-pagination ul li a:hover,
.basic-pagination ul li span.current,
.basic-pagination ul li span:hover {
  color: #111827;
  background: #ffd371;
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 48px;
  color: #40455f;
  font-size: 14px;
}
.woocommerce .woocommerce-breadcrumb a {
  color: #40455f;
}

.product-heading {
  text-align: center;
}
.product-heading .details-product-title {
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.product-heading p {
  font-size: 12px;
  line-height: 16px;
}

.products_thumb_list {
  padding: 32px;
  border-radius: 15px;
  border: 1px solid #e5e7eb;
}
@media (max-width: 767px) {
  .products_thumb_list {
    padding: 16px;
  }
}
.products_thumb_list .variations_form .variations {
  width: 100%;
}
.products_thumb_list .variations_form .variations tr {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.products_thumb_list .variations_form .variations select {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  outline: none;
}
.products_thumb_list .variations_form .label label {
  color: #40455f;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.products_thumb_list .variations_form .single_variation_wrap label {
  display: none;
}
.products_thumb_list .variations_form .single_variation_wrap select,
.products_thumb_list .variations_form .single_variation_wrap input {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  outline: none;
}
.products_thumb_list .variations_form .wapf-product-totals {
  display: none !important;
}
.products_thumb_list .meta-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  margin-bottom: 24px;
}
.products_thumb_list .meta-info .meta-col {
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .products_thumb_list .meta-info .meta-col {
    font-size: 12px;
  }
}
.products_thumb_list .meta-info .meta-col img {
  width: 16px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .products_thumb_list .meta-info .meta-col img {
    margin-right: 8px;
  }
}
.products_thumb_list .single_add_to_cart_button {
  width: 100%;
  padding: 16px;
  background: #5347e3;
  color: #fff;
  border-radius: 50px;
  border: 0;
}

.payment-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.payment-info p {
  font-size: 14px;
  line-height: 20px;
}
.payment-info .images {
  display: flex;
  gap: 5px;
}
.payment-info .images img {
  height: 16px;
}

.woocommerce-product-details__short-description {
  padding-top: 24px;
}
.woocommerce-product-details__short-description h3 {
  font-size: 24px;
  line-height: 32px;
  color: #40455f;
  margin-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .woocommerce-product-details__short-description h3 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .woocommerce-product-details__short-description h3 br {
    display: none;
  }
}
.woocommerce-product-details__short-description ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.woocommerce-product-details__short-description ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  line-height: 16px;
  color: #40455f;
}
.woocommerce-product-details__short-description ul li:before {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0idGljayIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgPGcgaWQ9Ikdyb3VwXzI1OSIgZGF0YS1uYW1lPSJHcm91cCAyNTkiPgogICAgPGcgaWQ9Ikdyb3VwXzI1OCIgZGF0YS1uYW1lPSJHcm91cCAyNTgiPgogICAgICA8cGF0aCBpZD0iUGF0aF8zNDEiIGRhdGEtbmFtZT0iUGF0aCAzNDEiIGQ9Ik0xMiwwQTEyLDEyLDAsMSwwLDI0LDEyLDEyLjAxNCwxMi4wMTQsMCwwLDAsMTIsMFoiIGZpbGw9IiMxNGIxN2EiLz4KICAgIDwvZz4KICA8L2c+CiAgPGcgaWQ9Ikdyb3VwXzI1NyIgZGF0YS1uYW1lPSJHcm91cCAyNTciIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUuNzczIDcuNzUxKSI+CiAgICA8ZyBpZD0iR3JvdXBfMjU2IiBkYXRhLW5hbWU9Ikdyb3VwIDI1NiI+CiAgICAgIDxwYXRoIGlkPSJQYXRoXzM0MCIgZGF0YS1uYW1lPSJQYXRoIDM0MCIgZD0iTTEzNS4zNzgsMTY1LjY2N2EuOTczLjk3MywwLDAsMC0xLjM3NS0uMDM2bC02LjIxMSw1Ljg5MS0yLjk2My0zLjA0MmEuOTczLjk3MywwLDAsMC0xLjM5NCwxLjM1OGwzLjYzMiwzLjcyOWEuOTczLjk3MywwLDAsMCwxLjM2Ny4wMjdsNi45MDgtNi41NTFBLjk3My45NzMsMCwwLDAsMTM1LjM3OCwxNjUuNjY3WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyMy4xNTggLTE2NS4zNjQpIiBmaWxsPSIjZmZmIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K);
  width: 12px;
  height: 12px;
  background-size: cover;
  display: inline-block;
}
.woocommerce-product-details__short-description ul li img {
  height: 12px;
}

.desc-tab-content .description_content h2, .desc-tab-content .description_content h3 {
  color: #5347e3;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}
.desc-tab-content .description_content h4 {
  font-weight: 400;
  color: #5347e3;
  border-left: 3px solid #5347e3;
  padding-left: 8px;
  font-size: 1.2rem;
  z-index: 998;
  line-height: 2rem;
}
.desc-tab-content .description_content p {
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 400;
  margin: 12px 0;
  color: #5b6b82;
}

.details-rating a {
  color: #ffdc64;
}

.shop_table .product-thumbnail,
.shop_table .product-quantity {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .shop_table .product-thumbnail,
  .shop_table .product-quantity {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .shop_table .product-thumbnail,
  .shop_table .product-quantity {
    display: none !important;
  }
}
.shop_table th.product-remove {
  width: 50px;
  text-align: center;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  padding: 8px 16px;
  border-radius: 8px;
  color: #40455f;
  outline: none;
  width: 130px;
  font-size: 16px;
  border: 1px solid #e5e7eb;
}

.coupon-left label {
  display: none;
}

.woocommerce table.cart td.actions .coupon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce table.cart td.actions .coupon button {
  padding: 9px 16px;
  border-radius: 8px;
  color: #ffffff;
  outline: none;
  font-size: 16px;
  border: 0;
  background: #5446e3;
  text-transform: capitalize;
}

button.site-btn.brand-btn {
  padding: 9px 16px;
  border-radius: 8px;
  color: #ffffff;
  outline: none;
  font-size: 16px;
  border: 0;
  background: #5446e3;
  text-transform: capitalize;
}

.checkout-button.alt.wc-forward.site-btn.brand-btn {
  padding: 16px 16px;
  border-radius: 8px;
  color: #ffffff;
  outline: none;
  font-size: 16px;
  border: 0;
  background: #5446e3;
  text-transform: capitalize;
}

.woocommerce table.shop_table td {
  border-color: #e5e7eb;
}

.woocommerce-billing-fields__field-wrapper label {
  color: #40455f;
  font-size: 14px;
  font-weight: 500;
}
.woocommerce-billing-fields__field-wrapper select,
.woocommerce-billing-fields__field-wrapper input {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  outline: none;
}
.woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single {
  padding: 6px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  height: auto;
}
.woocommerce-billing-fields__field-wrapper .select2-dropdown {
  border-color: #e5e7eb;
}
.woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.woocommerce-additional-fields {
  margin-top: 34px;
}
.woocommerce-additional-fields label {
  color: #40455f;
  font-size: 14px;
  font-weight: 500;
}
.woocommerce-additional-fields textarea {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  outline: none;
  min-height: 100px;
}

.woocommerce-checkout #payment {
  background: #fafafa;
}
.woocommerce-checkout #payment label {
  color: #40455f;
  font-size: 14px;
  font-weight: 500;
}
.woocommerce-checkout #payment #place_order {
  padding: 14px 20px;
  border-radius: 8px;
  color: #ffffff;
  outline: none;
  font-size: 16px;
  border: 0;
  background: #5446e3;
  text-transform: capitalize;
}

p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  background: #d1e7dd;
  padding: 10px;
  border: 1px solid #badbcc;
  border-radius: 3px;
}

.woocommerce .woocommerce-customer-details address {
  background: #fafafa;
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.woocommerce-message {
  border-top-color: #0f5132;
}

.woocommerce-message::before {
  color: #0f5132;
}

.woocommerce-info {
  border-top-color: #5446e3;
}

.woocommerce-info::before {
  color: #5446e3;
}

a.button.wc-forward.wp-element-button {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 12px 20px;
  background: #5347e3;
  border-radius: 8px;
}

.products__thumb img {
  width: 100%;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
  display: block;
  margin-bottom: 15px;
}
.woocommerce-MyAccount-navigation ul li a {
  color: #40455f;
  font-size: 16px;
  font-weight: 500;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  color: #5347e3;
}

.woocommerce-EditAccountForm label {
  color: #40455f;
  font-size: 14px;
  font-weight: 500;
}
.woocommerce-EditAccountForm .form-row {
  margin-bottom: 15px !important;
}
.woocommerce-EditAccountForm select,
.woocommerce-EditAccountForm input {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  outline: none;
}
.woocommerce-EditAccountForm .select2-container--default .select2-selection--single {
  padding: 6px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  height: auto;
}
.woocommerce-EditAccountForm .select2-dropdown {
  border-color: #e5e7eb;
}
.woocommerce-EditAccountForm .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

a.button.wc-backward.wp-element-button,
.woocommerce .woocommerce-info .button,
.woocommerce table.my_account_orders .button {
  background: #5446e3;
  color: #fff;
  font-weight: 500;
}

.woocommerce-MyAccount-content a {
  color: #5446e3;
}

.woocommerce .woocommerce-ordering select {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  outline: none;
}

.woocommerce-account:not(.logged-in) .woocommerce {
  margin: 0 auto !important;
  max-width: 500px;
}

.woocommerce-form-login {
  border: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}
.woocommerce-form-login label {
  color: #40455f;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.woocommerce-form-login input {
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  outline: none;
}
.woocommerce-form-login .show-password-input {
  order: 3;
  top: 50% !important;
  transform: translateY(-50%);
}
.woocommerce-form-login a {
  color: #40455f;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
}
.woocommerce-form-login .woocommerce-form-login__rememberme {
  display: none !important;
  align-items: center;
}
.woocommerce-form-login .woocommerce-form-login__rememberme input {
  display: inline-block;
  width: auto;
  margin-right: 10px;
}
.woocommerce-form-login .form-row:nth-child(3) {
  order: 4;
}
.woocommerce-form-login .woocommerce-form-login__submit {
  width: 100%;
  padding: 16px !important;
  background: #5347e3 !important;
  color: #fff !important;
  border-radius: 50px !important;
  border: 0;
  margin: 30px 0 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 100%;
  margin-bottom: 30px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  display: inline-block;
  margin-right: 20px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #5347e3;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: right;
  width: 100%;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce table.shop_table th:last-child,
.woocommerce table.shop_table td:last-child {
  border-right: 0;
}

.footer-area {
  background: #fafafa;
}

.footer-about .f-logo a {
  display: inline-block;
  font-size: 48px;
  line-height: 48px;
  color: #40455f;
  margin-bottom: 16px;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-about .f-logo a {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .footer-about .f-logo a {
    font-size: 24px;
  }
}
.footer-about .f-logo a span {
  color: #5347e3;
}
.footer-about .text p {
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
}

.footer-menu h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #40455f;
  margin-bottom: 16px;
}
.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu ul li {
  display: block;
  margin-bottom: 16px;
}
.footer-menu ul li a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: #40455f;
}
.footer-menu ul li a:hover {
  color: #5347e3;
}

.footer-social h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0.0015em;
  color: #2B3C4E;
  margin-bottom: 24px;
}
.footer-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-social ul li {
  display: block;
  margin-bottom: 16px;
}
.footer-social ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.005em;
  color: #2B3C4E;
}
.footer-social ul li a i {
  width: 24px;
  height: 24px;
  line-height: 24px;
  background: #0176D3;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 12px;
}
.footer-social ul li a:hover {
  color: #5347e3;
}

.footer-bottom {
  padding: 16px 0;
  background: #5347e3;
}
.footer-bottom .copyright {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

/*------------------------------------------------------------------------------
	Template Name: Starter Project Template.
-------------------------------------------------------------------------------*/

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