/******************
    Variable css
********************/
:root {
  --theme-color: 39, 119, 252;
  --title-color: 32, 35, 38;
  --content-color: 153, 153, 153;
  --secondary-color: 255, 224, 11;
  --box-bg: 238, 246, 255;
  --border-color: 221, 221, 221;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
}

/************************ 
    Reset css 
***********************/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

.theme-bg {
  background-color: rgba(var(--theme-color), 1) !important;
}

.custom-container {
  padding: 0 calc(20px + 175 * (100vw - 320px) / 1600);
}

.qr-btn {
  position: relative;
}
.qr-btn .qr-code {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  border: 1px solid black;
  border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
  z-index: 3;
}
@media (max-width: 991px) {
  .qr-btn .qr-code {
    display: none;
  }
}

/* typography css */
body {
  position: relative;
  font-family: "DM Sans", sans-serif;
  background-blend-mode: screen;
  background: rgba(var(--white), 1);
}
body::-webkit-scrollbar {
  scrollbar-width: none;
  width: 0px;
}

h1 {
  font-weight: 600;
  font-size: calc(25px + 31 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

h2 {
  font-weight: 500;
  font-size: calc(24px + 22 * (100vw - 320px) / 1600);
  margin-bottom: 0;
  display: inline-block;
}

h3 {
  font-weight: 500;
  font-size: calc(18px + 10 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

h4 {
  font-weight: 500;
  font-size: calc(16px + 6 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

h5 {
  font-weight: 500;
  font-size: calc(13px + 3 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

p {
  font-size: calc(12px + 1 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

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

li {
  list-style: none;
  display: inline-block;
  font-size: 14px;
}

/*********************
    Button css 
**********************/
.btn {
  padding: calc(10px + 8 * (100vw - 320px) / 1600) calc(15px + 10 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: calc(12px + 6 * (100vw - 320px) / 1600);
  border-radius: 6px;
  white-space: nowrap;
  border: none;
}
.btn:active {
  border: none;
  color: rgba(var(--white), 1) !important;
  background-color: rgba(var(--theme-color), 1) !important;
}

.btn-solid {
  padding: calc(8px + 4 * (100vw - 320px) / 1600) calc(15px + 10 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  border-radius: 30px;
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  font-weight: 500;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.btn-solid:hover {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
.btn-solid.btn-wide {
  font-weight: 500;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  padding: calc(5px + 5 * (100vw - 320px) / 1600) calc(20px + 10 * (100vw - 320px) / 1600);
}

.btn-outline {
  padding: calc(8px + 4 * (100vw - 320px) / 1600) calc(15px + 10 * (100vw - 320px) / 1600);
  font-weight: 500;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  border-radius: 30px;
  color: rgba(var(--theme-color), 1);
  background-color: transparent;
  border: 1px solid rgba(var(--theme-color), 1);
}
.btn-outline:hover {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}

/***************************
    Animation css 
****************************/
@-webkit-keyframes mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@-webkit-keyframes mover2 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes mover2 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
/***************************
    Title css 
****************************/
.title {
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1600);
}
.title h2 {
  font-size: calc(24px + 26 * (100vw - 320px) / 1600);
}
.title h3 {
  position: relative;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: calc(22px + 6 * (100vw - 320px) / 1600);
  color: rgba(var(--title-color), 1);
}
.title p {
  width: 50%;
  color: rgb(82, 82, 108);
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  opacity: 0.7;
  font-size: calc(13px + 3 * (100vw - 320px) / 1600);
  line-height: calc(20px + 6 * (100vw - 320px) / 1600);
}
@media (max-width: 991px) {
  .title p {
    width: 100%;
  }
}

/************************
    header section 
 ************************/
header {
  position: absolute;
  width: 100%;
  padding-top: calc(10px + 10 * (100vw - 320px) / 1600);
  z-index: 2;
  top: 0;
  left: 0;
}

.navbar {
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}
.navbar .btn {
  margin-left: auto;
}
.navbar .logo {
  width: auto;
  height: calc(30px + 20 * (100vw - 320px) / 1600);
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar .navbar-toggler {
  padding: 0;
  border: 0;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: calc(10px + 10 * (100vw - 320px) / 1600);
  padding: 6px;
  border-radius: 5px;
  background-image: none;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
  border: unset;
}
.navbar .navbar-toggler .navbar-toggler-icon i {
  font-size: 18px;
}
.navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse {
    position: absolute;
    left: 0;
    top: 35px;
    width: 100%;
    padding: 13px 17px;
    margin-top: 8px;
    color: rgba(var(--white), 1);
    background-color: rgba(var(--black), 1);
    border-radius: 8px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: rgba(var(--white), 0.7);
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
    color: rgba(var(--white), 1);
  }
}
.navbar .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(10px + 20 * (100vw - 320px) / 1600);
}
.navbar .navbar-nav .nav-item .nav-link {
  text-transform: capitalize;
  color: rgba(var(--white), 0.7);
  font-weight: 400;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  padding: 0;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--white), 1);
  font-weight: 700;
}

/***********************
    home section 
************************/
.home-wrapper {
  background-image: url(../../assets/images/background/home-bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
@media screen and (max-width: 1199px) {
  .home-wrapper {
    height: 80vh;
  }
}
@media screen and (max-width: 991px) {
  .home-wrapper {
    height: auto;
  }
}
.home-wrapper .padding-space {
  padding-top: calc(46px + 24 * (100vw - 320px) / 1600 + 30px + 70 * (100vw - 320px) / 1600);
  padding-bottom: calc(30px + 70 * (100vw - 320px) / 1600);
}
.home-wrapper h1 {
  text-transform: capitalize;
  color: rgba(var(--white), 1);
  line-height: 1.5;
  margin-bottom: calc(12px + 18 * (100vw - 320px) / 1600);
  width: 100%;
}
@media (max-width: 1400px) {
  .home-wrapper h1 {
    font-size: 36px;
  }
}
@media (max-width: 1199px) {
  .home-wrapper h1 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .home-wrapper h1 {
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  .home-wrapper h1 {
    font-size: 25px;
  }
}
@media (max-width: 460px) {
  .home-wrapper h1 {
    font-size: 20px;
  }
}
.home-wrapper h1 .title-img {
  width: calc(150px + 200 * (100vw - 320px) / 1600);
}
.home-wrapper h4 {
  color: rgba(var(--white), 0.7);
}
.home-wrapper .home-content {
  position: relative;
}
.home-wrapper .home-content .title-sm {
  color: rgba(var(--secondary-color), 1);
}
.home-wrapper .home-content .home-info {
  display: grid;
}
.home-wrapper .home-content .home-info .factors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(10px + 10 * (100vw - 320px) / 1600);
  padding-bottom: calc(10px + 10 * (100vw - 991px) / 929);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .home-wrapper .home-content .home-info .factors {
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .home-wrapper .home-content .home-info .factors img {
    width: 20px;
  }
}
.home-wrapper .home-content .home-info .factors h4 {
  color: rgba(var(--white), 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 1400px) {
  .home-wrapper .home-content .home-info .factors h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1080);
  }
}
.home-wrapper .home-content .download-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.home-wrapper .home-content .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 15px;
}
.home-wrapper .home-content .rating h5 {
  color: rgba(var(--content-color), 1);
  font-weight: 500;
}
.home-wrapper .home-content .rating h5 span {
  color: rgb(114, 228, 132);
}
.home-wrapper .home-content .rating h5 .rating-icon li .star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
}
.home-wrapper .home-content .google-play-btn {
  width: calc(115px + 35 * (100vw - 320px) / 1080);
  height: auto;
}
.home-wrapper .home-content .arrow-img {
  position: absolute;
  right: 70px;
  bottom: 10px;
  width: 250px;
  opacity: 0.4;
  -webkit-transform: rotate(75deg);
          transform: rotate(75deg);
}
@media (max-width: 1199px) {
  .home-wrapper .home-content .arrow-img {
    right: 50px;
    width: 200px;
  }
}
@media (max-width: 991px) {
  .home-wrapper .home-content .arrow-img {
    display: none;
  }
}
.home-wrapper .home-img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 991px) {
  .home-wrapper .home-img {
    display: none;
  }
}

/***************************
    Feature css
****************************/
.features-wrapper .card-body {
  padding: calc(15px + 15 * (100vw - 320px) / 1600);
  background-color: rgba(var(--white), 1);
  height: 100%;
  border: 1px solid #eee;
  border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.features-wrapper .card-body:hover {
  background-color: rgba(var(--theme-color), 0.1);
  cursor: pointer;
}
.features-wrapper .card-body:hover .icon-box {
  background-color: rgba(var(--theme-color), 1);
}
.features-wrapper .card-body:hover .card-logo {
  color: rgba(var(--white), 1);
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
@media (max-width: 576px) {
  .features-wrapper .card-body {
    text-align: center;
  }
}
.features-wrapper .card-body .icon-box {
  width: calc(50px + 10 * (100vw - 320px) / 1600);
  height: calc(50px + 10 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(var(--theme-color), 0.1);
  border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 576px) {
  .features-wrapper .card-body .icon-box {
    margin-left: auto;
    margin-right: auto;
  }
}
.features-wrapper .card-body .card-logo {
  width: calc(33px + 7 * (100vw - 320px) / 1600);
  height: calc(33px + 7 * (100vw - 320px) / 1600);
  -o-object-fit: contain;
     object-fit: contain;
}
.features-wrapper .card-body h4 {
  position: relative;
  margin-top: calc(13px + 7 * (100vw - 320px) / 1600);
  font-size: calc(18px + 2 * (100vw - 320px) / 1600);
  font-weight: 500;
  margin-bottom: 12px;
  padding-bottom: calc(7px + 3 * (100vw - 320px) / 1600);
}
.features-wrapper .card-body h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border: 1px solid rgba(var(--theme-color), 1);
  width: 60px;
}
@media (max-width: 576px) {
  .features-wrapper .card-body h4::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.features-wrapper .card-body .card-text {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgb(141, 143, 145);
  margin-top: 5px;
}

/***************************
   screenshots css
****************************/
.screenshots-section {
  width: 100%;
  overflow: hidden;
}
.screenshots-section .title p {
  width: 40%;
}
@media (max-width: 991px) {
  .screenshots-section .title p {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .screenshots-section .title p {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .screenshots-section .title p {
    width: 100%;
  }
}
.screenshots-section .screenshots-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: calc(20px + 130 * (100vw - 320px) / 1600);
  height: 100%;
}
@media (max-width: 1630px) {
  .screenshots-section .screenshots-content {
    padding-left: calc(20px + 85 * (100vw - 320px) / 1600);
  }
}
@media (max-width: 1200px) {
  .screenshots-section .screenshots-content {
    padding-left: calc(20px + 85 * (100vw - 320px) / 1600);
    padding-right: calc(20px + 85 * (100vw - 320px) / 1600);
    padding-block: calc(20px + 60 * (100vw - 320px) / 1600);
  }
}
.screenshots-section .screenshots-content h3 {
  font-weight: 600;
  font-size: calc(24px + 16 * (100vw - 320px) / 1600);
  color: rgba(var(--title-color), 1);
}
.screenshots-section .screenshots-content p {
  font-weight: 400;
  font-size: calc(15px + 5 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
  margin-top: 15px;
}
.screenshots-section .screenshots-content .content-info {
  margin-top: calc(15px + 15 * (100vw - 320px) / 1600);
}
.screenshots-section .screenshots-content .content-info li {
  margin-bottom: 10px;
}
.screenshots-section .screenshots-content .content-info li:last-child {
  margin-bottom: 0;
}
.screenshots-section .screenshots-content .content-info li .factors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.screenshots-section .screenshots-content .content-info li .factors h4 {
  color: rgba(var(--title-color), 1);
}
.screenshots-section .screenshots-slider {
  padding: calc(20px + 65 * (100vw - 320px) / 1600) 0 calc(20px + 65 * (100vw - 320px) / 1600) calc(20px + 5 * (100vw - 320px) / 1600);
  background-image: url(../../assets/images/background/screen-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1200px) {
  .screenshots-section .screenshots-slider {
    padding-right: calc(20px + 5 * (100vw - 320px) / 1600);
    padding: calc(20px + 40 * (100vw - 320px) / 1600) 0 calc(20px + 40 * (100vw - 320px) / 1600) calc(20px + 5 * (100vw - 320px) / 1600);
  }
}
.screenshots-section .screenshots-slider .screenshots-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.screenshots-section .screenshots-slider .screenshots-wrapper .screenshots {
  padding: 10px;
  text-align: center;
}
.screenshots-section .screenshots-slider .screenshots-wrapper .screenshots .screen-img {
  width: 80%;
  border-radius: 8px;
  -webkit-filter: drop-shadow(6px 8px 20px rgba(var(--black), 0.05));
          filter: drop-shadow(6px 8px 20px rgba(var(--black), 0.05));
}
.screenshots-section .screenshots-slider .screenshots-wrapper .screenshots .screenshot-name {
  position: relative;
  text-align: center;
  background-color: rgba(var(--theme-color), 0.1);
  border-radius: 10px;
  padding: calc(10px + 10 * (100vw - 320px) / 1600);
  margin-top: 25px;
  height: 100%;
}
.screenshots-section .screenshots-slider .screenshots-wrapper .screenshots .screenshot-name::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 45px;
  height: 3px;
  background-color: rgb(255, 185, 1);
  -webkit-box-shadow: 0px 10px 10px rgba(82, 77, 141, 0.04), 0px 8.69547px 6.95638px rgba(82, 77, 141, 0.06), 0px 4.6181px 3.69448px rgba(82, 77, 141, 0.0484671), 0px 1.9217px 1.53736px rgba(82, 77, 141, 0.0337375);
          box-shadow: 0px 10px 10px rgba(82, 77, 141, 0.04), 0px 8.69547px 6.95638px rgba(82, 77, 141, 0.06), 0px 4.6181px 3.69448px rgba(82, 77, 141, 0.0484671), 0px 1.9217px 1.53736px rgba(82, 77, 141, 0.0337375);
  border-radius: 0px 0px 10px 10px;
}
.screenshots-section .screenshots-slider .screenshots-wrapper .screenshots .screenshot-name h5 {
  font-weight: 500;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 1);
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/***************************
   app-features css
****************************/
.app-features-sec {
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .app-features-sec {
    padding-bottom: 50px;
  }
}
.app-features-sec .feature-box {
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.app-features-sec .feature-box:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.app-features-sec .feature-box .core-feature {
  position: relative;
  width: calc(60px + 40 * (100vw - 320px) / 1600);
  height: calc(60px + 40 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(var(--theme-color), 0.1);
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  margin-bottom: calc(5px + 10 * (100vw - 320px) / 1600);
  padding: 15px;
}
.app-features-sec .feature-box .core-feature .app-icons {
  width: calc(35px + 25 * (100vw - 320px) / 1600);
  height: calc(35px + 25 * (100vw - 320px) / 1600);
  -o-object-fit: contain;
     object-fit: contain;
}
.app-features-sec .feature-box h4 {
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  text-align: center;
}

/***************************
   Footer css
****************************/
.footer-wrapper {
  position: relative;
  padding: calc(20px + 50 * (100vw - 320px) / 1600);
  background-image: url(../../assets/images/background/footer-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin-top: 20px;
}
.footer-wrapper .footer-content .footer-logo {
  position: absolute;
  width: calc(70px + 50 * (100vw - 320px) / 1600);
  height: calc(70px + 50 * (100vw - 320px) / 1600);
  top: calc(-35px + -15 * (100vw - 320px) / 1600);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(var(--theme-color), 1);
  border: 8px solid rgba(var(--white), 1);
  border-radius: 100%;
  -webkit-box-shadow: inset 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
}
.footer-wrapper .footer-content .footer-logo .logo {
  width: calc(30px + 20 * (100vw - 320px) / 1600);
}
.footer-wrapper .footer-content h3 {
  color: rgba(var(--white), 1);
  font-size: calc(20px + 15 * (100vw - 320px) / 1600);
  width: 38%;
  line-height: 1.5;
  margin: 0 auto;
  margin-top: 30px;
  letter-spacing: 2px;
}
@media (max-width: 1199px) {
  .footer-wrapper .footer-content h3 {
    width: 100%;
  }
}
.footer-wrapper .footer-content h5 {
  color: rgba(var(--white), 0.5);
  font-weight: 400;
  font-size: calc(14px + 6 * (100vw - 320px) / 1600);
  width: 38%;
  line-height: 1.5;
  margin: 0 auto;
  margin-top: calc(10px + 5 * (100vw - 320px) / 1600);
}
@media (max-width: 1199px) {
  .footer-wrapper .footer-content h5 {
    width: 100%;
  }
}
.footer-wrapper .footer-content .powered-part {
  margin-top: calc(20px + 20 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20px + 10 * (100vw - 320px) / 1600);
}
.footer-wrapper .footer-content .powered-part span {
  color: rgba(var(--white), 0.5);
  font-size: 16px;
}
.footer-wrapper .footer-content .powered-part .powered-logo {
  height: calc(20px + 20 * (100vw - 320px) / 1600);
}

/***************************
   Tap to top css
****************************/
.scroll-to-top {
  z-index: 4;
  position: fixed;
  right: 30px;
  bottom: 140px;
  width: calc(30px + 20 * (100vw - 320px) / 1600);
  height: calc(30px + 20 * (100vw - 320px) / 1600);
  border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
  background-color: rgba(var(--theme-color), 1);
  border: none;
  font-size: calc(20px + 10 * (100vw - 320px) / 1600);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  outline: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.scroll-to-top .arrow {
  color: rgba(var(--white), 1);
}
@media (max-width: 991px) {
  .scroll-to-top {
    bottom: 30px;
  }
}
/*# sourceMappingURL=style.css.map */