@import "https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&display=swap";
@import "https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap";
:root {
  --bodyFontFamily: "Rubik", sans-serif;
  --paragraphFontFamily: "Roboto", sans-serif;
  --bodyColor: #718a96;
  --mainColor: #8d8aff;
  --headingColor: #331d74;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --fontSize: 16px;
  --transition: all ease 0.5s;
  --borderRadius: 4px;
  --boxShadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

body {
  font-size: var(--fontSize);
  font-family: var(--bodyFontFamily);
  color: var(--bodyColor);
}

a {
  transition: var(--transition);
  color: var(--bodyColor);
}

a:hover {
  color: var(--mainColor);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--headingColor);
  font-weight: 600;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  margin-bottom: 15px;
  line-height: 30px;
  font-family: var(--paragraphFontFamily);
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.form-control {
  background-color: #f9fafb;
  border: 1px solid #d9d9d9;
  height: 55px;
  color: var(--headingColor);
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
  transition: var(--transition);
  border-radius: 0;
}

.form-control::placeholder {
  color: #718a96;
  font-size: 14px;
}

.form-control:focus {
  color: var(--blackColor);
  background-color: rgba(0, 0, 0, 0);
  box-shadow: unset;
  outline: 0;
  border: 1px solid var(--mainColor);
}

.form-control.form-select {
  cursor: pointer;
}

textarea.form-control {
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-24 {
  margin-bottom: 24px;
}

.scroll-bar {
  margin-top: 0 !important;
  overflow: auto;
}

.scroll-bar::-webkit-scrollbar {
  width: 6px;
  transition: var(--transition);
  border-radius: 50px;
}

.scroll-bar::-webkit-scrollbar-track {
  background: #f0f0f4;
  transition: var(--transition);
  border-radius: 50px;
}

.scroll-bar::-webkit-scrollbar-thumb {
  background: #e0e0e2;
  transition: var(--transition);
  border-radius: 50px;
}

.scroll-bar::-webkit-scrollbar-thumb:hover {
  background: var(--mainColor);
  border-radius: 50px;
}

.bg-color-161a1e {
  background-color: #161a1e;
}

.bg-color-f2f8fd {
  background-color: #f2f8fd;
}

.bg-color-19003a {
  background-color: #19003a;
}

.bg-color-f3f2eb {
  background-color: #f3f2eb;
}

.bg-color-8d8aff {
  background-color: #8d8aff;
}

.bg-color-e9ffe8 {
  background-color: #e9ffe8;
}

.bg-color-efccd1 {
  background-color: #efccd1;
}

.default-btn {
  background-color: var(--mainColor);
  border-radius: 50px;
  transition: var(--transition);
  color: var(--whiteColor);
  font-weight: 600;
  font-size: 17px;
  text-align: center;
  display: inline-flex;
  text-decoration: none;
  line-height: 15px;
  padding: 20px 35px;
}

.default-btn i {
  font-size: 18px;
  margin-left: 8px;
  left: -2px;
  position: relative;
}

.default-btn img {
  margin-left: 12px;
}

.default-btn.gradient-btn {
  margin-right: 15px;
  padding: 16px 35px;
  background: linear-gradient(
    94.39deg,
    #c9cafc 0%,
    #efccd1 53.65%,
    #f9c177 100%
  );
  color: var(--headingColor);
}

.default-btn.gradient-btn:hover {
  color: var(--headingColor);
}

.default-btn:hover {
  background-color: var(--headingColor);
  color: var(--whiteColor);
}

.default-btn.active {
  background-color: var(--headingColor);
  color: var(--whiteColor);
}

.read-more {
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  background: linear-gradient(135deg, #1488cc 0%, #2b32b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
  text-fill-color: rgba(0, 0, 0, 0);
}

.read-more i {
  margin-left: 5px;
  font-weight: 600;
  -webkit-text-fill-color: #00008b;
  position: relative;
  top: 3px;
}

.read-more:hover {
  letter-spacing: 1px;
}

.read-more.active {
  color: var(--mainColor);
}

.read-more.active i {
  color: var(--mainColor);
}

.read-more.text-dark {
  background: linear-gradient(135deg, #0a0c22 0%, #0a0c22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
  text-fill-color: rgba(0, 0, 0, 0);
}

.section-title {
  max-width: 860px;
  margin: -5px auto 50px;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 54px;
}

.section-title h2 span {
  color: var(--mainColor);
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title p {
  max-width: 570px;
  margin: auto;
}

.section-title.white-title h2 {
  color: var(--whiteColor);
}

.section-title.white-title p {
  color: var(--whiteColor);
}

.section-title.left-title {
  margin-left: 0;
  text-align: left;
}

.section-title.mw-580 {
  max-width: 580px;
}

.section-title.mw-670 {
  max-width: 650px;
}

.section-title.mw-665 {
  max-width: 665px;
}

.section-title.mw-695 {
  max-width: 695px;
}

.section-title.mw-800 {
  max-width: 800px;
}

.top-title {
  color: var(--headingColor);
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 67px;
  margin-bottom: 17px;
}

.top-title.linear {
  background: linear-gradient(
    94.39deg,
    #c9cafc 0%,
    #efccd1 53.65%,
    #f9c177 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
  text-fill-color: rgba(0, 0, 0, 0);
}

.top-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 56px;
  height: 1px;
  background-color: var(--mainColor);
}

.mw-531 {
  max-width: 531px;
}

.mw-648 {
  max-width: 648px;
}

.mw-1051 {
  max-width: 1051px;
}

.p-color {
  color: #d8deed;
}

.shape {
  position: absolute;
  z-index: -1;
}

.shape.shape-1 {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.shape.shape-2 {
  top: 87px;
  left: 60px;
  animation: radius 10s infinite linear;
}

.shape.shape-3 {
  bottom: 108px;
  right: 66px;
  animation: radius 10s infinite linear;
}

.shape.shape-4 {
  bottom: 368px;
  left: 0;
  animation: off-on 4s infinite linear;
}

.shape.shape-5 {
  bottom: 147px;
  left: 40px;
  animation: off-on 6s infinite linear;
}

.shape.shape-6 {
  bottom: 101px;
  left: 401px;
  animation: off-on 8s infinite linear;
}

.shape.shape-7 {
  bottom: 100px;
  right: 360px;
  animation: off-on 10s infinite linear;
}

.shape.shape-8 {
  bottom: 134px;
  right: 0;
  animation: off-on 12s infinite linear;
}

.shape.shape-9 {
  top: 0;
  right: 0;
}

.shape.shape-10 {
  top: 0;
  right: -175px;
  z-index: 1;
}

.shape.shape-11 {
  left: -159px;
  bottom: -100px;
  z-index: 1;
}

.shape.shape-12 {
  top: 193px;
  right: 197px;
}

.shape.shape-13 {
  top: -152px;
  left: -85px;
}

.shape.shape-14 {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.shape.shape-15 {
  top: 0;
  left: 0;
}

.shape.shape-16 {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.banner-area.bg-1 {
  background: linear-gradient(
    180deg,
    #f7ede7 0%,
    rgba(246, 229, 219, 0.26) 100%
  );
}

.banner-area.bg-2 {
  background-image: url(../../assets/images/banner/banner-bg-2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-area.bg-3 {
  padding-top: 187px;
  padding-bottom: 130px;
}

.banner-area .container-fluid {
  max-width: 1780px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-content {
  text-align: center;
  max-width: 1215px;
  margin: auto;
  padding-top: 227px;
  padding-bottom: 386px;
}

.banner-content .top-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: 0.05em;
  position: relative;
  color: var(--headingColor);
  padding-left: 67px;
  margin-bottom: 9px;
  display: inline-block;
}

.banner-content .top-title::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 56px;
  height: 1px;
  background-color: var(--mainColor);
}

.banner-content h1 {
  font-size: 86px;
  line-height: 116.1px;
  margin-bottom: 30px;
}

.banner-content .banner-btn .default-btn {
  margin-right: 15px;
  padding: 16px 35px;
}

.banner-content .banner-btn .default-btn:last-child {
  margin-right: 0;
}

.banner-content .banner-btn .default-btn.active {
  background: linear-gradient(
    94.39deg,
    var(--headingColor) 0%,
    var(--headingColor)
  );
}

.banner-content .banner-btn .default-btn.active span {
  background: linear-gradient(
    94.39deg,
    #c9cafc 0%,
    #efccd1 53.65%,
    #f9c177 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
  text-fill-color: rgba(0, 0, 0, 0);
  height: 17px;
}

.banner-content.style-two {
  max-width: 1096px;
  padding-top: 196px;
  padding-bottom: 105px;
}

.banner-content.style-two h1 {
  font-size: 72px;
  line-height: 97.2px;
  margin-bottom: 42px;
}

.banner-content.style-two .search-wrap {
  background-color: #8d8aff;
  border-radius: 20px;
  padding: 41px 50px;
  margin-bottom: 20px;
}

.banner-content.style-two .search-wrap h2 {
  font-weight: 500;
  font-size: 30px;
  line-height: 32px;
  color: var(--whiteColor);
  margin-bottom: 25px;
}

.banner-content.style-two .search-wrap .search-form-warp {
  max-width: 726px;
  margin: auto;
}

.banner-content.style-two
  .search-wrap
  .search-form-warp
  .search-form
  .form-control {
  padding-left: 50px;
  background: #fff;
  box-shadow: 0px 3.20703px 40.8896px rgba(0, 0, 0, 0.1);
  border-radius: 6.90313px;
}

.banner-content.style-two
  .search-wrap
  .search-form-warp
  .search-form
  .form-control::placeholder {
  font-size: 17px;
  color: #718a96;
}

.banner-content.style-two
  .search-wrap
  .search-form-warp
  .search-form
  .search-icon {
  left: 20px !important;
}

.banner-content.style-two
  .search-wrap
  .search-form-warp
  .search-form
  .generate {
  right: 20px !important;
  font-size: 17px;
  font-weight: 600;
  color: var(--mainColor);
}

.banner-content.style-two .search-wrap p {
  font-size: 14px;
  font-weight: 500;
  color: #d8deed;
  margin-top: 20px;
}

.banner-content.style-two .chat-info {
  background-color: var(--whiteColor);
  border-radius: 20px;
  padding: 45px 30px;
}

.banner-content.style-two .chat-info .chat-author {
  border-bottom: 1px solid #f2f8fd;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.banner-content.style-two .chat-info .chat-author img {
  border-radius: 50px;
}

.banner-content.style-two .chat-info .chat-author span {
  margin-left: 20px;
  font-size: 17px;
}

.banner-content.style-two .info-warp {
  height: 145px;
}

.banner-content.style-two .info-warp .flex-shrink-0 {
  position: relative;
  top: 10px;
}

.banner-content.style-two .info-warp p {
  margin-bottom: 30px;
  font-size: 17px;
  font-family: var(--bodyFontFamily);
  max-width: 960px;
}

.banner-content.style-two .info-warp p:last-child {
  margin-bottom: 0;
  max-width: 900px;
}

.banner-content.style-two .control-btn {
  margin-top: 20px;
}

.banner-content.style-two .control-btn li {
  display: inline-block;
  margin-right: 25px;
}

.banner-content.style-two .control-btn li:last-child {
  margin-right: 0;
}

.banner-content.style-two .control-btn li button {
  border: none;
  background-color: #b4b7c9;
  border-radius: 8px;
  padding: 10px;
  transition: var(--transition);
  font-family: var(--paragraphFontFamily);
}

.banner-content.style-two .control-btn li button span {
  color: var(--whiteColor);
  margin-left: 10px;
}

.banner-content.style-two .control-btn li button:hover {
  background-color: var(--mainColor);
}

.banner-content.style-three {
  text-align: left;
  padding: 0;
}

.banner-content.style-three h1 {
  font-size: 64px;
  margin-bottom: 15px;
  line-height: 135%;
  max-width: 648px;
}

.banner-content.style-three p {
  margin-bottom: 28px;
  max-width: 604px;
}

.banner-content.style-three .form-control {
  margin-bottom: 25px;
  height: 130px;
  background-color: var(--whiteColor);
  border-color: var(--whiteColor);
  padding: 25px 30px;
  color: var(--bodyColor);
  border-radius: 6.903px;
  max-width: 604px;
}

.banner-img-wrap {
  margin-left: 20px;
}

.banner-img-wrap .banner-img img {
  border-radius: 10px;
}

.banner-img-wrap .banner-img.mr-5 {
  margin-right: 5.5px;
}

.banner-img-wrap .banner-img.ml-5 {
  margin-left: 5.5px;
}

.banner-img-wrap .banner-img-content {
  padding: 26px 40px;
  background-color: var(--whiteColor);
  border-radius: 10px;
  position: relative;
  margin-top: 35px;
  padding-right: 56px;
  margin-left: -52px;
}

.banner-img-wrap .banner-img-content::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #000;
  background: #e9ffe8;
  z-index: -1;
}

.banner-img-wrap .banner-img-content p {
  font-size: 17px;
  font-weight: 500;
  line-height: 160%;
}

.banner-img-wrap .banner-img-content p span {
  color: var(--headingColor);
}

.banner-img-wrap .banner-img-content .icon {
  position: absolute;
  top: -10px;
  right: -10px;
  border-radius: 50px;
}

.page-banner-content {
  text-align: center;
  max-width: 860px;
  margin: auto;
  padding-top: 193px;
  padding-bottom: 124px;
  position: relative;
  z-index: 2;
}

.page-banner-content h1 {
  font-size: 56px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.page-banner-content ul li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}

.page-banner-content ul li::before {
  content: ".";
  position: absolute;
  top: 0;
  right: -14px;
  margin: auto;
}

.page-banner-content ul li a {
  text-decoration: none;
}

.page-banner-content ul li span.active {
  color: var(--mainColor);
}

.page-banner-content ul li:last-child {
  margin-right: 0;
}

.page-banner-content ul li:last-child::before {
  display: none;
}

.powerful-area {
  padding-bottom: 50px;
}

.powerful-area .col-lg-3:first-child .single-powerful {
  border-left: none;
  padding-left: 0;
}

.single-powerful {
  margin-bottom: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 27px;
  transition: var(--transition);
}

.single-powerful .icon {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin-bottom: 40px;
}

.single-powerful .icon::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 25px;
  width: 81px;
  height: 81px;
  background-color: #1c2025;
  z-index: -1;
  border-radius: 50px;
  transition: var(--transition);
}

.single-powerful h3 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 40px;
}

.single-powerful h3 a {
  color: var(--whiteColor);
  text-decoration: none;
}

.single-powerful:hover {
  border-color: var(--mainColor);
}

.single-powerful:hover .icon::before {
  background-color: var(--mainColor);
}

.single-powerful.style-two {
  border: none;
  padding-left: 0;
}

.single-powerful.style-two .icon {
  margin-bottom: 25px;
}

.single-powerful.style-two .icon::before {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.08);
  left: 0;
  top: -10px;
}

.single-powerful.style-two h3 {
  margin-bottom: 0;
}

.single-powerful.style-three {
  border-color: var(--whiteColor);
}

.single-powerful.style-three .icon::before {
  background-color: var(--whiteColor);
}

.single-powerful.style-three h3 a {
  color: var(--headingColor);
}

.single-powerful.style-three:hover {
  border-color: var(--mainColor);
}

.single-powerful.mb-50 {
  margin-bottom: 50px;
}

.powerful-content {
  max-width: 420px;
  position: relative;
}

.powerful-content::before {
  content: "";
  position: absolute;
  top: -45px;
  right: -140px;
  width: 1px;
  height: 372px;
  background-color: rgba(219, 223, 236, 0.3);
}

.powerful-content h2 {
  color: var(--whiteColor);
}

.powerful-content p {
  color: #ebe7f2;
}

.about-img {
  margin-right: 35px;
}

.global-content.mw-668 {
  max-width: 668px;
}

.global-content h2 {
  font-size: 40px;
  line-height: 54px;
  margin-bottom: 12px;
}

.global-content h2:last-child {
  margin-bottom: 0;
}

.global-content p {
  margin-bottom: 23px;
  max-width: 600px;
}

.global-content .standards-list li {
  background-color: #f2f8fd;
  padding: 16px 30px;
  margin-bottom: 20px;
}

.global-content .standards-list li i {
  font-size: 22px;
  color: var(--mainColor);
  line-height: 1;
}

.global-content .standards-list li span {
  color: var(--headingColor);
  margin-left: 11px;
  line-height: 20px;
  font-size: 17px;
}

.global-content .about-btn {
  margin-top: 20px;
}

.global-content .generate-list li {
  margin-bottom: 20px;
}

.global-content .generate-list li:last-child {
  margin-bottom: 0;
}

.global-content .generate-list li i {
  font-size: 28px;
  color: var(--whiteColor);
  width: 48px;
  height: 48px;
  line-height: 58px;
  text-align: center;
  background-color: var(--mainColor);
  border-radius: 50px;
  display: inline-block;
}

.global-content .generate-list li span {
  margin-left: 15px;
  font-size: 17px;
  color: var(--headingColor);
  display: block;
}

.global-content.style-two .standards-list li {
  padding: 10px 15px;
}

.global-content.style-two .standards-list li i {
  color: #89cdc3;
}

.single-services {
  background-color: #f8f8f8;
  border-radius: 3px;
  padding: 40px 30px;
  margin-bottom: 30px;
  border: 1px solid #f8f8f8;
  transition: var(--transition);
}

.single-services .icon {
  width: 124px;
  height: 124px;
  line-height: 124px;
  background-color: var(--whiteColor);
  border-radius: 57.5px 5px 5px 5px;
  text-align: center;
  margin-bottom: 23px;
  transition: var(--transition);
}

.single-services h3 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 7px;
}

.single-services h3 a {
  text-decoration: none;
  color: var(--headingColor);
}

.single-services p {
  margin-bottom: 33px;
}

.single-services.style-two {
  background-color: #ebe7f2;
}

.single-services.style-two h3 {
  border-bottom: 1px solid #f8f4f4;
  padding-bottom: 23px;
  margin-bottom: 23px;
}

.single-services:hover {
  background-color: var(--whiteColor);
  box-shadow: var(--boxShadow);
}

.single-services:hover .icon {
  background-color: var(--mainColor);
  border-radius: 3px;
}

.single-services.bg-color-ebe7f2 {
  background-color: #ebe7f2;
}

.services-wrap .services-title {
  padding-right: 70px;
}

.services-wrap .services-title h2 {
  font-size: 40px;
  line-height: 54px;
  margin-bottom: 0;
}

.services-wrap.left-border {
  border-left: 4px solid #e8e8eb;
}

.single-services-item {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 100px;
  position: relative;
}

.single-services-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 4px solid #e8e8eb;
  width: 1500px;
  height: 4px;
}

.single-services-item.style-two {
  padding-right: 0;
  padding-left: 100px;
}

.single-services-item.style-two::before {
  right: auto;
  left: 0;
}

.single-services-item.before-none::before {
  display: none;
}

.single-services-item .icon {
  background-color: #efccd1;
  margin-bottom: 35px;
  width: 86px;
  height: 86px;
  line-height: 86px;
  text-align: center;
  border-radius: 5px;
}

.single-services-item h3 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 18px;
}

.single-services-item h3 a {
  color: var(--headingColor);
  text-decoration: none;
}

.single-services-item p {
  margin-bottom: 25px;
}

.single-services-item.style-details .count {
  font-weight: 500;
  font-size: 96px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #dae8f0;
  -webkit-user-select: none;
  user-select: none;
  position: absolute;
  top: 90px;
  right: 100px;
  line-height: 1;
}

.single-services-item.style-details .icon {
  width: 86px;
  height: 86px;
  line-height: 86px;
  text-align: center;
  border-radius: 5px;
  background-color: var(--whiteColor);
}

.single-services-item.style-details.style-two .count {
  right: 0;
}

.generate-content {
  margin-right: -18px;
}

.generate-img {
  margin-left: 35px;
}

.instruction-area {
  background-image: url(../../assets/images/instruction-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.instruction-area.bg-2 {
  background-image: unset;
}

.single-instruction {
  background-color: #1c2025;
  border-radius: 3px;
  padding: 35px 30px;
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.single-instruction .counts {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: #222a31;
  border-radius: 50px;
  position: absolute;
  top: -24px;
  right: 15px;
  transition: var(--transition);
}

.single-instruction .count {
  font-weight: 500;
  font-size: 36px;
  display: inline-block;
  background: -webkit-linear-gradient(
    180deg,
    #c9cafc 0%,
    #efccd1 53.65%,
    #f9c177 100%
  );
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0);
  color: #1c2025;
}

.single-instruction h3 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 7px;
  color: var(--whiteColor);
  padding-right: 60px;
}

.single-instruction p {
  color: #f2f8fd;
}

.single-instruction:hover {
  background-color: var(--mainColor);
}

.single-instruction:hover .counts {
  background: #7d7af1;
  box-shadow: 0px 4px 100px rgba(149, 147, 198, 0.38);
}

.single-instruction:hover .count {
  font-weight: 500;
  font-size: 36px;
  display: inline-block;
  background: -webkit-linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 53.65%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0);
  color: #7d7af1;
}

.single-instruction.active {
  background-color: var(--mainColor);
}

.single-instruction.active .counts {
  background: #7d7af1;
  box-shadow: 0px 4px 100px rgba(149, 147, 198, 0.38);
}

.single-instruction.active .count {
  font-weight: 500;
  font-size: 36px;
  display: inline-block;
  background: -webkit-linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 53.65%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0);
  color: #7d7af1;
}

.single-instruction.style-two {
  background-color: #7d7af1;
  border-radius: 10px;
}

.single-instruction.style-two .counts {
  background-color: #7d7af1;
  width: auto;
  height: auto;
  line-height: unset;
  top: 22px;
  right: 28px;
}

.single-instruction.style-two .count {
  font-weight: 500;
  font-size: 36px;
  display: inline-block;
  background: -webkit-linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 53.65%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0);
  color: #7d7af1;
}

.single-instruction.style-two:hover {
  background-color: var(--headingColor);
}

.single-instruction.style-two:hover .counts {
  background-color: var(--headingColor);
}

.single-instruction.style-two:hover .count {
  background: -webkit-linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 53.65%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0);
  color: var(--headingColor);
}

.single-instruction.style-two.active {
  background-color: var(--headingColor);
}

.single-instruction.style-two.active .counts {
  background-color: var(--headingColor);
}

.single-instruction.style-two.active .count {
  background: -webkit-linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 53.65%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0);
  color: var(--headingColor);
}

.instruction-btn {
  margin-top: 50px;
}

.instruction-btn .default-btn {
  margin-right: 15px;
  padding: 16px 35px;
}

.instruction-btn .default-btn:last-child {
  margin-right: 0;
}

.instruction-btn .default-btn.active {
  background: linear-gradient(
    94.39deg,
    var(--headingColor) 0%,
    var(--headingColor)
  );
}

.instruction-btn .default-btn.active span {
  background: linear-gradient(
    94.39deg,
    #c9cafc 0%,
    #efccd1 53.65%,
    #f9c177 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
  text-fill-color: rgba(0, 0, 0, 0);
  height: 17px;
}

.single-pricing {
  background-color: #f2f8fd;
  border-radius: 3px;
  transition: var(--transition);
  margin-bottom: 30px;
  padding-top: 43px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 39px;
}

.single-pricing .pricing-header h3 {
  font-size: 24px;
  line-height: 32.4px;
  margin-bottom: 8px;
}

.single-pricing .pricing-header p {
  margin-bottom: 40px;
}

.single-pricing .pricing-header h1 {
  font-size: 48px;
  line-height: 15px;
  margin-bottom: 45px;
}

.single-pricing .pricing-header h1 sub {
  font-size: 15px;
  color: var(--bodyColor);
  font-weight: 400;
  margin-left: -10px;
}

.single-pricing .default-btn {
  margin-bottom: 30px;
}

.single-pricing .features-list li {
  margin-bottom: 13px;
}

.single-pricing .features-list li:last-child {
  margin-bottom: 0;
}

.single-pricing .features-list li i {
  font-size: 24px;
  color: var(--mainColor);
}

.single-pricing .features-list li p {
  font-size: 17px;
  color: var(--headingColor);
  margin-bottom: 0;
  margin-left: 12px;
  text-transform: capitalize;
}

.single-pricing.style-two {
  background-color: var(--whiteColor);
  border-radius: 3px;
}

.single-pricing.active {
  background-color: #8d8aff;
  border-radius: 3px;
}

.single-pricing.active .pricing-header h3 {
  color: var(--whiteColor);
}

.single-pricing.active .pricing-header p {
  color: #d8deed;
}

.single-pricing.active .pricing-header h1 {
  color: var(--whiteColor);
}

.single-pricing.active .pricing-header h1 sub {
  color: #d8deed;
}

.single-pricing.active .default-btn img {
  filter: brightness(100);
}

.single-pricing.active .features-list li i {
  color: #efccd1;
}

.single-pricing.active .features-list li p {
  color: var(--whiteColor);
}

.pricing-content {
  margin-bottom: 30px;
}

.standard-content {
  max-width: 1137px;
  margin: auto;
  text-align: center;
}

.standard-content h2 {
  font-size: 60px;
  line-height: 81px;
  margin-bottom: 33px;
}

.standard-content .info img {
  border: 2px solid var(--whiteColor);
  border-radius: 100px;
}

.standard-content .info h4 {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 9px;
}

.standard-content .info span {
  font-family: var(--paragraphFontFamily);
  font-size: 13px;
  line-height: 26px;
}

.standard-slide {
  position: relative;
}

.standard-slide .swiper-controller {
  max-width: 520px;
  margin: auto;
  position: absolute;
  bottom: 11px;
  left: 0;
  right: 0;
  z-index: 1;
}

.increase-content {
  background-image: url(../../assets/images/increase-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.increase-content p {
  font-size: 17px;
  margin-top: 21px;
}

.increase-content.bg-2 {
  background-image: url(../../assets/images/increase-bg-2.jpg);
}

.increase-content.bg-2 .top-title {
  color: var(--whiteColor);
}

.increase-content.bg-2 .top-title::before {
  background-color: var(--whiteColor);
}

.increase-content.bg-2 h2 {
  color: var(--whiteColor);
}

.increase-content.bg-2 h2 span {
  color: #efccd1;
}

.increase-content.bg-2 p {
  color: #f2f8fd;
}

.increase-content.bg-3 {
  background-image: unset;
}

.increase-btn {
  margin-top: 30px;
}

.increase-btn .default-btn {
  margin-right: 15px;
  padding: 16px 35px;
}

.increase-btn .default-btn:last-child {
  margin-right: 0;
}

.increase-btn .default-btn.active {
  background: linear-gradient(
    94.39deg,
    var(--headingColor) 0%,
    var(--headingColor)
  );
}

.increase-btn .default-btn.active span {
  background: linear-gradient(
    94.39deg,
    #c9cafc 0%,
    #efccd1 53.65%,
    #f9c177 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
  text-fill-color: rgba(0, 0, 0, 0);
}

.increase-btn .default-btn.bg-white {
  color: var(--mainColor);
}

.trusted-content h2 {
  font-size: 40px;
  line-height: 54px;
  margin-bottom: 0;
}

.trusted-logo {
  cursor: pointer;
}

.trusted-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 21.6px;
  text-align: center;
  margin-bottom: 22px;
}

.single-unlock {
  text-align: center;
  margin-bottom: 30px;
}

.single-unlock .icon {
  margin-bottom: 27px;
}

.single-unlock h3 {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 36px;
}

.single-unlock .unlock-grid {
  background-color: #e9ffe8;
  border-radius: 3px;
  padding: 30px;
  margin-bottom: 15px;
}

.single-unlock .unlock-grid:last-child {
  margin-bottom: 0;
}

.single-unlock .unlock-grid p {
  font-weight: 500;
  font-size: 17px;
  color: var(--headingColor);
}

.single-unlock .unlock-grid p span {
  color: #718a96;
}

.review-area.bg-1 {
  background-image: url(../../assets/images/review/review-bg.jpg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 190px;
  padding-bottom: 190px;
  position: relative;
}

.review-area.bg-1::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 525px;
  height: 100%;
  background-color: #f2f8fd;
}

.single-review1 {
  max-width: 575px;
  margin-left: auto;
  background-color: var(--whiteColor);
  padding: 40px 50px;
  position: relative;
  margin-top: 15px;
}

.single-review1 .quot {
  position: absolute;
  top: -15px;
  left: 40px;
}

.single-review1 .start-list {
  margin-bottom: 13px;
}

.single-review1 .start-list li {
  display: inline-block;
}

.single-review1 p {
  font-family: var(--bodyFontFamily);
  font-weight: 500;
  font-size: 17px;
  color: var(--headingColor);
  margin-bottom: 26px;
}

.single-review1 h3 {
  font-size: 18px;
  line-height: 18px;
}

.single-review1 span {
  font-weight: 400;
  font-size: 13px;
  font-family: var(--paragraphFontFamily);
}

.single-review1 .review-img {
  border-radius: 100px;
  width: 56px;
  height: 56px;
}

.review-slide.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  max-width: 575px;
  margin-left: auto;
  margin-right: 0;
}

.review-slide .swiper-pagination1 {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 1;
  padding-right: 40px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #c9cafc;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}

.single-feedback {
  background-color: #ebe7f2;
  padding: 40px 30px;
  margin-bottom: 30px;
  border-radius: 3px;
}

.single-feedback h3 {
  font-size: 18px;
}

.single-feedback span {
  font-size: 15px;
}

.single-feedback p {
  font-size: 17px;
  font-weight: 500;
}

.single-blog {
  background-color: #fff;
  border-radius: 3px;
  padding: 40px 30px;
  padding-bottom: 26px;
  margin-bottom: 30px;
  transition: var(--transition);
}

.single-blog .date-tag {
  margin-bottom: 20px;
}

.single-blog .date-tag li {
  display: inline-block;
  margin-right: 30px;
}

.single-blog .date-tag li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.single-blog .date-tag li span {
  font-weight: 500;
  font-size: 14px;
  margin-left: 10px;
}

.single-blog h3 {
  margin-bottom: 35px;
}

.single-blog h3 a {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-decoration: none;
  color: var(--headingColor);
}

.single-blog:hover {
  transform: translateY(-5px);
}

.single-contact-info {
  border-radius: 3px;
  background-color: #ebe7f2;
  padding: 45px 30px;
  margin-bottom: 20px;
}

.single-contact-info:last-child {
  margin-bottom: 0;
}

.single-contact-info i {
  width: 66px;
  height: 66px;
  line-height: 66px;
  font-size: 32px;
  border-radius: 50px;
  display: inline-block;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  text-align: center;
}

.single-contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.single-contact-info a {
  text-decoration: none;
  font-family: var(--paragraphFontFamily);
  display: block;
  margin-bottom: 7px;
}

.single-contact-info a:last-child {
  margin-bottom: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 590px;
  display: block;
}

.contact-form-wrap {
  background-color: var(--whiteColor);
  padding: 35px 50px;
  border-radius: 3px;
}

.contact-form-wrap h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-form-wrap .form-group {
  margin-bottom: 25px;
}

.contact-form-wrap .form-group label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 11px;
}

.contact-form-wrap .form-group .form-control {
  background-color: var(--whiteColor);
  border-color: #e3eaef;
  border-radius: 5px;
  padding-left: 50px;
}

.contact-form-wrap .form-group .form-control:focus {
  border-color: var(--mainColor);
}

.contact-form-wrap .form-group .textarea i {
  top: 22px;
}

.contact-form-wrap .form-group i {
  font-size: 20px;
  color: #a9a9c8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

.follow-us ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.follow-us ul li {
  border-radius: 3px;
  background-color: #ebe7f2;
  position: relative;
  padding: 25px 20px;
  margin-bottom: 20px;
}

.follow-us ul li:last-child {
  margin-bottom: 0;
}

.follow-us ul li .infos .icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid #dae8f0;
  display: inline-block;
  background-color: var(--whiteColor);
  color: #4267b2;
  font-size: 20px;
  box-shadow: 0px 4px 20px rgba(84, 196, 217, 0.1);
  transition: var(--transition);
}

.follow-us ul li .infos h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  margin-left: 20px;
  margin-right: 30px;
}

.follow-us ul li .infos span {
  font-size: 15px;
  color: #718a96;
  font-family: var(--paragraphFontFamily);
}

.follow-us ul li a {
  text-decoration: none;
  font-size: 20px;
  color: var(--headingColor);
  position: relative;
  top: 8px;
}

.follow-us ul li a:hover {
  color: var(--mainColor) !important;
}

.follow-us ul li:nth-child(2) .infos i {
  color: #f61c0d;
}

.follow-us ul li:nth-child(3) .infos i {
  color: #1da1f3;
}

.follow-us ul li:nth-child(4) .infos i {
  background: #d6249f;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.follow-us ul li:nth-child(5) .infos i {
  color: #d32f2f;
}

.follow-us ul li:nth-child(6) .infos i {
  color: #12c64b;
}

.follow-us ul li .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.follow-us ul li:hover .infos .icon {
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

.follow-us ul li:hover .infos .icon i {
  color: var(--whiteColor) !important;
}

.faq-content {
  max-width: 872px;
  margin: auto;
}

.faq-content .accordion-header {
  border: none !important;
}

.faq-content .accordion {
  border: none;
}

.faq-content .accordion .accordion-item {
  margin-bottom: 15px;
  border-radius: 3px;
  border: none;
  background-color: var(--whiteColor);
  padding: 38px 30px;
}

.faq-content .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-content .accordion .accordion-item .accordion-button {
  background-color: var(--whiteColor);
  font-weight: 500;
  font-size: 18px;
  color: var(--headingColor);
  padding: 0;
}

.faq-content .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}

.faq-content .accordion .accordion-item .accordion-button::after {
  content: "";
  background-image: unset;
  font-family: remixicon !important;
  font-size: 24px;
  color: #99a9b8;
}

.faq-content .accordion .accordion-item .accordion-button:not(.collapsed) {
  border-color: #808cff;
  box-shadow: none;
}

.faq-content
  .accordion
  .accordion-item
  .accordion-button:not(.collapsed)::after {
  content: "";
  background-image: unset;
  font-family: remixicon !important;
  font-size: 24px;
  color: var(--mainColor);
  transform: unset;
}

.faq-content .accordion .accordion-item:first-of-type .accordion-button {
  border-radius: 3px;
}

.faq-content
  .accordion
  .accordion-item:last-of-type
  .accordion-button.collapsed {
  border-radius: 3px;
}

.faq-content .accordion .accordion-item .accordion-body {
  padding: 0;
  border-top: 1px solid #ebe7f2;
  padding-top: 17px;
  margin-top: 20px;
}

.faq-content .accordion .accordion-item .accordion-body p {
  font-size: 17px;
  color: var(--bodyColor);
}

.member-account {
  background-color: var(--whiteColor);
  padding: 35px 50px;
  border-radius: 3px;
  max-width: 530px;
  margin: auto;
}

.member-account h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.member-account p {
  margin-bottom: 25px;
}

.member-account p a {
  text-decoration: none;
  color: var(--mainColor);
}

.member-account .google-btn {
  border-radius: 5px;
  border: 1px solid #e3eaef;
  background-color: rgba(0, 0, 0, 0);
  color: var(--bodyColor);
  width: 100%;
  display: block;
}

.member-account .or {
  position: relative;
  display: block;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
}

.member-account .or::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #f5f4f6;
  z-index: -1;
}

.member-account .or span {
  background-color: var(--whiteColor);
  position: relative;
  z-index: 1;
  padding: 0 20px;
  color: #a9a9c8;
  font-size: 14px;
  font-family: var(--paragraphFontFamily);
}

.member-account .member-form .form-group {
  margin-bottom: 25px;
}

.member-account .member-form .form-group label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 11px;
}

.member-account .member-form .form-group .form-control {
  background-color: var(--whiteColor);
  border-color: #e3eaef;
  border-radius: 5px;
  padding-left: 50px;
}

.member-account .member-form .form-group .form-control:focus {
  border-color: var(--mainColor);
}

.member-account .member-form .form-group i {
  font-size: 20px;
  color: #a9a9c8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

.member-account .member-form .form-group .password-toggle-icon {
  left: auto;
  right: 20px;
  cursor: pointer;
}

.member-account .member-form .form-group .form-check label {
  font-weight: 400;
}

.member-account .member-form .form-group a {
  text-decoration: none;
  color: var(--mainColor);
  font-size: 15px;
  font-family: var(--paragraphFontFamily);
}

.masonrow {
  -moz-column-width: 25em;
  -webkit-column-width: 25em;
  -moz-column-gap: 1.6em;
  -webkit-column-gap: 1.6em;
}

.masonrow .item {
  width: 100%;
  margin-bottom: 30px;
  display: inline-block;
}

.sidebar-widget-wrap .single-sidebar-widget {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  padding: 35px 25px;
  border-radius: 10px;
}

.sidebar-widget-wrap .single-sidebar-widget h3 {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eef4fa;
}

.sidebar-widget-wrap .single-sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-widget-wrap .single-sidebar-widget .src-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.sidebar-widget-wrap .single-sidebar-widget .src-form .form-group i {
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 20px;
  transform: translateY(-50%);
  color: #a9a9c8;
}

.sidebar-widget-wrap
  .single-sidebar-widget
  .src-form
  .form-group
  .form-control {
  background-color: var(--whiteColor);
  border-color: #e3eaef;
  border-radius: 5px;
  padding-left: 50px;
}

.sidebar-widget-wrap
  .single-sidebar-widget
  .src-form
  .form-group
  .form-control:focus {
  border-color: var(--mainColor);
}

.sidebar-widget-wrap
  .single-sidebar-widget
  .src-form
  .form-group
  .form-control::placeholder {
  font-family: var(--paragraphFontFamily);
}

.sidebar-widget-wrap .single-sidebar-widget .src-form .default-btn {
  border: none;
  border-radius: 10px;
}

.sidebar-widget-wrap .single-sidebar-widget .category-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.sidebar-widget-wrap .single-sidebar-widget .category-list li {
  border-bottom: 1px solid #eef4fa;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.sidebar-widget-wrap .single-sidebar-widget .category-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-widget-wrap .single-sidebar-widget .category-list li a {
  text-decoration: none;
  font-family: var(--paragraphFontFamily);
}

.sidebar-widget-wrap .single-sidebar-widget .category-list li .count {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50px;
  background: rgba(141, 138, 255, 0.1);
  border-radius: 50px;
  color: var(--mainColor);
  transition: var(--transition);
  font-family: var(--bodyFontFamily);
  font-weight: 500;
}

.sidebar-widget-wrap .single-sidebar-widget .category-list li:hover .count {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.sidebar-widget-wrap .single-sidebar-widget .trending-post {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.sidebar-widget-wrap .single-sidebar-widget .trending-post li {
  border-bottom: 1px solid #eef4fa;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.sidebar-widget-wrap .single-sidebar-widget .trending-post li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-widget-wrap .single-sidebar-widget .trending-post li a {
  text-decoration: none;
}

.sidebar-widget-wrap .single-sidebar-widget .trending-post li a img {
  width: 87px;
  height: 95px;
  border-radius: 3px;
}

.sidebar-widget-wrap .single-sidebar-widget .trending-post li a i {
  color: var(--mainColor);
  position: relative;
  top: -2px;
  margin-right: 5px;
}

.sidebar-widget-wrap .single-sidebar-widget .trending-post li a span {
  font-weight: 500;
  font-size: 14px;
  color: var(--bodyColor);
}

.sidebar-widget-wrap .single-sidebar-widget .trending-post li a h4 {
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 0;
  transition: var(--transition);
}

.sidebar-widget-wrap .single-sidebar-widget .trending-post li a:hover h4 {
  color: var(--mainColor);
}

.sidebar-widget-wrap .single-sidebar-widget .tag-grid {
  padding-left: 0;
  margin-bottom: -15px;
  margin-right: -15px;
  list-style: none;
}

.sidebar-widget-wrap .single-sidebar-widget .tag-grid li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
}

.sidebar-widget-wrap .single-sidebar-widget .tag-grid li a {
  background: rgba(141, 138, 255, 0.1);
  border-radius: 5px;
  padding: 8px 8px;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mainColor);
  font-size: 13px;
  letter-spacing: 0.52px;
  font-family: var(--paragraphFontFamily);
}

.sidebar-widget-wrap .single-sidebar-widget .tag-grid li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.details-content .blog-details-part {
  background-color: var(--whiteColor);
  padding: 25px;
  border-radius: 0 0 3px 3px;
  margin-bottom: 20px;
}

.details-content .blog-details-part.rounded-3 {
  border-radius: 3px;
}

.details-content .blog-details-part:last-child {
  margin-bottom: 0;
}

.details-content .details-img img {
  border-radius: 3px 3px 0 0;
}

.details-content .blog-info {
  margin-bottom: 15px;
}

.details-content .blog-info li {
  display: inline-block;
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 13px;
}

.details-content .blog-info li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: #718a96;
}

.details-content .blog-info li a {
  text-decoration: none;
}

.details-content .blog-info li a img {
  width: 30px;
  border-radius: 50px;
  margin-right: 10px;
}

.details-content .blog-info li a i {
  margin-right: 5px;
  position: relative;
  top: -1px;
}

.details-content .blog-info li a:hover {
  color: var(--mainColor);
}

.details-content .blog-info li:last-child::before {
  display: none;
}

.details-content h2 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 15px;
}

.details-content .list {
  padding-left: 0;
  position: relative;
  padding-left: 20px;
}

.details-content .list .count {
  position: absolute;
  top: 0;
  left: 0;
}

.details-content .list .hilight {
  color: var(--headingColor);
  font-weight: 500;
}

.details-content h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 15px;
}

.details-content blockquote {
  background: #e9ffe8;
  border-radius: 5px;
  padding: 30px;
  padding-left: 50px;
}

.details-content blockquote img {
  margin-right: 40px;
}

.details-content blockquote p {
  font-size: 17px;
  font-family: var(--paragraphFontFamily);
  font-weight: 500;
}

.details-content blockquote h4 {
  font-weight: 600;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 0;
}

.details-content .mb-15 {
  margin-bottom: 15px;
}

.details-content .tag-social .tag span {
  font-weight: 600;
  font-size: 18px;
  color: var(--headingColor);
  font-family: var(--headingFontFamily);
  margin-right: 10px;
}

.details-content .tag-social .tag li {
  margin-right: 10px;
}

.details-content .tag-social .tag li:last-child {
  margin-right: 0;
}

.details-content .tag-social .tag li a {
  background: rgba(141, 138, 255, 0.1);
  border-radius: 5px;
  padding: 8px 8px;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mainColor);
  font-size: 13px;
  letter-spacing: 0.52px;
  font-family: var(--paragraphFontFamily);
}

.details-content .tag-social .tag li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.details-content .tag-social .social-link li span {
  font-weight: 500;
  font-size: 18px;
  color: var(--headingColor);
  font-family: var(--headingFontFamily);
  margin-right: 10px;
}

.details-content .tag-social .social-link li a {
  background-color: #ebe7f2;
  text-decoration: none;
  padding: 5px 10px;
  display: inline-block;
  font-size: 18px;
  color: var(--mainColor);
}

.details-content .tag-social .social-link li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.details-content .tag-social .social-link li:nth-child(2) a {
  border-radius: 5px 0 0 5px;
}

.details-content .tag-social .social-link li:nth-child(5) a {
  border-radius: 0 5px 5px 0;
}

.details-content .comments .comment-list h4 {
  font-weight: 500;
  font-size: 18px;
}

.details-content .comments .comment-list span {
  font-size: 13px;
  margin-bottom: 15px;
  display: block;
}

.details-content .comments .comment-list li {
  position: relative;
}

.details-content .comments .comment-list li .flex-grow-1 {
  border-bottom: 1px solid #eef4fa;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.details-content .comments .comment-list li:last-child .flex-grow-1 {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.details-content .comments .comment-list li .reply {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 500;
  font-size: 15px;
  font-family: var(--headingFontFamily);
  border: none;
  color: var(--mainColor);
  background-color: rgba(0, 0, 0, 0);
}

.main-content-text h1,
.main-content-text h2,
.main-content-text h3,
.main-content-text h4,
.main-content-text h5,
.main-content-text h6 {
  margin-bottom: 15px;
}

.main-content-text h1 {
  font-size: 30px;
}

.main-content-text h2 {
  font-size: 26px;
}

.main-content-text h3 {
  font-size: 22px;
}

.main-content-text h4 {
  font-size: 22px;
}

.main-content-text h5 {
  font-size: 20px;
}

.main-content-text h6 {
  font-size: 18px;
}

.main-content-text .gap-20 {
  margin-bottom: 30px;
}

.main-content-text p {
  color: #687693;
}

.main-content-text ul {
  padding: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-content-text ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
}

.main-content-text ul li:last-child {
  margin-bottom: 0;
}

.main-content-text ul li i {
  position: absolute;
  top: -6px;
  left: 0;
  color: ar(--mainColor);
  font-size: 25px;
}

.main-content-text ol {
  padding-left: 18px;
  color: var(--bodyColor);
}

.main-content-text ol li {
  margin-bottom: 20px;
  color: var(--bodyColor);
}

.main-content-text ol li::marker {
  color: ar(--mainColor);
}

.main-content-text ol li:last-child {
  margin-bottom: 0;
}

.main-content-text a {
  color: var(--mainColor);
}

.main-content-text a:hover {
  text-decoration: underline;
}

.main-content-text .content-gap-mb-20 {
  margin-bottom: 20px;
}

.main-content-text .content-gap-mb-30 {
  margin-bottom: 30px;
}

.main-content-text .update {
  display: block;
  margin-bottom: 30px;
}

.error-content h1 {
  font-size: 400px;
  line-height: 1;
  margin-top: -40px;
  color: var(--mainColor);
}

.error-content h1 span {
  color: rgba(252, 239, 150, 0.5);
  -webkit-text-stroke: 1px #808cff;
  user-select: none;
}

.error-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.error-content p {
  margin-bottom: 30px;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@keyframes moveBounce {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes off-on {
  0% {
    opacity: 0;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes radius {
  00% {
    border-radius: 100%;
  }

  50% {
    border-radius: 0;
  }

  100% {
    border-radius: 100%;
  }
}

#preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  position: fixed;
  background-color: var(--whiteColor);
}

#preloader .preloader {
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}

#preloader .preloader .loader {
  position: relative;
  overflow: hidden;
  display: block;
  height: 150px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}

#preloader .preloader .loader div {
  height: 100%;
}

#preloader .preloader .loader,
#preloader .preloader .loader div {
  padding: 8px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0);
  animation: rotate linear 3.5s infinite;
  border-top-color: var(--mainColor);
  border-border-bottom: var(--mainColor);
}

#preloader .preloader .waviy {
  margin-top: 20px;
  position: relative;
  text-align: center;
  -webkit-box-reflect: below -47px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  font-size: 60px;
  font-weight: 700;
}

#preloader .preloader .waviy span {
  position: relative;
  color: var(--headingColor);
  animation-delay: 0.1s;
  display: inline-block;
  animation: waviy 1s infinite;
}

#preloader .preloader .waviy span:nth-child(2) {
  animation-delay: 0.2s;
}

#preloader .preloader .waviy span:nth-child(3) {
  animation-delay: 0.3s;
}

#preloader .preloader .waviy span:nth-child(4) {
  animation-delay: 0.4s;
}

#preloader .preloader .waviy span:nth-child(5) {
  animation-delay: 0.5s;
}

#preloader .preloader .waviy span:nth-child(6) {
  animation-delay: 0.6s;
}

#preloader .preloader .waviy span:nth-child(7) {
  animation-delay: 0.7s;
}

#preloader .preloader .waviy span:nth-child(8) {
  animation-delay: 0.8s;
}

#preloader .preloader .waviy span:nth-child(9) {
  animation-delay: 0.9s;
}

#preloader .preloader .waviy span:nth-child(10) {
  animation-delay: 1s;
}

#preloader .preloader .waviy span:nth-child(11) {
  animation-delay: 1.1s;
}

#preloader .preloader .waviy span:nth-child(12) {
  animation-delay: 1.2s;
}

#preloader .preloader .waviy span:nth-child(13) {
  animation-delay: 1.3s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes waviy {
  0%,
  40%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-20px);
  }
}

@media only screen and (max-width: 767px) {
  #preloader .preloader .waviy {
    font-size: 40px;
  }
}

.pagination-area {
  margin-top: 20px;
}

.pagination-area .page-numbers {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-weight: 500;
  font-size: 16px;
  color: var(--headingColor);
  text-decoration: none;
  transition: var(--transition);
  border-radius: 50px;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
}

.pagination-area .page-numbers i {
  font-size: 22px;
  font-weight: normal;
  color: var(--headingColor);
  transition: var(--transition);
  font-weight: 500;
}

.pagination-area .page-numbers:hover {
  color: var(--headingColor);
  background-color: var(--whiteColor);
  box-shadow: var(--boxShadow);
}

.pagination-area .page-numbers.next {
  top: 5px;
}

.pagination-area .page-numbers.next:hover {
  color: var(--headingColor);
}

.pagination-area .page-numbers.current {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
}

.dark-mode-btn {
  position: fixed;
  bottom: 25px;
  right: 12px;
  z-index: 1;
  width: 70px;
}

.dark-mode-btn .dark-version {
  text-align: center;
  float: right;
  z-index: 2;
  position: relative;
}

.dark-mode-btn .dark-version .switch {
  width: 49px;
  height: 49px;
  position: relative;
  border-radius: 50%;
  margin-bottom: -19px;
}

.dark-mode-btn .dark-version .switch input {
  width: 0;
  height: 0;
  opacity: 0;
  display: block;
}

.dark-mode-btn .dark-version .slider {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  position: absolute;
  color: var(--whiteColor);
  background-color: #2e2e2e;
  transition: var(--transition);
}

.dark-mode-btn .dark-version .slider:before {
  left: 0;
  top: 50%;
  right: 0;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
  font-size: 22px;
  font-family: remixicon !important;
}

.dark-mode-btn .dark-version .slider.round {
  border-radius: 50%;
}

.dark-mode-btn .dark-version .slider.round:before {
  border-radius: 50%;
}

.dark-mode-btn .dark-version input:checked + .slider {
  background-color: #efefef;
}

.dark-mode-btn .dark-version input:checked + .slider:before {
  color: var(--headingColor);
  content: "";
}

/*# sourceMappingURL=style.css.map */

#paymentModalOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Modal Style */
#paymentModal {
  display: none;
  position: fixed;
  top: 25%;
  left: 35%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  max-width: 400px;
  width: 90%; /* Adjusts for smaller screens */
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  border-radius: 8px;
}

/* Buttons inside the modal */
#paymentModal button {
  margin-top: 10px;
}

/* Responsive Styles for Mobile Screens */
@media screen and (max-width: 768px) {
  #paymentModalOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  /* Modal Style */
  #paymentModal {
    display: none;
    position: fixed;
    top: 25%;
    left: 10%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 8px;
  }

  /* Buttons inside the modal */
  #paymentModal button {
    margin-top: 10px;
  }
}
