:root {
  --primary-color: #645832;
  --secondary-color: #333333;
  --border-color-01: #33333321;
  --white-color: #faf8f2;
  --background-color: #faf8f2;
  --bg-light: #faf8f2;
  --body-color: #666666;
  --primary-font: "Halant", sans-serif;
  --secondary-font: "Work Sans", sans-serif;
}
/*----------------------- Start Comman CSS --------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--white-color);
  font-size: 16px;
  line-height: 160%;
  margin: 0;
  float: left;
  width: 100%;
  color: var(--body-color);
  font-weight: 500;
  font-family: var(--secondary-font);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 130%;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
  padding: 0;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  font-family: var(--primary-font);
}
p {
  margin: 0;
  padding: 0;
}
h2 {
  font-family: var(--primary-font);
  font-size: 40px;
}
h2 span {
  color: var(--primary-color);
}
h4 {
  font-size: 22px;
}
html {
  scroll-behavior: smooth;
}
.feature-list,
.theme-tutorial,
.banner,
.blog-pages,
.home-pages {
  margin-bottom: 80px;
}
.mobile-view,
.feature-list,
.accordion-tabs,
.elementer-setting,
.banner {
  padding: 100px 0;
  background: var(--bg-light);
}
a {
  float: left;
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 500;
}
section {
  float: left;
  width: 100%;
}
.box-shadow {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}
.page {
  float: left;
  width: 100%;
}

.header-inner-con {
  margin: 0;
  padding: 0 30px;
}
/* Modal Content/Box */

.modal-content {
  background-color: #faf8f2;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 30px;
  width: 628px;
  /* Could be more or less, depending on screen size */
  position: relative;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.8);
  text-align: center;
  border-radius: 0;
}

.modal-content .modal-button.btn-default {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: auto;
  text-align: center;
  padding: 12px 18px;
  margin-top: 20px;
  text-transform: capitalize;
  font-size: 14px;
  background: #24303f;
  z-index: 1;
  border: none;
}

.modal-content .modal-button.btn-default::before {
  border-bottom-color: #3d5265;
}

@media (max-width: 700px) {
  .modal-content .modal-button.btn-default {
    padding: 8px 16px;
  }
  .modal-header .modal-title {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 22px;
  }
}

/*---------------------- The Modal (background) -----------------------------------*/

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1050;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.6);
  /* Black w/ opacity */
}

.modal-header {
  text-align: center;
}

.header-inner .btn:focus,
.header-inner .btn:active,
.header-inner .btn:hover {
  color: #fff;
}
.modal-header .modal-title {
  margin: 15px 0 0;
  font: 600 20px / 28px "";
  text-transform: capitalize;
  color: #111;
  font-family: var(--primary-font);
}

.modal-header .modal-title .subTitle {
  background: #5ab4d1;
  color: #fff;
  margin: 0 8px;
  padding: 4px;
  font-weight: 600;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
}

.modal-header a.enter-password {
  margin-left: 8px;
  float: none;
  width: auto;
  display: inline-block;
  vertical-align: top;
}

svg.preview-password:hover {
  fill: #5ab4d1;
}

/* The Close Button */

.close {
  color: #111;
  float: right;
  font-size: 28px;
  position: absolute;
  right: 10px;
  top: 6px;
  left: auto;
  bottom: auto;
  background: none;
  border: none;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  outline: none;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

@media (max-width: 700px) {
  .modal-content {
    padding: 20px;
    width: 400px;
  }

  .close {
    font-size: 24px;
  }

  .modal-header .modal-title {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 400px) {
  .modal-content {
    width: 290px;
  }
}

@media (max-width: 1600px) {
  .feature-list,
  .theme-tutorial,
  .banner,
  .blog-pages,
  .home-pages {
    margin-bottom: 80px;
  }
  .mobile-view,
  .feature-list,
  .accordion-tabs,
  .elementer-setting,
  .banner {
    padding: 80px 0;
  }
  h2 {
    font-size: 38px;
  }
}
@media (max-width: 1400px) {
  .feature-list,
  .theme-tutorial,
  .banner,
  .blog-pages,
  .home-pages {
    margin-bottom: 70px;
  }
  .mobile-view,
  .feature-list,
  .accordion-tabs,
  .elementer-setting,
  .banner {
    padding: 70px 0;
  }
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 1199px) {
  .feature-list,
  .theme-tutorial,
  .banner,
  .blog-pages,
  .home-pages {
    margin-bottom: 60px;
  }
  .mobile-view,
  .feature-list,
  .accordion-tabs,
  .elementer-setting,
  .banner {
    padding: 60px 0;
  }
  h2 {
    font-size: 34px;
  }
  h4 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .feature-list,
  .theme-tutorial,
  .banner,
  .blog-pages,
  .home-pages {
    margin-bottom: 50px;
  }
  .mobile-view,
  .feature-list,
  .accordion-tabs,
  .elementer-setting,
  .banner {
    padding: 50px 0;
  }
  h2 {
    font-size: 32px;
  }
  h4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .feature-list,
  .theme-tutorial,
  .banner,
  .blog-pages,
  .home-pages {
    margin-bottom: 40px;
  }
  .mobile-view,
  .feature-list,
  .accordion-tabs,
  .elementer-setting,
  .banner {
    padding: 40px 0;
  }
  h2 {
    font-size: 30px;
  }
  ul.password-wrap li.password-wrapper {
    width: 100%;
    margin: 0 0 15px;
  }
}

@media (max-width: 575px) {
  .feature-list,
  .theme-tutorial,
  .banner,
  .blog-pages,
  .home-pages {
    margin-bottom: 35px;
  }
  .mobile-view,
  .feature-list,
  .accordion-tabs,
  .elementer-setting,
  .banner {
    padding: 35px 0;
  }
  body {
    font-size: 15px;
  }
  h2 {
    font-size: 26px;
  }
  h4 {
    font-size: 18px;
  }
}
@media (max-width: 481px) {
  .feature-list,
  .theme-tutorial,
  .banner,
  .blog-pages,
  .home-pages {
    margin-bottom: 30px;
  }
  .mobile-view,
  .feature-list,
  .accordion-tabs,
  .elementer-setting,
  .banner {
    padding: 30px 0;
  }
  body {
    font-size: 14px;
  }
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 320px) {
  h2 {
    font-size: 22px;
  }
  h4 {
    font-size: 16px;
  }
}
/*----------------------- End Comman CSS --------------------------*/
/*----------------------- Start Contrainer --------------------------*/
.container {
  max-width: 1530px;
  /* padding: 0; */
}
@media (max-width: 1600px) {
  .container {
    max-width: 1370px;
  }
}
@media (max-width: 1400px) {
  .container {
    max-width: 1170px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 740px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 15px;
    max-width: 100%;
  }
}
/*----------------------- End Contrainer --------------------------*/
/*----------------------- Start Button --------------------------*/
.btn-check:active + .btn:focus,
.btn-check:checked + .btn:focus,
.btn.active:focus,
.btn.show:focus,
.btn:active:focus,
.btn:active,
.btn:focus,
.btn:hover {
  box-shadow: none;
}
.btn {
  padding: 10px 25px;
  position: relative;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  overflow: hidden;
  z-index: 1;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.btn::after {
  content: "";
  height: 100%;
  width: 0;
  position: absolute;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  top: 0;
  left: auto;
  right: 0;
  z-index: -1;
}
img {
  max-width: 100%;
  height: auto;
}
.btn:focus::after,
.btn:active::after,
.btn:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.btn-primary.btn {
  color: var(--secondary-color);
  background-color: var(--bg-light);
}
.purchase-btn a.mobile-btn.btn.btn-secondary {
  border-radius: 50px;
}
.btn-secondary.btn {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.purchase-btn {
  display: none;
}
.btn:focus,
.btn:active,
.btn:hover {
  color: var(--secondary-color);
}
.btn-primary.btn::after,
.btn-secondary.btn::after {
  background-color: var(--white-color);
}
.compare-price-table .btn-secondary.btn::after {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.total-price-table .more-price .btn {
  color: var(--white-color);
}

@media (max-width: 991px) {
  .btn {
    padding: 7px 20px;
  }
}
@media (max-width: 575px) {
  .btn {
    font-size: 15px;
    padding: 6px 18px;
  }
}
@media (max-width: 481px) {
  .btn {
    font-size: 14px;
    padding: 5px 12px;
  }
}
/*----------------------- End Button --------------------------*/
/*----------------------- Start Page Box --------------------------*/
.page-box-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  align-items: center;
}
.page-box:last-child .page-box-title {
  margin-bottom: 0;
}
.page-box-title a {
  width: fit-content;
}
.page-box-title a:hover h4 {
  color: var(--primary-color);
}
.badge-text {
  border-radius: 20px;
  color: #fff;
  width: 100%;
  padding: 0px 14px;
  font-size: 14px;
}
.all-pages,
.page-main {
  gap: 60px;
  float: left;
  width: 100%;
}
main {
  overflow: hidden;
}
.page-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.page-box-img {
  padding: 24px;
  border: 0.2px solid #6458322e;
}
.page-box-img a {
  background-color: var(--body-color);
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 100%;
  height: auto;
}
.page-box-img a img {
  max-width: 100%;
  height: auto;
}
.page-box-img > a::after {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  visibility: hidden;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}

.home-pages .btn-secondary.btn::after {
  background: var(--secondary-color);
  color: var(--white-color);
}
.home-pages .btn-secondary.btn {
  color: var(--white-color) !important;
}
.home-pages .btn:hover {
  color: var(--white-color);
  background: var(--secondary-color);
}
.home-pages .btn {
  border-radius: 50px;
}
.page-box-img:hover > a::after {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  visibility: visible;
}
.section-title {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 50px;
}
@media (max-width: 1600px) {
  .section-title {
    margin-bottom: 46px;
  }
}
@media (max-width: 1400px) {
  .section-title {
    margin-bottom: 42px;
  }
  .page-box {
    gap: 14px;
  }
}
@media (max-width: 1200px) {
  .section-title {
    margin-bottom: 38px;
  }
}
@media (max-width: 1199px) {
  .section-title {
    margin-bottom: 34px;
  }
  .all-pages,
  .page-main {
    gap: 40px;
  }
  .page-box-img {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .section-title {
    gap: 8px;
    margin-bottom: 30px;
  }
  .all-pages,
  .page-main {
    gap: 30px;
  }
  .page-box-img {
    padding: 15px;
  }
  .page-box {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .section-title {
    gap: 6px;
    margin-bottom: 26px;
  }
  .page-box-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .section-title {
    gap: 4px;
    margin-bottom: 22px;
  }
  .page-box {
    gap: 8px;
  }
  .page-box-title {
    gap: 0;
    margin-bottom: 15px;
  }
}
/*----------------------- End Page Box --------------------------*/
/*----------------------- Start Header --------------------------*/
header {
  background-color: #000;
  z-index: 2;
}
header .nav-menu a {
  position: relative;
  padding: 7px 20px;
  margin: 0 3px;
  border-radius: 50px;
  color: var(--white-color);
  font-family: var(--primary-font);
  font-size: 20px;
}
header .nav-menu a::after {
  background-color: var(--primary-color);
}
header .nav-menu a:hover {
  color: var(--white-color);
}
.mobile-btn {
  display: none;
}
@media (max-width: 991px) {
  .nav-menu {
    display: none !important;
  }
  .logo {
    max-width: 165px;
  }
  .mobile-btn,
  .purchase-btn {
    display: block;
  }
  .header-inner .btn:focus,
  .header-inner .btn:active,
  .header-inner .btn:hover {
    color: var(--secondary-color);
  }
  .header-inner {
    justify-content: center !important;
  }
}
@media (max-width: 575px) {
  .logo {
    max-width: 150px;
  }
}
@media (max-width: 481px) {
  .logo {
    max-width: 135px;
  }
}
/*----------------------- End Header --------------------------*/
/*----------------------- Start Home Pages --------------------------*/
.home-pages {
  float: left;
  width: 100%;
  margin-top: 90px;
}
/*----------------------- End Home Pages --------------------------*/
/*----------------------- Start Service --------------------------*/
.service {
  padding: 70px 0 160px;
  background: var(--bg-light);
}
.service-box {
  gap: 12px;
  padding: 30px;
}
.service-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background-color: #64583200;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}
.service-icon .mask-icon {
  width: 50px;
  height: 50px;
  /* background-color: var(--primary-color); */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}
.service-icon h4 {
  font-family: var(--primary-font);
}
.service-box:hover .mask-icon {
  color: var(--white-color);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.service-box:hover .service-icon {
  background-color: var(--primary-color);
}
.service-box .mask-icon {
  color: var(--primary-color);
}
.service-box:hover h4 {
  color: var(--primary-color);
}
@media (max-width: 1199px) {
  .service-box {
    padding: 15px 0;
  }
  .service {
    padding: 60px 0 140px;
  }
}
@media (max-width: 991px) {
  .service {
    padding: 50px 0 120px;
  }
}
@media (max-width: 767px) {
  .service-box {
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .service-icon {
    margin-bottom: 5px;
  }
  .service-box {
    gap: 4px;
    padding: 12px 0;
  }
  .service {
    padding: 30px 0 120px;
  }
}
/*----------------------- End Service --------------------------*/
/*----------------------- Start theme-tutorial --------------------------*/
.theme-tutorial {
  float: left;
  width: 100%;
  margin-top: -100px;
  text-align: center;
  margin-bottom: 0;
}
.theme-tutorial .theme-preview {
  display: inline-block;
}
.theme-tutorial #tilt .popup_overlay1 {
  display: none;
  float: left;
  width: 100%;
  position: fixed;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  justify-content: center;
  z-index: 9;
  background: rgb(0 0 0 / 63%);
}
.theme-tutorial #tilt .popup_overlay1 .popup {
  display: inline-block;
  position: relative;
  width: 50%;
  max-width: 100%;
  max-height: 100%;
  padding: 20px;
  color: var(--white-color);
  vertical-align: middle;
  margin: 8% 0;
  z-index: 99999;
  float: none;
}
.theme-tutorial #tilt .popup_overlay1 .popup .popup_close1 {
  position: absolute;
  height: 20px;
  width: 20px;
  top: 5px;
  bottom: auto;
  right: 5px;
  left: auto;
  color: var(--white-color);
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
}
.theme-tutorial #tilt #popup_toggle .play-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 70px;
  width: 70px;
  cursor: pointer;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  visibility: hidden;
  color: var(--white-color);
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}
#popup_toggle img {
  max-width: 100%;
  height: auto;
}
.theme-tutorial #tilt:hover #popup_toggle .play-icon {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  visibility: visible;
}
.theme-tutorial #tilt #popup_toggle .play-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 70px;
  width: 70px;
  cursor: pointer;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  visibility: hidden;
  color: var(--white-color);
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}
.theme-tutorial #tilt #popup_toggle #playVideo i {
  line-height: 70px;
  font-size: 70px;
  float: none;
  display: inline-block;
  vertical-align: top;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}
.theme-tutorial #tilt #popup_toggle {
  position: relative;
  overflow: hidden;
  border: 5px solid var(--primary-color);
}
.theme-tutorial #tilt #popup_toggle::before {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.theme-tutorial #tilt:hover #popup_toggle::before {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
}
.theme-tutorial #tilt .popup_overlay1 .popup .video-wrapper {
  position: relative;
  height: auto;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 50%;
}
.theme-tutorial #tilt .popup_overlay1 .popup .video-wrapper iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 1600px) {
  .theme-tutorial #tilt .popup_overlay1 .popup {
    width: 60%;
  }
}
@media (max-width: 1401px) {
  .theme-tutorial #tilt .popup_overlay1 .popup {
    width: 70%;
  }
}
@media (max-width: 1199px) {
  .theme-tutorial #tilt .popup_overlay1 .popup {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .theme-tutorial #tilt .popup_overlay1 .popup {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .theme-tutorial #tilt .popup_overlay1 .popup {
    width: 100%;
  }
}
/*----------------------- End theme-tutorial --------------------------*/
/*----------------------- Start Other pages --------------------------*/
.other-pages .page-box {
  padding: 0;
}
.tab-content {
  float: left;
  width: 100%;
}
/* .container {
  padding-left: 18px;
  padding-right: 18px;
}
.row {
  margin-left: -18px;
  margin-right: -18px;
}
#pages-collection .owl-item {
  margin-right: 30px;
}

.row > * {
  padding-right: 18px;
  padding-left: 18px;
} */
/* 
div#myTabContent {
  margin-left: -30px;
  margin-right: -30px;
} */
.main-product .view-demo li a {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--secondary-font);
  background: var(--white-color);
  color: var(--secondary-color);
  padding: 10px 18px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: none;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.main-product .product-detail {
  padding: 80px 0 60px;
  background-color: var(--white-color);
}
.main-product {
  padding: 20px 0 60px 0;
}
.main-product .view-demo {
  margin: 0 0 50px;
  float: left;
  width: 100%;
}
.main-product .view-demo li a:hover {
  color: var(--white-color);
}
.main-product .view-demo li a.active span {
  background: var(--white-color);
  border-radius: 50px;
}
.main-product .view-demo > ul {
  margin: 0;
  padding: 0;
  float: none;
  display: flex;
  gap: 25px;
  vertical-align: top;
  width: auto;
  border: none;
}
.main-product .view-demo li {
  float: none;
  display: inline-block;
  vertical-align: top;
  list-style: outside none none;
}
.main-product .view-demo li a.active,
.main-product .view-demo li a::after {
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 50px;
}
.main-product .view-demo li a span {
  height: 26px;
  width: 34px;
  float: none;
  display: inline-block;
  vertical-align: top;
  background: var(--bg-light);
  color: var(--secondary-color);
  margin-left: 8px;
  border-radius: 50px;
}
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  -ms-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-controls .owl-buttons div,
.owl-controls .owl-page {
  cursor: pointer;
}
.owl-controls .owl-buttons div {
  position: absolute;
}
.owl-controls .owl-buttons .owl-prev {
  left: 10px;
  top: 40%;
}
.owl-controls .owl-buttons .owl-next {
  right: 10px;
  top: 40%;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
@media (max-width: 1401px) {
  .main-product .view-demo {
    margin-bottom: 44px;
  }
}
@media (max-width: 1199px) {
  .main-product .view-demo {
    margin-bottom: 40px;
  }
  .other-pages .page-box {
    padding: 0 50px 0 0;
  }
  .main-product {
    padding: 20px 0 50px 0;
  }
}
@media (max-width: 991px) {
  .main-product .view-demo {
    margin-bottom: 36px;
  }
  .main-product .view-demo li a {
    padding: 7px;
  }
  .other-pages .page-box {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .other-pages .page-box {
    padding: 0 30px 0 0;
  }
  .main-product .view-demo {
    margin-bottom: 30px;
  }
  .main-product .view-demo li a {
    font-size: 14px;
  }
  .main-product .view-demo > ul {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .other-pages .page-box {
    padding: 0 !important;
  }
}
@media (max-width: 481px) {
  .main-product .view-demo li a {
    font-size: 13px;
    line-height: 24px;
  }
  .main-product .view-demo li a span {
    height: 24px;
  }
  .other-pages .page-box {
    padding: 0 15px 0 0;
  }
  .main-product .view-demo {
    margin-bottom: 20px;
  }
}
/*----------------------- End Other pages --------------------------*/
/*----------------------- Start Marquee --------------------------*/
.marquee {
  float: left;
  width: 100%;
  padding: 50px 0;
}
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}
.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
  -webkit-animation: scroll-left 30s linear infinite;
}
.marquee-content-rtl {
  display: flex;
  width: max-content;
  animation: scroll-right 30s linear infinite;
  -webkit-animation: scroll-right 30s linear infinite;
}
.marquee-content-rtl:hover,
.marquee-content:hover {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
.marquee-text {
  opacity: 0.2;
  white-space: nowrap;
  line-height: normal;
  font-size: 100px;
  padding: 0 100px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 10px;
  -webkit-text-stroke: 5px var(--primary-color);
  color: var(--white-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  paint-order: stroke fill;
}

.marquee-text::after {
  content: ":";
  position: absolute;
  left: auto;
  right: -20px;
  top: 0;
  bottom: 0;
  font-size: 100px;
  line-height: 115%;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--primary-color);
  color: var(--white-color);
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@media (max-width: 1199px) {
  .marquee-text {
    padding: 0 80px;
  }
  .marquee-text::after,
  .marquee-text {
    font-size: 90px;
    letter-spacing: 8px;
  }
  .marquee {
    padding: 42px 0;
  }
}
@media (max-width: 991px) {
  .marquee-text {
    padding: 0 70px;
  }
  .marquee-text::after {
    right: -18px;
  }
  .marquee-text::after,
  .marquee-text {
    font-size: 80px;
    letter-spacing: 7px;
  }
  .marquee {
    padding: 36px 0;
  }
}
@media (max-width: 767px) {
  .marquee-text {
    padding: 0 60px;
  }
  .marquee-text::after {
    right: -15px;
  }
  .marquee-text::after,
  .marquee-text {
    font-size: 70px;
    letter-spacing: 6px;
  }
  .marquee {
    padding: 30px 0;
  }
}
@media (max-width: 575px) {
  .marquee-text {
    padding: 0 50px;
  }
  .marquee-text::after {
    right: -12px;
  }
  .marquee-text::after,
  .marquee-text {
    font-size: 60px;
    letter-spacing: 5px;
  }
  .marquee {
    padding: 22px 0;
  }
}
@media (max-width: 481px) {
  .marquee-text {
    padding: 0 40px;
  }
  .marquee-text::after {
    right: -10px;
  }
  .marquee-text::after,
  .marquee-text {
    font-size: 50px;
    letter-spacing: 4px;
  }
  .marquee {
    padding: 15px 0;
  }
}
/*----------------------- End Marquee --------------------------*/
/*----------------------- Start Elementer Setting --------------------------*/
.elementer-setting .service-box {
  padding: 80px 30px 0;
}
.elementer-img {
  float: left;
  width: 100%;
  position: relative;
  padding: 0 10%;
}
.elementer-img .element-img img {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.elementer-img .element-img {
  position: absolute;
  height: fit-content;
  padding: 0.8%;
  border: 1px solid #6666666e;
  border-radius: 10px;
}
.elementer-img .element-img.element-01 {
  left: 0;
  top: 0;
  bottom: 0;
  width: 17.8%;
  right: auto;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.elementer-img .element-img.element-02 {
  left: auto;
  top: -8%;
  width: 21%;
  bottom: auto;
  right: 0;
}
.elementer-img .element-img.element-03 {
  left: auto;
  top: auto;
  width: 17.8%;
  bottom: 10%;
  right: 0;
}

@media (max-width: 1401px) {
  .elementer-setting .service-box {
    padding: 70px 30px 0;
  }
}
@media (max-width: 1199px) {
  .elementer-setting .service-box {
    padding: 60px 0 0;
  }
}
@media (max-width: 991px) {
  .elementer-setting .service-box {
    padding: 50px 0 0;
  }
  .service-icon {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .elementer-setting .service-box {
    padding: 40px 0 0;
  }
}
@media (max-width: 481px) {
  .elementer-setting .service-box {
    padding: 30px 0 0;
  }
}
@media (max-width: 320px) {
  .elementer-setting h2 {
    font-size: 17px;
  }
  .elementer-setting p {
    font-size: 12px;
    line-height: 1.6;
    padding-top: 8px;
  }
}
/*----------------------- End Elementer Setting --------------------------*/
/*----------------------- Start Accordian --------------------------*/
.banner-box-main,
.banner-inner {
  gap: 60px;
}
.main-banner {
  background: transparent;
  padding: 30px 0;
}
.banner .banner-box {
  position: relative;
}
.banner .banner-box .section-title {
  position: absolute;
  width: auto;
  top: 50px;
  bottom: 50px;
  left: 0;
  right: 50px;
  margin: auto;
  max-width: 100%;
  text-align: center;
}
.banner-inner.banner-left .section-title {
  right: auto;
  text-align: start;
  display: flex;
  justify-content: center;
}
.banner-box.banner-center.banner-top .section-title {
  top: 6%;
  bottom: auto;
}
.banner-inner.banner-left .section-title {
  left: 50px;
}
.banner-box .section-title p {
  text-transform: uppercase;
  font-weight: 600;
}
.banner-box.banner-center.banner-top.second-image p,
.banner-box.banner-center.banner-top.second-image h2,
.banner-inner.banner-left.second-image .banner-box .section-title p,
.banner-inner.banner-left.second-image p,
.banner-inner.banner-left.second-image h2 {
  color: var(--secondary-color) !important;
}
.banner-box.banner-center .section-title {
  display: flex;
  justify-content: center;
  width: 100%;
}
.banner .banner-box .section-title h2,
.banner .banner-box .section-title {
  color: var(--bg-light);
}
.banner-pugin,
.banner-common {
  position: absolute;
  width: 18%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 1;
}
.banner-pugin img,
.banner-common img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.banner-pugin.plugin-01 {
  top: 12%;
  left: 10%;
}
.banner-pugin.plugin-02 {
  top: 18%;
  right: 6%;
}
.banner-pugin.plugin-03 {
  padding: 15px;
  width: 15%;
  top: 4%;
  right: 35%;
}
.banner-pugin.plugin-04 {
  bottom: 6%;
  left: 10%;
}
.banner-common.plugin-05 {
  bottom: 3%;
  right: 10%;
}
.banner-pugin.plugin-06 {
  width: 15%;
  padding: 10px;
  bottom: 22%;
  right: 25%;
}
.banner-pugin::after,
.banner-pugin::before,
.banner-common::after,
.banner-common::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80%;
  height: 80%;
  border: 1px solid var(--bg-light);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
}
.banner-pugin::before,
.banner-common::before {
  width: 90%;
  height: 90%;
}
.banner-pugin.plugin-03::after,
.banner-pugin.plugin-03::before,
.banner-pugin.plugin-06::after,
.banner-pugin.plugin-06::before {
  display: none;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 1401px) {
  .banner-box-main,
  .banner-inner {
    gap: 50px;
  }
  .banner .banner-box .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .banner .banner-box .section-title h2 {
    font-size: 28px;
  }
  .banner-box-main,
  .banner-inner {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .banner .banner-box .section-title p {
    font-size: 14px;
  }
  .banner .banner-box .section-title h2 {
    font-size: 22px;
  }
  .banner-inner.banner-left .section-title {
    left: 20px;
  }
  .banner-box-main,
  .banner-inner {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .banner-inner {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .banner-box-main,
  .banner-inner {
    gap: 20px;
  }
}
@media (max-width: 481px) {
  .banner-box-main,
  .banner-inner {
    gap: 15px;
  }
  .banner .banner-box .section-title h2 {
    font-size: 20px;
  }
  .banner-inner.banner-left .section-title h2 {
    font-size: 15px;
  }
}
@media (max-width: 320px) {
  .banner-inner.banner-left .section-title h2 {
    font-size: 12px;
  }
}
/*----------------------- End Banner --------------------------*/
/*----------------------- Start Accordian --------------------------*/
.accordian {
  float: left;
  width: 100%;
}
.card {
  margin: 0 0 15px;
  float: left;
  width: 100%;
}
.card .card-header {
  text-align: left;
  font-size: 20px;
}
.card .card-header > button {
  float: left;
  width: 100%;
  text-align: left;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  border: none;
  padding: 20px 0;
  font-family: var(--primary-font);
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color-01);
  line-height: 1.5;
  outline: none;
}
.card .card-header > button > svg {
  float: right;
}
.card .card-body {
  text-align: left;
  padding: 15px 0;
  font-size: 16px;
  background: var(--bg-light);
}
.card .card-body ul li {
  margin: 10px 0;
}
.feather-minus,
.collapsed .feather-plus {
  display: block;
}
.feather-plus,
.collapsed .feather-minus {
  display: none;
}

@media (max-width: 991px) {
  .card .card-header > button {
    font-size: 18px;
    padding: 18px 0;
  }
  .card {
    margin-bottom: 10px;
  }
  .card .card-body ul li {
    margin: 3px 0;
  }
}
@media (max-width: 767px) {
  .card .card-header > button {
    padding: 15px 0;
  }
  .card {
    margin-bottom: 8px;
  }
  .card .card-body {
    font-size: 15px;
  }
}
@media (max-width: 481px) {
  .card .card-header > button {
    font-size: 14px;
    padding: 10px 0;
    font-weight: 400;
  }
  .card {
    margin-bottom: 5px;
  }
  .card .card-body ul li {
    margin: 0;
  }
  .card .card-body {
    font-size: 14px;
  }
}
/*----------------------- End Accordian --------------------------*/
/*----------------------- Start QR CODE --------------------------*/
.scan-code {
  float: right;
  position: fixed;
  z-index: 111;
  top: auto;
  bottom: 80px;
  right: 0;
  left: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
.QR-code .qr-popup {
  width: 200px;
}
.QR-code.active .qr-popup {
  z-index: 99;
  position: fixed;
  top: auto;
  bottom: 80px;
  right: 0;
  left: auto;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  background-color: var(--white-color);
  padding: 8px;
  visibility: visible;
}
.qr-popup {
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  right: -200px;
  position: fixed;
  z-index: 99;
  top: auto;
  bottom: 80px;
}
.QR-code.active .scan-code {
  right: 200px;
}
/*----------------------- End QR CODE --------------------------*/
/*----------------------- Start Back to top --------------------------*/
.goToTop {
  display: none;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  bottom: 20px;
  border: 1px solid var(--secondary-color);
  background: var(--primary-color);
  cursor: pointer;
  height: 40px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 40px;
  z-index: 9999;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  text-decoration: none;
  outline: 0;
}
.goToTop::before {
  background: transparent url(../images/top.png) no-repeat scroll center center;
  content: "";
  float: left;
  height: 100%;
  width: 100%;
}
.goToTop:hover {
  background: var(--secondary-color);
}
/*----------------------- End Back to top --------------------------*/
/*----------------------- Start Footer --------------------------*/
footer,
.footer-bg,
.footer_link {
  float: left;
  width: 100%;
}
footer {
  position: relative;
  padding: 80px 0;
  z-index: 0;
  background: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 8%);
  z-index: -1;
}
.footer-gap {
  gap: 25px;
  color: var(--white-color);
}
footer h4 {
  margin: auto;
  vertical-align: top;
  width: fit-content;
  background: var(--white-color);
  color: var(--secondary-color);
  padding: 6px 15px;
  font-size: 15px;
}
footer .btn {
  margin-top: 10px;
  font-size: 18px;
}
footer h3 {
  color: var(--white-color);
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.footer_link {
  display: flex;
  justify-content: center;
}
.footer_link .btn-secondary.btn {
  color: var(--secondary-color);
  background-color: var(--background-color);
}
.footer_link .btn-secondary.btn::after {
  color: var(--white-color);
}
.btn-secondary.btn:hover::after {
  background-color: var(--secondary-color);
}
.footer_link .btn-secondary.btn:hover {
  color: var(--white-color);
}
@media (max-width: 1401px) {
  footer {
    padding: 70px 0;
  }
}
@media (max-width: 1199px) {
  footer {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  footer {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
  .footer-gap {
    gap: 22px;
  }
  footer h4 {
    padding: 8px 18px;
    font-size: 16px;
  }
  .footer-content svg {
    width: 20px;
  }
  .footer-content span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  footer {
    padding: 30px 0;
  }
  .footer-content {
    gap: 5px;
    flex-direction: column;
  }
}
/*----------------------- End Footer --------------------------*/
/*----------------------- Start Feature List --------------------------*/

.line-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

.horizontal-line {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  width: 100%;
}

.line-wrapper-inner {
  width: 100%;
  height: 1px;
  display: flex;
}
.line-center {
  margin-top: 151px;
}
.horizontal-line-move {
  background: linear-gradient(
    90deg,
    rgb(100 88 50 / 30%) 0%,
    #000 50%,
    rgb(100 88 50 / 40%) 50%
  );
  width: 100%;
  height: 100%;
  flex: none;
  animation: horizontal-line-marquee 5s linear infinite;
}

@keyframes horizontal-line-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.horizontal-line-move-center {
  background: linear-gradient(
    90deg,
    rgb(100 88 50 / 30%) 0%,
    #000 50%,
    rgb(100 88 50 / 40%) 50%
  );
  width: 100%;
  height: 100%;
  flex: none;
  animation: horizontal-line-marquee-center 5s linear infinite;
}

@keyframes horizontal-line-marquee-center {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.vertical-line {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.vertical-line-wrapper-inner {
  width: 1px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vertical-line-move-01 {
  background: linear-gradient(
    90deg,
    rgb(100 88 50 / 30%) 0%,
    #000 50%,
    rgb(100 88 50 / 30%) 50%
  );
  width: 100%;
  height: 100%;
  flex: none;
  animation: vertical-line-marquee-01 5s linear infinite;
}

@keyframes vertical-line-marquee-01 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.vertical-line-move-02 {
  background: linear-gradient(
    90deg,
    rgb(100 88 50 / 30%) 0%,
    #000 50%,
    rgb(100 88 50 / 30%) 50%
  );
  width: 100%;
  height: 100%;
  flex: none;
  animation: vertical-line-marquee-02 5s linear infinite;
}

@keyframes vertical-line-marquee-02 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

.slick-list {
  overflow: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-initialized .slick-slide {
  display: block;
  padding: 0 15px;
}
#feature-list {
  background: #000;
  position: relative;
  padding: 100px 0 0;
}

#feature-list .main-content2-content {
  float: left;
  width: 100%;
  position: relative;
}
.marquee-shadow-left {
  position: absolute;
  left: 0;
  right: auto;
  background: linear-gradient(90deg, #000000 20%, #00000000 100%);
  z-index: 3333;
  width: 710px;
  height: 100%;
}
.marquee-shadow-right {
  position: absolute;
  right: 0;
  left: auto;
  background: linear-gradient(-90deg, #000000 20%, #00000000 100%);
  z-index: 3333;
  width: 550px;
  height: 100%;
  top: 0;
}
.top-boxshadow {
  position: absolute;
  width: 550px;
  height: 480px;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgb(45 31 28 / 74%) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: -1;
  text-align: center;
  left: 50px;
  top: 0;
}
.bottom-boxshadow {
  position: absolute;
  width: 450px;
  height: 724px;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgb(45 31 28 / 74%) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: -1;
  text-align: center;
  right: 0;
  bottom: 0;
  left: auto;
  top: 0px;
}

#feature-list .main-content2-content .feature-service {
  display: flex;
  align-items: center;
  background: var(--secondary-color);
  padding: 20px 25px;
  border-radius: 50px;
  background: #1a1a1a;
}
.features01,
.features {
  display: flex;
}
.feature-service-cnt {
  width: fit-content;
  padding: 0 20px;
}
#feature-list .main-content2-content .feature-service {
  margin-bottom: 50px;
  width: fit-content;
}
.feature-title {
  font-size: 25px;
  line-height: normal;
  color: var(--white-color);
  padding: 0 12px;
}

.feature-service .feature-img .img-responsive {
  height: auto;
  transition: all 0.6s ease 0s;
  max-width: 100%;
  width: 35px;
  filter: invert(100%);
}

.feature-service:hover .feature-img .img-responsive {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
}
.choose-service {
  gap: 60px;
  margin-bottom: 60px;
}
.choose-service > div {
  width: 50%;
}
.feature-list .section-title {
  flex-direction: row;
  width: 100%;
  margin: 60px 0;
  justify-content: space-between;
  align-items: flex-start;
}
.feature-list .section-title h2 {
  color: var(--white-color);
  font-size: 70px;
  font-family: "Inter";
  width: 50%;
  line-height: 1.2;
  margin-top: -20px;
}
.feature-list .section-title p {
  width: 50%;
  color: #cccccc;
  font-family: "Inter";
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.gradient-shadow-text {
  background: linear-gradient(to top, #000000 13%, #645832 100%, #645832 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.gradient-shadow-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  color: black;
  filter: blur(5px); /* shadow blur */
  transform: translate(5px, 5px); /* shadow offset */
  opacity: 0.7;
}

.total-features h2 {
  font-size: 620px;
  color: var(--primary-color);
  font-family: "Inter";
  text-align: center;
  line-height: 0.8;
  font-weight: 800;
}
.total-features {
  width: 100%;
}
@media (max-width: 1600px) {
  .total-features h2 {
    font-size: 170px;
  }
  .feature-list .section-title p {
    width: 60%;
  }
  #feature-list .main-content2-content .feature-service {
    padding: 20px 25px;
  }
}
@media (max-width: 1401px) {
  .total-features h2 {
    font-size: 29vw;
  }
  .feature-list .section-title p {
    font-size: 20px;
  }
  .feature-list .section-title h2 {
    font-size: 60px;
  }
  .feature-list .section-title p {
    width: 70%;
  }
  .choose-service {
    gap: 50px;
    margin-bottom: 50px;
  }
  .slick-initialized .slick-slide {
    padding: 0 10px;
  }
  #feature-list .main-content2-content .feature-service {
    padding: 18px 20px;
  }
}
@media (max-width: 1199px) {
  .feature-list .section-title p {
    width: 80%;
  }
  .choose-service {
    gap: 45px;
    margin-bottom: 45px;
  }
  .feature-list .section-title h2 {
    font-size: 45px;
  }
  #feature-list .main-content2-content .feature-service {
    padding: 12px 20px;
  }
  .feature-title {
    font-size: 25px;
  }
  #feature-list .main-content2-content .feature-service {
    margin-bottom: 35px;
  }
  .feature-title {
    font-size: 20px;
  }
  .feature-service .feature-img .img-responsive {
    width: 20px;
  }
  .marquee-shadow-left,
  .marquee-shadow-right {
    width: 160px;
  }
}
@media (max-width: 991px) {
  .feature-list .section-title p {
    width: 90%;
  }
  .choose-service {
    gap: 40px;
    margin-bottom: 40px;
  }
  .feature-list .section-title h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .feature-list .section-title p {
    width: 100%;
  }
  .total-features h2 {
    text-align: center;
  }
  .choose-service {
    gap: 35px;
    margin-bottom: 35px;
  }
  .choose-service > div {
    width: auto;
  }
  .choose-service .total-features {
    width: 35%;
  }
  .feature-list .section-title {
    gap: 10px;
    flex-wrap: wrap;
  }
  .marquee-shadow-left,
  .marquee-shadow-right {
    width: 50px;
  }
}

@media (max-width: 575px) {
  .choose-service {
    gap: 30px;
    margin-bottom: 30px;
  }
  .choose-service .total-features {
    width: 100%;
  }
  .choose-service {
    flex-direction: column;
  }
  .choose-service {
    gap: 0;
  }
  .feature-service .feature-img .img-responsive {
    width: 30px;
  }
  .feature-list .section-title h2 {
    font-size: 33px;
  }
  .feature-list .section-title p {
    font-size: 15px;
  }
}
@media (max-width: 320px) {
  .gradient-shadow-text {
    background: linear-gradient(to top, #000000 13%, #645832 60%, #645832 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
  }
}

/*----------------------- End Feature List --------------------------*/
/*----------------------- Start Mobile View --------------------------*/
.mobile-view {
  position: relative;
  background: transparent;
}
.mobile-view .innerpage {
  padding: 0;
  border: 0.2px solid #6458322e;
}
.mobile-view .page1 {
  float: left;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: left;
  gap: 20px;
}

.mobile-view .owl-carousel .owl-item {
  padding: 0;
}

.innerpage-content .swiper {
  overflow: visible;
  overflow-x: clip;
}
.innerpage-content h4 {
  text-align: center;
  padding-top: 20px;
}

section.mobile-view {
  margin-bottom: 20px;
}
.tt-carousel1 .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 1;
}
.tt-carousel1 .swiper-pagination {
  bottom: -60px !important;
}
.tt-carousel1 .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  width: 10px;
  height: 10px;
}
.tt-carousel1
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.tt-carousel1
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 7px);
}
.tt-carousel1
  span.swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  content: "";
  position: absolute;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  margin: 0;
  padding: 10px;
  top: -6px;
  left: -6px;
  width: 10px;
  height: 10px;
}
.tt-carousel1 span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
}
@media (max-width: 1600px) {
  .mobile-view .page1,
  .other-pages .page-box,
  .card-products {
    padding: 0 20px 0;
  }
}

@media (max-width: 767px) {
  .mobile-view .page1,
  .other-pages .page-box,
  .card-products {
    padding: 0 20px 0 0;
  }
  .tt-carousel1 .swiper-pagination {
    bottom: -40px !important;
  }
}
/*----------------------- End Mobile View --------------------------*/
/*----------------------- Start Slider --------------------------*/
.slider {
  /* background: url(../images/slider/slider-bg.jpg); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 8%;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #622b13 0%, #2b1209ad 50%, #000000 100%);
}
.slider::after {
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  z-index: -1;
}
.slider-box-center {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 10% auto -5%;
  padding: 0 30px;
}
.slider .section-title {
  width: 100%;
  margin: auto;
  gap: 30px;
}
.slider .section-title p {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
}
.slider .section-title h2 {
  font-size: 44px;
  color: var(--white-color);
}
.slider-img-inner .slide-1 {
  width: 40%;
  margin: auto;
}
.slider-img-box {
  position: absolute;
}
.slider-img-box.slide-2 {
  width: 18%;
  top: -25%;
  left: 0;
}
.slider-img-box.slide-3 {
  left: 22%;
  right: 0;
  top: 0;
  width: 7.5%;
}
.slider-img-box.slide-4 {
  left: 5.5%;
  bottom: 10%;
  width: 11%;
}
.slider-img-box.slide-5 {
  right: 16%;
  top: -20%;
  width: 13%;
}
.slider-img-box.slide-6 {
  right: -2.5%;
  bottom: 2%;
  width: 15.4%;
}

.image-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.left-side-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.right-side-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.image-inner img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1800px) {
  .slider .section-title h2 {
    font-size: 50px;
  }
}
@media (max-width: 1600px) {
  .slider-box-center {
    gap: 70px;
  }
  .slider .section-title {
    gap: 26px;
  }
  .slider .section-title h2 {
    font-size: 44px;
  }
}
@media (max-width: 1401px) {
  .slider-box-center {
    gap: 60px;
  }
  .slider .section-title {
    gap: 22px;
  }
  .slider .section-title h2 {
    font-size: 38px;
  }
}
@media (max-width: 1199px) {
  .slider-box-center {
    gap: 50px;
  }
  .slider .section-title {
    gap: 18px;
  }
  .slider .section-title h2 {
    font-size: 31px;
  }
}
@media (max-width: 991px) {
  .slider-box-center {
    gap: 40px;
  }
  .slider .section-title {
    gap: 16px;
  }
  .slider .section-title h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .slider-box-center {
    gap: 30px;
  }
  .slider .section-title {
    gap: 12px;
  }
  .slider .section-title {
    width: 54%;
  }
  .slider-box-center {
    margin: 15% auto -8%;
  }
  .slider {
    margin-bottom: 12%;
  }
}
@media (max-width: 575px) {
  .slider-box {
    display: none;
  }
  .slider-img-inner .slide-1 {
    width: 60%;
  }
  .slider .section-title {
    width: 65%;
    gap: 10px;
  }
  .slider-box-center {
    gap: 20px;
    margin: 20% auto -10%;
  }
  .slider {
    margin-bottom: 15%;
  }
}
@media (max-width: 481px) {
  .slider-img-inner .slide-1 {
    width: 75%;
  }
  .slider-box-center {
    margin: 25% auto -10%;
    gap: 16px;
  }
  .slider .section-title {
    width: 80%;
  }
  .slider .section-title h2 {
    font-size: 20px;
  }
}
/*----------------------- End Slider --------------------------*/

/*----------------------- Start offer banner --------------------------*/
.offer-banner {
  float: left;
  width: 100%;
  background: var(--secondary-color);
}
.offer-banner .offer-content {
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: 1.5% 0;
  text-align: center;
}
.offer-banner .offer-subtitle {
  flex: 0 0 auto;
  float: none;
  display: inline-block;
  vertical-align: top;
  color: var(--white-color);
  text-transform: capitalize;
  position: relative;
  padding: 0 30px;
  font-family: var(--primary-font);
}
.offer-banner .offer-subtitle::before {
  content: "\ea50";
  font-family: "Material Icons";
  position: absolute;
  left: auto;
  right: 5px;
  top: 0;
  bottom: 0;
}
.offer-banner .marquee-content {
  animation: scroll-left 20s linear infinite;
  -webkit-animation: scroll-left 20s linear infinite;
}
.offer-banner .marquee-content:hover {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
.offer-banner .marquee-line {
  float: none;
  display: inline-block;
  vertical-align: top;
  color: var(--white-color);
  position: relative;
  padding: 0 50px 0 0;
  margin: 0 10px 0 0;
  font-size: 16px;
}
.offer-banner .offer-subtitle::after {
  content: "\f1df";
  font-family: "Material Icons";
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  background: var(--white-color);
  color: var(--secondary-color);
  text-align: center;
  border-radius: 50%;
}
.offer-banner .offer-subtitle:last-child {
  padding: 0;
  margin: 0;
}
.offer-banner .offer-subtitle:last-child::after {
  display: none;
}
.offer-banner-content {
  display: inline-flex;
  width: auto;
}
@media (max-width: 1400px) {
  .offer-banner .offer-subtitle {
    margin-bottom: 5px;
  }
  .offer-banner .offer-content {
    display: block;
  }
}
@media (max-width: 575px) {
  .offer-banner .offer-content {
    padding: 2% 0;
  }
}
/*----------------------- end offer banner --------------------------*/
.header-footer .style-box {
  margin-bottom: 60px;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}

.header-footer .style-box:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}
.image-parent {
  position: relative;
}
.hover-image {
  position: static;
  top: 0;
  width: 100%;
  left: 0;
}
.header-footer .style-box:hover .box-shadow.hover_image {
  opacity: 1;
  transition: 0.5s opacity;
}
.box-shadow.hover_image {
  opacity: 1;
  transition: 0.5s opacity;
}
@media (max-width: 1199px) {
  .header-footer .style-box {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .box-shadow.hover_image {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .header-footer .style-box {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .header-footer .style-box {
    margin-bottom: 20px;
  }
}

/* password css start */

.password {
  float: left;
  width: 100%;
  padding: 80px 0 0;
}

ul.password-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

ul.password-wrap li.password-wrapper {
  width: 50%;
  border: 1px solid #e5e5e5;
  list-style: none;
  margin-left: -1px;
}
.modal-backdrop.show {
  opacity: 0;
  z-index: 1;
}

.password-modal .modal {
  padding-right: 0px;
  display: block;
}
.password-modal .modal-header {
  display: block;
}
.password-modal .modal-header img {
  width: auto;
}
.password-modal .modal-header {
  border: 0;
  padding: 0;
}

ul.password-wrap li.password-wrapper:first-child {
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
}

ul.password-wrap li.password-wrapper:last-child {
  border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
}

ul.password-wrap li.password-wrapper a {
  display: block;
}

ul.password-wrap li.password-wrapper a img {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.password-content {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
}

.password-content .section-title h2 {
  text-transform: none;
  font-weight: 500;
  font-family: var(--primary-font);
  font-size: 30px;
}

.password-content .section-title p {
  font-size: 18px;
  background: var(--primary-color);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.password-content .section-title {
  text-align: left;
}

.password-content .clipboard {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.password-content .copy-input {
  cursor: pointer;
  background-color: #fff;
  color: #6c6c6c;
  font-size: 14px;
  height: 54px;
  width: auto;
  border-radius: 5px;
  padding: 15px 45px 15px 30px;
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  border: 1px solid #e2e2e2;
}

.password-content .copy-input:focus {
  outline: none;
}

.password-content .copy-btn {
  font-size: 18px;
  padding: 0;
  margin-left: -40px;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  border: none;
  background: none;
}

.password-content .copy-btn:hover {
  transform: scale(1.3);
  color: #1a1a1a;
  cursor: pointer;
}

.password-content .copy-btn:focus {
  outline: none;
}

.password-content .copied,
.header-btn .copied {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 18px 25px;
  background-color: var(--primary-color);
  border-radius: 50px;
  width: max-content;
  margin-left: 50px;
  height: 54px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.password-content .copied.btn::after,
.header-btn .copied:after {
  background: #333333;
  border-radius: 3px;
}
.header-btn .copied {
  margin: 0;
  padding: 15px 23px;
  height: 47px;
}
.header-btn .copied a {
  padding: 0;
  margin: 0;
}
.header-btn .copied:after {
  color: var(--white-color);
  background: var(--white-color);
}
.header-btn .copied:hover span {
  color: var(--secondary-color);
}

.password-content .copied.btn:hover,
.header-btn .copied:hover {
  color: #ffffff;
}

.password-content .copied span,
.header-btn .copied span {
  display: block;
  font-family: var(--primary-font);
  font-size: 18px;
}

@media (max-width: 1250px) {
  .password-content .clipboard {
    gap: 1px;
  }
  .password-content .copied {
    margin-left: 10px;
  }
}
@media (max-width: 991px) {
  ul.password-wrap {
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 30px;
  }
  ul.password-wrap li.password-wrapper {
    width: 100%;
  }
  .password-content {
    padding: 50px 50px;
  }
  .password-content .section-title {
    text-align: left;
  }
}

@media (max-width: 400px) {
  ul.password-wrap {
    row-gap: 10px;
  }
}

/* password css end */

/* home pages layouts css start */

.all-pages .page-box {
  flex: 1 1 23.33%;
}
.all-pages .page-box,
.all-pages .page-box-title {
  align-items: unset;
}

@media (max-width: 991px) {
  .all-pages .page-box {
    flex: 1 1 33.33%;
  }
}

@media (max-width: 767px) {
  .all-pages .page-box {
    width: 100%;
  }
}

/* home pages layouts css end */

/* price list css start */

.compare-price-table {
  padding: 50px 0;
  position: relative;
  background-color: #ffffff;
}

.compare-price-table .decription_part .section-heading {
  color: #222;
}

.compare-price-table .decription_part .section-heading b {
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.compare-price-table .decription_part {
  margin: 0;
  float: left;
  width: 100%;
}

.price-table {
  background: #fff;
  box-shadow: 0 20px 100px rgb(0, 0, 0, 0.09);
  padding: 20px;
  position: relative;
  float: left;
  width: 100%;
}

.price-table .table {
  float: left;
  width: 100%;
  position: relative;
  height: 571px;
  transition: 0.3s height;
  overflow: hidden;
}

/* .show-full .price-table .table {
    height: 100%;
} */

.price-table table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  font-size: 18px;
  color: #222;
}

.price-table th,
.price-table td {
  padding: 12px 5px;
  border-right: 0.3px solid #808080;
  text-align: center;
  width: 25%;
  line-height: 28px;
  font-weight: 500;
}

.price-table thead th {
  background: #f5f5f5;
}

.price-table td {
  font-size: 16px;
  font-weight: 500;
}

.price-table tr:nth-child(even) td {
  background: rgba(245, 245, 245, 0.7);
}

.price-table td:first-child {
  color: #666;
}

.price-table th:first-child,
.price-table td:first-child {
  border-radius: 5px 0 0 5px;
}

.total-price-table {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.total-price-table .more-price {
  background: linear-gradient(
    181.44deg,
    rgba(245, 245, 245, 0) -10.16%,
    #f5f5f5 81.4%
  );
  border-radius: 0px 0px 5px 5px;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  z-index: 11;
  padding-top: 80px;
}

.show-full .total-price-table .more-price {
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  visibility: hidden;
}

.total-price-table .more-price .btn {
  pointer-events: auto;
  border-radius: 50px;
}

.total-price-table .more-price .btn span {
  vertical-align: top;
}

.total-price-table tfoot th {
  height: 110px;
  padding: 14px 16px 10px;
  background: rgba(245, 245, 245, 1);
}
section.elementer-setting.wow.fadeInUp.animated {
  padding-top: 30px;
}
.total-price-table tfoot th .total {
  float: none;
  width: auto;
  font-weight: 500;
  display: inline-block;
  vertical-align: top;
  padding: 10px 15px;
  color: var(--white-color);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.price-bottom th,
.price-bottom {
  font-weight: 500;
}

.compare-price-table .decription_part .section-heading b {
  font-size: 38px;
  line-height: 40px;
}
@media (max-width: 991px) {
  .price-table th,
  .price-table td {
    padding: 15px 5px;
    line-height: 20px;
    font-size: 14px;
  }
  .total-price-table .more-price .btn {
    display: none;
  }
  .total-price-table {
    position: static;
  }
}
@media (max-width: 600px) {
  .price-table table {
    table-layout: fixed;
    overflow-y: hidden;
    display: block;
  }
  .price-table th,
  .price-table td {
    padding: 10px 5px;
    line-height: 18px;
    font-size: 12px;
  }

  .price-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #fff;
  }
}
@media (max-width: 320px) {
  .compare-price-table .decription_part .section-heading b {
    font-size: 22px;
  }
}

/* price list css end */

section.blog-pages.wow.fadeInUp.animated {
  background: transparent;
  margin: 0;
  padding: 0 0 80px;
}

/* our products css start */

.main-product-section {
  padding: 50px 0px 20px;
}
.main-product-section .product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.main-product-section .product-card {
  width: 100%;
  border: 1px solid rgb(100 88 50 / 20%);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  margin: 10px 0 0;
}

.main-product-section .product-card:hover {
  transform: translateY(-5px);
}

.main-product-section .product-card img {
  width: 100%;
  height: auto;
  display: block;
}
.product-card-title.section-title {
  padding-top: 20px;
}
.card-products a:hover {
  color: unset;
}
@media (max-width: 1200px) {
  .main-product-section {
    padding: 60px 0 20px;
  }
  .product-card-title.section-title {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .card-products {
    margin-bottom: 10px !important;
  }
}
@media (max-width: 320px) {
  .main-product-section {
    padding: 10px 0 20px;
  }
}

/* our products css end */

/* Only for the black-top section */
.hero-header {
  background: linear-gradient(to bottom, #000000, #1a0e08);
  overflow: hidden;
  position: relative;
}

.hero-header::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.shadow-top-circle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
}

.shadow-top-circle-inner {
  height: 350px;
  width: 1120px;
  background: #645832;
  border-radius: 50%;
  filter: blur(260px);
}
.inner-page.tt-carousel.owl-carousel.owl-theme {
  z-index: 1;
}
.shadow-top {
  position: absolute;
  top: 0;
  height: 100px;
  background: linear-gradient(180deg, #000000 0%, #00000000 100%);
  width: 100%;
  z-index: 33;
}

.scroll-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  padding: 0 30px;
  position: relative;
  z-index: 11;
}

.scroll-column {
  height: 1020px;
  overflow: hidden;
  position: relative;
}

.scroll-badge {
  position: relative;
}

.image-left {
  position: absolute;
  top: 150px;
  z-index: 11;
  left: auto;
  right: -100px;
}

.image-right {
  position: absolute;
  top: 70px;
  z-index: 99999;
  left: -100px;
  right: auto;
}

.scroll-inner {
  display: flex;
  flex-direction: column;
  animation: scroll-up 20s linear infinite;
}

.scroll-column.reverse .scroll-inner {
  animation: scroll-down 20s linear infinite;
}

.scroll-inner img {
  width: 100%;
  margin-bottom: 30px;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0%);
  }
}

.center-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.center-content h2 {
  line-height: normal;
  color: var(--white-color);
  font-weight: 600;
  font-family: var(--secondary-font);
  width: 100%;
  font-size: 39px;
}

.number-div {
  line-height: 0.8;
  font-size: 260px;
  font-family: "Inter";
}

.demos-text {
  font-size: 36px;
  writing-mode: vertical-rl;
  line-height: normal;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.plus-sign {
  font-size: 80px;
  line-height: 0.1;
}

.banner-slider .orbit-button {
  position: relative;
  width: 260px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-family: sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.banner-slider .button.button--primary {
  border-bottom: 1px solid #fff;
  display: inline-block;
  font-family: Halant, serif;
  min-height: 50px;
  font-size: 25px;
  min-width: max-content;
  max-width: max-content;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0;
  flex-direction: row;
  background: transparent;
}
.banner-slider .button.button--primary {
  color: var(--white-color);
}
.banner-slider .button.button--primary .svg-wrapper {
  transform: rotate(-35deg);
  -webkit-transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
  transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  -ms-transition: -ms-transform 0.5s ease;
  width: 22px;
  height: 22px;
}
.banner-slider .button.button--primary:hover .svg-wrapper {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  -ms-transition: -ms-transform 0.5s ease;
}
.banner-slider .button-wrapper.button-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.banner-slider .button.button--primary .svg-wrapper svg path {
  fill: var(--white-color);
}

.after-hero {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  color: #000;
  font-family: sans-serif;
}

@media (max-width: 1400px) {
  .scroll-column {
    height: 917px;
  }
  .scroll-wrapper {
    gap: 40px;
  }
  .demos-count {
    margin-bottom: 0;
  }
  .number-div {
    font-size: 19vw;
  }
}

@media (max-width: 1050px) {
  .number-div {
    font-size: 20vw;
  }
  .center-content {
    width: 100%;
  }
  .scroll-wrapper {
    gap: 10px;
  }
  .center-content h2 {
    font-size: 27px;
  }
  .scroll-column {
    height: 627px;
  }
  .home-pages {
    margin-top: 60px;
  }
}
@media (max-width: 991px) {
  .image-left,
  .image-right {
    display: none;
  }
  .scroll-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 30px;
  }
  .center-content {
    order: -1;
    grid-column: 1 / 3;
    padding-bottom: 40px;
  }
  .number-div {
    font-size: 28vw;
  }
  .home-pages {
    margin-top: 30px;
  }
}
@media (max-width: 650px) {
  .scroll-column {
    height: 377px;
  }
  .center-content {
    margin-top: 30px;
  }
  .number-div {
    font-size: 45vw;
  }
  .plus-sign {
    font-size: 14vw;
  }
  .demos-text {
    font-size: 28px;
  }
}
@media (max-width: 320px) {
  .scroll-wrapper {
    padding: 0 20px;
  }
  .demos-text {
    font-size: 16px;
  }
  .number-div {
    font-size: 40vw;
  }
  .center-content h2 {
    font-size: 20px;
  }
  .banner-slider .button-wrapper.button-bottom {
    margin-top: 0;
  }
  .banner-slider .button.button--primary {
    font-size: 18px;
  }
  .banner-slider .button.button--primary .svg-wrapper {
    width: 18px;
    height: 18px;
  }
  .center-content {
    padding-bottom: 10px;
  }
  .scroll-inner img {
    margin-bottom: 10px;
  }
  .scroll-wrapper {
    gap: 20px;
  }
}

.owl-theme .owl-controls .owl-page span {
  background: var(--primary-color); /* dot color */
  opacity: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  margin: 5px;
}

.owl-theme .owl-controls .owl-page.active span {
  background: var(--primary-color);
}
.owl-controls .owl-page.active {
  border: 1px solid var(--primary-color);
  border-radius: 50%;
}
.owl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  gap: 3px;
}

.main-product-section .inner-page .owl-pagination {
  margin-top: 0;
}
.main-product-section .inner-page.tt-carousel.owl-carousel.owl-theme {
  margin-bottom: 2rem;
}

@media (max-width: 1199px) {
  .password-content {
    padding: 28px;
  }
  .password-content .copied {
    font-size: 14px;
    margin-left: 38px;
  }
  .password-content .section-title p {
    font-size: 16px;
  }
}

@media (max-width: 1250px) {
  .password-content .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .password-content .copy-input {
    width: 100%;
    height: 48px;
  }
  .password-content .copied {
    font-size: 12px;
    margin-left: 38px;
    padding: 13px 10px;
    width: 100%;
    text-align: center;
    height: 48px;
  }
  .password-content .copied span {
    font-size: 15px;
  }

  .password-content .clipboard {
    margin-top: 20px;
  }

  .password-content .section-title p {
    font-size: 14px;
  }
  .password {
    padding: 40px 0 !important;
  }
}

@media (max-width: 600px) {
  .password-content .section-title h2 {
    font-size: 23px;
  }
}

@media (max-width: 390px) {
  .password-content .clipboard {
    flex-wrap: wrap;
    gap: 20px;
  }
  .password-content .copied {
    height: 48px;
    font-size: 12px;
    margin-left: 0;
    padding: 15px 30px;
    width: fit-content;
  }
  .password-content .copy-btn {
    margin-left: -50px;
  }
}

@media (max-width: 320px) {
  .password-content .section-title h2 {
    font-size: 20px;
  }
  .password-content {
    padding: 20px;
  }
  section.blog-pages.wow.fadeInUp.animated {
    padding: 0 0 20px;
  }
  .card .card-header > button > svg {
    width: 15px;
    height: 15px;
  }
  footer h4 {
    font-size: 14px;
  }
  footer .btn {
    font-size: 13px;
  }
  .header-footer .style-box h5 {
    font-size: 16px;
  }
  .tt-carousel .owl-controls {
    padding-top: 10px;
  }
}
