/*=====================
  01. Variables
==========================*/
:root {
  --primary-color: 69, 97, 115;
  --secondary-color: 33, 52, 64;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --title-color: 35, 35, 35;
  --content-color: 114, 120, 129;
  --light-bg-color: 245, 245, 245;
  --border-color: 238, 238, 238;
}

/*=====================
  02. Typography
==========================*/
body {
  position: relative;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

ul,
ol {
  padding-left: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: 0.4s ease;
  display: inline-block;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}

li {
  display: inline-block;
  font-size: calc(16px + 8 * (100vw - 320px) / 1600);
  font-weight: 400;
}

p {
  font-size: calc(15px + 3 * (100vw - 320px) / 1600);
  font-weight: 400;
  margin-bottom: 0;
  color: rgba(var(--content-color), 1);
}

h1 {
  font-size: calc(22px + 38 * (100vw - 320px) / 1600);
  font-weight: 700;
  margin-bottom: 0;
}

h2 {
  font-size: calc(20px + 20 * (100vw - 320px) / 1600);
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

h3 {
  font-size: calc(20px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}

h4,
.h4 {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

h5,
.h5 {
  font-size: calc(15px + 1 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

.template-text {
  color: rgba(var(--primary-color), 1) !important;
}

section,
.section-t-space {
  padding-top: calc(40px + 40 * (100vw - 320px) / 1600);
}

.section-b-space {
  padding-bottom: calc(40px + 40 * (100vw - 320px) / 1600);
}

.section-title {
  text-align: center;
  padding-bottom: calc(22px + 18 * (100vw - 320px) / 1600);
}
.section-title h2 {
  color: rgba(var(--title-color), 1);
  font-size: calc(24px + 10 * (100vw - 320px) / 1600);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: calc(4px + 6 * (100vw - 320px) / 1600);
  line-height: calc(24px + 4 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
  .section-title h2 {
    line-height: 1.3;
  }
}
.section-title p {
  color: rgba(var(--content-color), 1);
  margin: 0 auto;
}
@media (max-width: 1224px) {
  .section-title p {
    width: 68%;
  }
}
@media (max-width: 900px) {
  .section-title p {
    width: 100%;
  }
}
.section-title .btn {
  margin-top: calc(14px + 16 * (100vw - 320px) / 1600);
}

/*=====================
  03. Button
==========================*/
.btn {
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
  padding: calc(6px + 4 * (100vw - 320px) / 1600) calc(12px + 18 * (100vw - 320px) / 1600);
  border-radius: 100px;
}

.custom-container {
  padding-inline: calc(15px + 180 * (100vw - 320px) / 1600);
}

/* ============
04. Header
=============*/
header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-block: calc(10px + 5 * (100vw - 320px) / 1600);
  transition: all 0.6s ease-in-out;
  background-color: rgb(33, 52, 64);
}
header:has(.navbar .navbar-collapse.show).nav-up, header:has(.navbar .navbar-collapse.show).nav-down {
  transform: unset;
  top: 0;
}
header .custom-container {
  padding: 0 calc(50px + 50 * (100vw - 1200px) / 720);
}
@media (max-width: 1199px) {
  header .custom-container {
    padding: 0 calc(20px + 80 * (100vw - 320px) / 880);
  }
}
header.nav-down {
  position: fixed;
  top: -100px;
  background-color: transparent;
  transform: translateY(-500px);
}
header.nav-down.nav-up {
  top: 0;
  transform: translateY(0);
  background-color: rgba(var(--title-color), 1);
}
header .navbar .btn-check:checked + .btn,
header .navbar .btn.active,
header .navbar .btn.show,
header .navbar .btn:first-child:active,
header .navbar :not(.btn-check) + .btn:active {
  background-color: rgba(var(--white), 1) !important;
  color: rgba(var(--secondary-color), 1) !important;
}

.navbar {
  justify-content: unset;
  align-items: center;
  gap: calc(0px + 50 * (100vw - 320px) / 1600);
}
.navbar a:has(img.logo):focus, .navbar a:has(img.logo):focus-visible {
  border: none;
  outline: none;
}
.navbar a:has(img.logo) img.logo:focus, .navbar a:has(img.logo) img.logo:focus-visible {
  border: none;
  outline: none;
}
.navbar .btn {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--title-color), 1);
  margin-left: auto;
}
.navbar .navbar-toggler {
  padding: 0;
  border: 0;
  position: relative;
  z-index: 10;
}
.navbar .navbar-toggler.collapse .navbar-toggler-icon i {
  color: rgba(var(--white), 1);
}
.navbar .navbar-toggler .navbar-toggler-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: calc(10px + 10 * (100vw - 320px) / 1600);
  background-image: none;
}
.navbar .navbar-toggler .navbar-toggler-icon i {
  color: rgba(var(--white), 1);
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .header-logo {
  height: calc(20px + 10 * (100vw - 320px) / 1600);
  width: calc(80px + 40 * (100vw - 320px) / 1600);
}
.navbar .navbar-collapse .close-box {
  display: none;
}
.navbar .navbar-collapse .bg-overlay {
  display: none;
}
@media (max-width: 1199.98px) {
  .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: -300px;
    width: calc(240px + 80 * (100vw - 320px) / 671);
    min-height: 100vh;
    background-color: rgba(var(--secondary-color), 1);
    padding: 0;
    transition: all 0.3s ease-in-out;
    z-index: 11;
  }
  .navbar .navbar-collapse.show {
    left: 0;
  }
  .navbar .navbar-collapse.show .bg-overlay {
    opacity: 1;
    visibility: visible;
  }
  .navbar .navbar-collapse .bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.5);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
  .navbar .navbar-collapse .bg-overlay.show {
    opacity: 1;
    visibility: visible;
  }
  .navbar .navbar-collapse:has(#body-overlay.show) body {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    z-index: 3;
    top: 0;
    transition: 0.5s;
  }
  .navbar .navbar-collapse .navbar-nav {
    padding: 14px 20px;
    height: 100%;
  }
  .navbar .navbar-collapse .close-box {
    background-color: rgba(var(--secondary-color), 1);
    font-weight: 600;
    font-size: 17px;
    line-height: 1;
    border-bottom: 1px solid rgba(var(--line-color), 1);
    display: flex;
    align-items: center;
    border: unset;
    color: rgba(var(--white), 1);
    text-align: unset;
    width: 100%;
    padding: 14px 20px;
    box-shadow: -2px 1px 10px rgba(238, 238, 238, 0.1490196078);
  }
  .navbar .navbar-collapse .close-box i {
    font-size: 24px;
    color: rgba(var(--white), 1);
  }
}
@media (max-width: 1199.98px) and (max-width: 991px) {
  .navbar .navbar-collapse .close-box {
    display: block;
  }
}
.navbar .navbar-nav {
  display: flex;
  gap: calc(4px + 16 * (100vw - 320px) / 1600);
}
.navbar .navbar-nav .nav-item .nav-link {
  text-transform: capitalize;
  color: rgba(var(--white), 1);
  font-weight: 400;
  font-size: calc(15px + 3 * (100vw - 320px) / 1600);
  padding: 0 0 4px;
  position: relative;
}
.navbar .navbar-nav .nav-item .nav-link:active {
  color: rgba(var(--white), 1);
  font-weight: 500;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--white), 1);
}
.navbar .navbar-nav .nav-item .nav-link::after {
  content: "";
  border-bottom: solid 1px rgba(var(--white), 1);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}
.navbar .navbar-nav .nav-item .nav-link:hover::after, .navbar .navbar-nav .nav-item .nav-link.active::after {
  transform-origin: left;
  transform: scaleX(1);
}
.navbar .navbar-nav .nav-item .nav-link.book {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: calc(15px + 2 * (100vw - 320px) / 1600);
  animation: ring 4s 0.7s ease-in-out infinite;
  color: rgba(var(--theme-color), 1);
}
.navbar .navbar-nav .nav-item .nav-link.book .demo-elements {
  height: 20px;
  width: 20px;
}
.navbar .navbar-nav .nav-item .nav-link.book .iconsax {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: calc(
    17px + (20 - 17) * ((100vw - 320px) / (1920 - 320))
  );
}
@keyframes ring {
  3% {
    transform: translate(9px);
  }
  6% {
    transform: translate(-9px);
  }
  8% {
    transform: translate(6px);
  }
  10% {
    transform: translate(-6px);
  }
  13% {
    transform: translate(3px);
  }
  16%, 100% {
    transform: translate(0);
  }
}
.navbar .navbar {
  background: transparent !important;
  border: none !important;
  padding-bottom: 0;
  padding-top: calc(13px + 13 * (100vw - 320px) / 1600);
}
.navbar .navbar .navbar-toggler {
  border: unset;
  box-shadow: unset;
  padding: 0;
  font-size: calc(18px + 6 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 1);
  margin-right: calc(8px + 7 * (100vw - 320px) / 1600);
}
.navbar .navbar-nav {
  gap: calc(15px + 20 * (100vw - 1200px) / 720);
}
@media (max-width: 1199.98px) {
  .navbar .navbar-nav {
    gap: calc(7px + 8 * (100vw - 320px) / 879);
  }
}

/* ===========
05. Home 
============*/
.home-wrapper {
  background: linear-gradient(135deg, rgba(var(--primary-color), 0.04) 0%, rgba(var(--primary-color), 0.08) 25%, rgba(var(--primary-color), 0.12) 50%, rgba(var(--primary-color), 0.06) 75%, rgba(var(--primary-color), 0.02) 100%);
}
@media (max-width: 767px) {
  .home-wrapper {
    padding-bottom: 20px;
  }
}
.home-wrapper .home-content-wrapper {
  padding-block: calc(10px + 50 * (100vw - 320px) / 1600) calc(15px + 75 * (100vw - 320px) / 1600);
  position: relative;
}
@media (max-width: 1399px) {
  .home-wrapper .home-content-wrapper {
    padding: 0;
  }
}
.home-wrapper .home-content-wrapper .home-content {
  text-align: center;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  margin-left: calc(20px + 140 * (100vw - 320px) / 1600);
  margin-top: -25px;
}
@media (max-width: 1399px) {
  .home-wrapper .home-content-wrapper .home-content {
    margin-left: 0;
    margin-top: 25px;
    padding-bottom: calc(10px + 30 * (100vw - 320px) / 1600);
  }
}
.home-wrapper .home-content-wrapper .home-content .top-part {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
@media (max-width: 1399.99px) {
  .home-wrapper .home-content-wrapper .home-content .top-part {
    align-items: center;
    justify-content: center;
  }
}
.home-wrapper .home-content-wrapper .home-content .top-part .service-tag {
  display: flex;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  padding: calc(4px + 4 * (100vw - 320px) / 1600) calc(13px + 7 * (100vw - 320px) / 1600);
  color: rgba(var(--title-color), 1);
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(69, 97, 115, 0.3) 0%, rgba(69, 97, 115, 0) 100%);
  margin-bottom: calc(15px + 10 * (100vw - 320px) / 1600);
}
.home-wrapper .home-content-wrapper .home-content .top-part .service-tag span {
  line-height: 1;
  font-size: calc(13px + 5 * (100vw - 320px) / 1600);
  color: rgba(var(--theme-color), 1);
  font-weight: 400;
}
.home-wrapper .home-content-wrapper .home-content .top-part h1 {
  font-weight: 700;
  color: rgba(var(--secondary-color), 1);
  text-transform: capitalize;
  line-height: 1.3;
  font-size: calc(20px + 40 * (100vw - 320px) / 1600);
  text-align: start;
  margin-bottom: calc(8px + 4 * (100vw - 320px) / 1600);
}
@media (max-width: 1399.99px) {
  .home-wrapper .home-content-wrapper .home-content .top-part h1 {
    text-align: center;
  }
}
@media (max-width: 992.98px) {
  .home-wrapper .home-content-wrapper .home-content .top-part h1 {
    width: 100%;
  }
}
.home-wrapper .home-content-wrapper .home-content .top-part h1 .text-swiper-wrapper {
  display: inline-flex;
}
@media (max-width: 1299px) {
  .home-wrapper .home-content-wrapper .home-content .top-part h1 .text-swiper-wrapper {
    display: block;
  }
}
.home-wrapper .home-content-wrapper .home-content .top-part h1 .text-swiper .swiper-slide {
  font-weight: 700;
  font-size: calc(20px + 50 * (100vw - 320px) / 1600);
  line-height: 1.1;
}
.home-wrapper .home-content-wrapper .home-content .top-part h1 .text-swiper .swiper-slide span {
  background: linear-gradient(90deg, #456173 25%, #6f8f9e 75%);
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  display: inline-block !important;
}
.home-wrapper .home-content-wrapper .home-content .top-part h1 .text-swiper .swiper-slide.one span {
  background: linear-gradient(90deg, #bfa893 25%, #d8c3a5 75%);
}
.home-wrapper .home-content-wrapper .home-content .top-part h1 .text-swiper .swiper-slide.two span {
  background: linear-gradient(90deg, #749a48 25%, #9bcf6a 75%);
}
.home-wrapper .home-content-wrapper .home-content .top-part h1 .text-swiper .swiper-slide.three span {
  background: linear-gradient(90deg, #afcb8b 25%, #cddfb5 75%);
}
.home-wrapper .home-content-wrapper .home-content .top-part h1 .text-swiper .swiper-slide.four span {
  background: linear-gradient(90deg, #909477 25%, #b5b89a 75%);
}
.home-wrapper .home-content-wrapper .home-content .top-part h1 .text-swiper .swiper-slide.five span {
  background: linear-gradient(90deg, #6a736d 25%, rgba(106, 115, 109, 0.5254901961) 75%);
}
.home-wrapper .home-content-wrapper .home-content .top-part h1 .text-swiper .swiper-slide.six span {
  background: linear-gradient(90deg, #2d82ff 25%, rgba(45, 129, 255, 0.5215686275) 75%);
}
.home-wrapper .home-content-wrapper .home-content .top-part h1 .text-swiper {
  height: calc(32px + 55 * (100vw - 320px) / 1600);
  overflow: hidden;
}
@media (max-width: 768px) {
  .home-wrapper .home-content-wrapper .home-content .top-part h1 {
    display: block;
  }
}
.home-wrapper .home-content-wrapper .home-content .top-part p {
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-align: start;
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1600);
}
@media (max-width: 1399.99px) {
  .home-wrapper .home-content-wrapper .home-content .top-part p {
    text-align: center;
  }
}
@media (max-width: 992.98px) {
  .home-wrapper .home-content-wrapper .home-content .top-part p {
    width: 100%;
  }
}
.home-wrapper .home-content-wrapper .home-content .top-part .demo-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(8px + 7 * (100vw - 320px) / 1600);
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .home-wrapper .home-content-wrapper .home-content .top-part .demo-button {
    flex-direction: column;
    width: 100%;
  }
}
.home-wrapper .home-content-wrapper .home-content .top-part .demo-button .solid-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--secondary-color), 1);
}
.home-wrapper .home-content-wrapper .home-content .top-part .demo-button .outline-btn {
  border-color: rgba(var(--secondary-color), 1);
  color: rgba(var(--secondary-color), 1);
}
.home-wrapper .home-content-wrapper .home-content .top-part .demo-button .outline-btn:hover {
  background-color: rgba(var(--secondary-color), 1);
  color: rgba(var(--white), 1);
  transition: 0.4s ease;
}
.home-wrapper .home-content-wrapper .preview-wrapper .align-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-wrapper .home-content-wrapper .preview-wrapper .align-wrapper .border-image.i-2 {
  position: relative;
  display: block;
  width: 1132px;
  max-width: 100%;
  aspect-ratio: 1133/640;
  height: auto;
  margin: 0 auto;
  left: 0;
  top: -10%;
}
@media (max-width: 1399.98px) {
  .home-wrapper .home-content-wrapper .preview-wrapper .align-wrapper .border-image.i-2 {
    top: 0;
    margin-top: calc(0px + 40 * (100vw - 320px) / 1080);
    left: 50px;
  }
}
@media (max-width: 900px) {
  .home-wrapper .home-content-wrapper .preview-wrapper .align-wrapper .border-image.i-2 {
    left: -8px;
  }
}
@media (min-width: 1600px) {
  .home-wrapper .home-content-wrapper .preview-wrapper .align-wrapper .border-image.i-2 {
    height: calc(500px + 140 * (100vw - 1600px) / 320);
    width: calc(1000px + 132 * (100vw - 1600px) / 320);
    max-width: calc(1000px + 132 * (100vw - 1600px) / 320);
    aspect-ratio: calc(1000px + 132 * (100vw - 1600px) / 320)/calc(500px + 140 * (100vw - 1600px) / 320);
  }
}
@media screen and (max-width: 1600px) and (min-width: 1400px) {
  .home-wrapper .home-content-wrapper .preview-wrapper .align-wrapper .border-image.i-2 {
    height: calc(400px + 100 * (100vw - 1400px) / 520);
    width: calc(800px + 200 * (100vw - 1400px) / 520);
    max-width: calc(800px + 200 * (100vw - 1400px) / 520);
    aspect-ratio: calc(800px + 200 * (100vw - 1400px) / 520)/calc(400px + 100 * (100vw - 1400px) / 520);
  }
}
.home-wrapper .home-content-wrapper .preview-wrapper .align-wrapper .border-image.i-2::before {
  content: "";
  background-image: url("../images/landing-page/banner/frame.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(6px + 6 * (100vw - 320px) / 1600);
  left: calc(-30px + -50 * (100vw - 320px) / 1600);
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  .home-wrapper .home-content-wrapper .preview-wrapper .align-wrapper .border-image.i-2::before {
    left: 0;
  }
}
.home-wrapper .home-content-wrapper .preview-wrapper .align-wrapper .border-image.i-2 .banner-swiper {
  position: absolute;
  top: 3.453%;
  left: 4.723%;
  width: 78.552%;
  height: 91.093%;
  z-index: 1;
  border-radius: calc(2px + 4 * (100vw - 320px) / 1600);
  overflow: hidden;
}
.home-wrapper .home-content-wrapper .preview-wrapper .align-wrapper .border-image.i-2 .banner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .home-wrapper .home-content-wrapper .preview-wrapper .align-wrapper .border-image.i-2 .banner-swiper {
    left: calc(30px + 50 * (100vw - 320px) / 580);
    top: 8px;
  }
}

/*===============
  06. Demo
=================*/
.demo-main-box .demo-box {
  border: 1px solid rgba(var(--content-color), 0.1);
  padding: 18px;
  border-radius: 10px;
  transition: 0.4s ease;
}
.demo-main-box .demo-box .demo-image-box {
  background-color: rgba(var(--light-bg-color), 1);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}
.demo-main-box h3 {
  color: rgba(var(--title-color), 1);
  padding-block: 10px 20px;
  text-align: center;
  transition: 0.4s ease;
  font-size: calc(18px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
}
.demo-main-box:hover h3 {
  color: rgba(var(--primary-color), 1);
  transition: 0.4s ease;
}
.demo-main-box:hover .demo-box {
  border-color: rgba(var(--primary-color), 1);
}

/*========================
  07. elements  section
==========================*/
.feature-section {
  background-color: rgba(var(--light-bg-color), 1);
}
.feature-section .element-box {
  background-color: rgba(var(--white), 1);
  padding: calc(16px + 14 * (100vw - 320px) / 1600) calc(18px + 8 * (100vw - 320px) / 1600);
  text-align: center;
  position: relative;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  height: 100%;
}
.feature-section .element-box .element-button {
  background-color: rgba(var(--secondary-color), 1);
  padding: calc(12px + 2 * (100vw - 320px) / 1600) 12px;
  border: 1px solid rgba(var(--primary-color), 1);
  border-radius: 7px;
  margin-top: calc(16px + 20 * (100vw - 320px) / 1600);
  transition: all 0.4s ease-in-out;
}
.feature-section .element-box .element-button h3 {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  font-weight: 400;
  color: rgba(var(--white), 1);
}
.feature-section .element-box .element-icon {
  height: calc(70px + 20 * (100vw - 320px) / 1600);
  width: calc(70px + 20 * (100vw - 320px) / 1600);
  background-color: rgba(var(--primary-color), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
}
.feature-section .element-box .element-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px dashed rgba(var(--primary-color), 1);
  border-radius: 50%;
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.feature-section .element-box .element-icon svg {
  fill: rgba(var(--primary-color), 1);
  width: calc(35px + 5 * (100vw - 320px) / 1600);
  height: calc(35px + 5 * (100vw - 320px) / 1600);
}
.feature-section .element-box .element-content {
  margin-top: calc(12px + 8 * (100vw - 320px) / 1600);
}
.feature-section .element-box .element-content p {
  letter-spacing: 0.1px;
  font-size: 16px;
  color: rgba(var(--content-color), 1);
  margin-top: calc(12px + 8 * (100vw - 320px) / 1600);
}
.feature-section .element-box:hover {
  box-shadow: 0px 2px 8px 0px rgba(var(--black), 0.1);
}
.feature-section .element-box:hover .element-icon::after {
  animation: rotate-1 8s infinite linear;
  opacity: 1;
}
.feature-section .element-box:hover .element-button {
  background-color: rgba(var(--white), 1);
}
.feature-section .element-box:hover .element-button h3 {
  color: rgba(var(--secondary-color), 1);
}

@keyframes rotate-1 {
  0% {
    transform: rotate(-360deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1.1);
  }
}
/* =============
08. inner page
================*/
.inner-page-section .inner-page-box {
  background-color: rgba(var(--light-bg-color), 1);
  padding: calc(8px + 2 * (100vw - 320px) / 1600);
  border-radius: 14px;
  box-shadow: -12px -1px 19px 0px rgba(61, 61, 61, 0.03);
  transition: 0.4s ease;
}
.inner-page-section .inner-page-box .inner-page-image {
  display: block;
  background-color: rgba(var(--white), 1);
  padding: calc(6px + 9 * (100vw - 320px) / 1600);
  border-radius: 10px;
  border: 1px solid rgba(var(--black), 0.12);
}
.inner-page-section .inner-page-box .inner-page-image .heading {
  text-align: center;
  margin-bottom: calc(6px + 9 * (100vw - 320px) / 1600);
}
.inner-page-section .inner-page-box .inner-page-image .heading h3 {
  font-size: calc(18px + 2 * (100vw - 320px) / 1600);
  font-weight: 600;
  transition: 0.4s ease;
  color: rgba(var(--title-color), 1);
}
.inner-page-section .inner-page-box .inner-page-image a img {
  border: 1px solid rgba(var(--primary-color), 0.5);
  border-radius: 8px;
  width: 100%;
}
@media (max-width: 600px) {
  .inner-page-section .inner-page-box .inner-page-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(10px + 5 * (100vw - 320px) / 1600);
  }
}
.inner-page-section .inner-page-box:hover {
  background-color: rgba(var(--primary-color), 0.2);
  transform: translateY(-5px);
  transition: 0.3s;
}
.inner-page-section .inner-page-box:hover .inner-page-image .heading h3 {
  color: rgba(var(--primary-color), 1);
  transition: 0.4s ease;
}

/* ==================
09. testimonial section 
======================*/
.testimonial-section-wrapper {
  background: linear-gradient(365deg, rgba(var(--primary-color), 0.04) 0%, rgba(var(--primary-color), 0.2) 30%, rgba(var(--primary-color), 0.2) 50%, rgba(var(--primary-color), 0.08) 80%, transparent 100%);
  position: relative;
  z-index: 2;
}
.testimonial-section-wrapper .custom-container {
  padding: 0 0;
}
.testimonial-section-wrapper .title h2 {
  color: rgba(var(--title-color), 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: calc(26px + 20 * (100vw - 320px) / 1600);
  font-weight: 700;
  overflow: hidden;
}
.testimonial-section-wrapper .testimonial-contents {
  position: relative;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.testimonial-section-wrapper .testimonial-contents .grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.testimonial-section-wrapper .testimonial-contents .card {
  background: rgba(var(--white), 1);
  padding: calc(16px + 14 * (100vw - 320px) / 1600) calc(16px + 14 * (100vw - 320px) / 1600);
  border-radius: calc(10px + 20 * (100vw - 320px) / 1600);
  overflow: hidden;
  cursor: pointer;
  min-width: calc(250px + 200 * (100vw - 320px) / 1600);
  border: none;
}
.testimonial-section-wrapper .testimonial-contents .card .contents {
  position: relative;
  padding-bottom: calc(12px + 8 * (100vw - 320px) / 1600);
  margin-bottom: calc(12px + 8 * (100vw - 320px) / 1600);
}
.testimonial-section-wrapper .testimonial-contents .card .contents::before {
  content: "";
  min-width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(var(--primary-color), 0)), color-stop(50%, rgba(var(--primary-color), 1)), to(rgba(var(--primary-color), 0)));
  background: linear-gradient(90deg, rgba(var(--primary-color), 0) 0%, rgba(var(--primary-color), 1) 50%, rgba(var(--primary-color), 0) 100%);
  position: absolute;
  bottom: 0;
}
.testimonial-section-wrapper .testimonial-contents .card .contents .stars {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 5px;
}
.testimonial-section-wrapper .testimonial-contents .card .contents p {
  font-size: 16px;
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-section-wrapper .testimonial-contents .card .profile-detail {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-top: auto;
}
.testimonial-section-wrapper .testimonial-contents .card .profile-detail img {
  height: calc(40px + 10 * (100vw - 320px) / 1600);
  min-width: calc(40px + 10 * (100vw - 320px) / 1600);
  border-radius: 100%;
  object-fit: cover;
}
.testimonial-section-wrapper .testimonial-contents .card .profile-detail .details h3 {
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  text-wrap: nowrap;
  font-size: calc(15px + 1 * (100vw - 320px) / 1600);
}
.testimonial-section-wrapper .testimonial-contents .card .profile-detail .details p {
  margin-top: 3px;
  font-size: 15px;
}
.testimonial-section-wrapper .testimonial-contents .auto-scroll {
  position: relative;
  width: 100%;
}
.testimonial-section-wrapper .testimonial-contents .scroll-inner {
  display: flex;
  will-change: transform;
  flex-direction: row;
  gap: calc(10px + 10 * (100vw - 320px) / 1600);
  animation: scrollleft 22s linear infinite;
  padding-top: 25px;
}
.testimonial-section-wrapper .testimonial-contents .auto-scroll.down .scroll-inner {
  animation-name: scrollright;
}
.testimonial-section-wrapper .testimonial-contents .auto-scroll:hover .scroll-inner {
  animation-play-state: paused;
}
@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes scrollleft {
  from {
    transform: translatex(0);
  }
  to {
    transform: translatex(-50%);
  }
}
@keyframes scrollright {
  from {
    transform: translatex(-50%);
  }
  to {
    transform: translatex(0);
  }
}

/*========================
 10.core feature  section
==========================*/
.core-section {
  background-color: rgba(var(--white), 1);
}
@media (min-width: 992px) {
  .core-section .feature-center .row:first-child > div .core-feature-box {
    margin-top: 0;
  }
}
.core-section .feature-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.core-section .feature-center .core-feature-box {
  background-color: rgba(var(--white), 1);
  padding: calc(20px + 10 * (100vw - 320px) / 1600) calc(10px + 10 * (100vw - 320px) / 1600);
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.05);
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.core-section .feature-center .core-feature-box img {
  width: calc(40px + 20 * (100vw - 320px) / 1600);
  height: calc(40px + 20 * (100vw - 320px) / 1600);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.core-section .feature-center .core-feature-box h3 {
  font-size: calc(15px + 3 * (100vw - 320px) / 1600);
  font-weight: 600;
  color: rgba(var(--secondary-color), 1);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.core-section .feature-center .core-feature-box:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
  border-color: rgba(var(--primary-color), 0.3);
}
.core-section .feature-center .core-feature-box:hover img {
  transform: scale(1.1);
}

/*========================
 11.footer  section
==========================*/
.footer-section {
  overflow: hidden;
  background-color: rgb(33, 52, 64);
}
.footer-section .footer-box .count-img {
  width: calc(80px + 40 * (100vw - 320px) / 1600);
  height: 70px;
}
.footer-section .footer-box .footer-details {
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
  text-align: center;
}
.footer-section .footer-box .footer-details h3 {
  font-size: calc(28px + 6 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 1);
}
.footer-section .footer-box .footer-details h5 {
  font-weight: 400;
  font-size: calc(14px + 8 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
  white-space: nowrap;
}
.footer-section .footer-box .footer-details p {
  margin-top: calc(3px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
}
.footer-section .footer-content {
  margin-top: calc(20px + 30 * (100vw - 320px) / 1600);
}
.footer-section .footer-content p {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(10px + 18 * (100vw - 320px) / 1600);
  line-height: 1.8;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 1199px) {
  .footer-section .footer-content p {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-content p {
    width: 100%;
  }
}
.footer-section .footer-content p span {
  line-height: 1;
}
.footer-section .footer-content p span .star {
  line-height: 1;
  width: calc(16px + 8 * (100vw - 320px) / 1600);
  height: calc(16px + 8 * (100vw - 320px) / 1600);
}
.footer-section .footer-content .more-button {
  margin-top: calc(10px + 15 * (100vw - 320px) / 1600);
}
.footer-section .footer-content .more-button .btn {
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
  font-weight: 400;
}
.footer-section .footer-content .footer-logo {
  width: calc(135px + 35 * (100vw - 320px) / 1600);
}
.footer-section .copyright-box {
  position: relative;
  text-align: center;
  margin-top: calc(20px + 30 * (100vw - 320px) / 1600);
  padding-block: calc(10px + 10 * (100vw - 320px) / 1600);
  border-top: 1px solid rgba(var(--white), 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576.98px) {
  .footer-section .copyright-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer-section .copyright-box p {
  position: relative;
  color: rgba(var(--white), 1);
  z-index: 1;
}
.footer-section .copyright-box .Powered-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(var(--white), 1);
}
.footer-section .copyright-box .Powered-sec .pixalstrap-logo {
  width: calc(100px + 50 * (100vw - 320px) / 1600);
  height: 30px;
}

/* ==================
   Tap To Top
=====================*/
.tap-to-top {
  position: fixed;
  bottom: calc(16px + 14 * (100vw - 320px) / 1600);
  right: calc(16px + 14 * (100vw - 320px) / 1600);
  width: calc(38px + 12 * (100vw - 320px) / 1600);
  height: calc(38px + 12 * (100vw - 320px) / 1600);
  border-radius: 100%;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(var(--white), 1);
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(var(--title-color), 0.1);
}
[dir=rtl] .tap-to-top {
  right: unset;
  left: calc(16px + 14 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
  .tap-to-top {
    bottom: calc(82px + 8 * (100vw - 320px) / 448);
  }
}
.tap-to-top.show {
  opacity: 1;
  visibility: visible;
}
.tap-to-top svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
}
.tap-to-top svg path {
  fill: none;
  stroke-width: 4;
  transition: all 0.2s ease-in-out;
}
.tap-to-top svg path.progress-background {
  stroke: rgba(var(--primary-color), 0.1);
  transition: all 0.2s ease-in-out;
}
.tap-to-top svg path.progress-path {
  stroke: rgba(var(--primary-color), 1);
  transition: all 0.2s ease-in-out;
  stroke-linecap: round;
}
.tap-to-top i {
  position: relative;
  font-size: calc(18px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--primary-color), 1);
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.tap-to-top:hover {
  transform: translateY(-3px);
  background-color: rgba(var(--primary-color), 1);
}
.tap-to-top:hover i {
  color: rgba(var(--white), 1);
}
.tap-to-top:hover svg {
  transform: scale(0.85);
}
.tap-to-top:hover svg path.progress-background {
  stroke: transparent;
}
.tap-to-top:hover svg path.progress-path {
  stroke: rgba(var(--white), 1);
}
