@import url("https://fonts.googleapis.com/css2?family=Proxima+Nova:wght@100;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Proxima+Nova:wght@100;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Proxima+Nova:wght@100;400;700&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 0.8rem;
  }
}

.ul-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #001f2d;
  font-family: "Proxima Nova", sans-serif;
}

img {
  width: 100%;
}

.global-width {
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (min-width: 768px) {
  .global-width {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .global-width {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .global-width {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

::-webkit-scrollbar {
  width: 0.8rem;
  height: 0.3rem;
}

::-webkit-scrollbar-thumb {
  background: #8F9BB3;
  border-radius: 0.3rem;
  opacity: 0.3;
}

::-webkit-scrollbar-thumb:hover {
  background: #8F9BB3;
  opacity: 0.3;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.0784313725);
  border-radius: 0.3rem;
}

.btn {
  opacity: 1;
  outline: 0;
  color: #fff;
  line-height: 4rem;
  position: relative;
  text-align: center;
  letter-spacing: 0.0625rem;
  display: inline-block;
  text-decoration: none;
  font-family: "Proxima Nova", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .btn {
    margin-bottom: 1rem;
  }
  .btn:last-child {
    margin-bottom: 0;
  }
}
.btn:hover:after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.btn:hover:before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}
.btn:after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  color: #fff;
  display: block;
  transition: all 0.3s ease-in-out 0.3s ease;
  position: absolute;
  background: #e20142;
  content: attr(data-back);
  transform: translateY(-50%) rotateX(90deg);
  border-radius: 0.4rem;
  font-weight: 600;
}
.btn:before {
  top: 0;
  left: 0;
  opacity: 1;
  color: #fff;
  display: block;
  padding: 0 3rem;
  line-height: 4rem;
  transition: all 0.3s ease-in-out 0.3s ease;
  position: relative;
  background: #36C1CC;
  content: attr(data-front);
  transform: translateY(0) rotateX(0);
  border-radius: 0.4rem;
  font-weight: 600;
}
.btn.color::before {
  background-color: #fff;
  color: #36C1CC;
  border: 0.1rem solid #36C1CC;
}
.btn.color::after {
  background-color: #36C1CC;
  color: #fff;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1rem;
  background-color: #fff;
}

.navbar {
  width: 100%;
  height: 6rem;
  margin-inline: auto;
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  height: 100%;
}
.navbar-inner .logo-img {
  display: flex;
}
.navbar-block {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  background-color: #fff;
  transition: all 0.3s ease-in-out 0.3s ease;
}
.navbar-block.is-active {
  opacity: 1;
  pointer-events: initial;
}
.navbar .image {
  height: 4.8rem;
}
@media only screen and (max-width: 767px) {
  .navbar .image {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .navbar .image {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 62rem) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar-block {
    position: initial;
    height: initial;
    opacity: 1;
    overflow: auto;
    pointer-events: visible;
    background: none;
    transition: none;
  }
}
.menu-link.active {
  color: #FE0083;
}

.demo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.125rem;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FE0083;
  color: #fff;
  border-radius: 2.5rem;
  padding: 0 1rem;
  text-wrap: nowrap;
  border: none;
}

.menu-item {
  padding-block: 1rem;
}
@media (max-width: 480px) {
  .menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.menu-item .login {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: inherit;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  transition: all 0.3s ease-in-out 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .menu-item .login.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    width: 13.5rem;
    color: #FE0083;
    border-radius: 2.5rem;
    padding: 0 1rem;
    border: none;
    outline: none;
    cursor: pointer;
    border: 1px solid;
  }
  .menu-item .login.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    width: 20rem;
    background-color: #FE0083;
    color: #fff;
    border-radius: 2.5rem;
    padding: 0 1rem;
  }
  .menu-item .login.contact-btn:hover {
    background-color: #e20142;
  }
}
.menu-item:hover {
  color: #36C1CC;
}

.navbar-block {
  position: relative;
  z-index: 10;
}

.menu {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  height: 100%;
  padding: unset;
  align-items: center;
}
.menu-item {
  display: flex;
  cursor: pointer;
  padding-inline: 0.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-item {
    font: size 2rem;
  }
}
.menu-link {
  padding: unset;
  color: #001f2d;
}
.menu-link.login {
  position: relative;
  z-index: 200;
}
@media (max-width: 480px) {
  .menu {
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .list-item {
    display: list-item;
  }
}

.menu-width {
  width: 1666px;
}

.menu-header {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  height: 100%;
  padding: unset;
}
@media only screen and (max-width: 767px) {
  .menu-header {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-header {
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem;
  }
}
.menu-header-item {
  display: flex;
  cursor: pointer;
  padding-inline: 0.5rem;
}
.menu-header-link {
  padding: unset;
}

.dropdown-toggle {
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.dropdown-toggle i.bx {
  font-size: 1.5rem;
  line-height: inherit;
  transition: all 0.3s ease-in-out 0.3s ease;
}
.dropdown-content {
  height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0.3s ease;
}
.dropdown-column, .dropdown-group, .dropdown-items {
  display: grid;
}
.dropdown-group {
  padding-bottom: 1rem;
  padding-inline: 1.5rem;
}
.dropdown-title {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding-inline: 1rem;
}
.dropdown-icon i.bx {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #001f2d;
}
.dropdown-items {
  row-gap: 0.5rem;
  padding-inline: 3.5rem;
  padding-top: 0.35rem;
}
.dropdown-link {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: inherit;
  color: #000;
  transition: all 0.3s ease-in-out 0.3s ease;
}
.dropdown-show > .dropdown-toggle i.bx {
  rotate: 180deg;
}
.dropdown-block {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding-top: 1rem;
  padding-inline: 1rem;
}

@media screen and (min-width: 62rem) {
  .dropdown-toggle {
    -moz-column-gap: 0.35rem;
         column-gap: 0.35rem;
    pointer-events: none;
  }
  .dropdown-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 6rem;
    opacity: 0;
    height: -moz-max-content;
    height: max-content;
    pointer-events: none;
    background-color: #fff;
    border-top: 0.2rem solid #0056b3;
    box-shadow: rgba(149, 157, 165, 0.2) 0 0.8rem 2.4rem;
    transition: top 0.4s, opacity 0.3s ease;
  }
  .dropdown-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    max-width: 75rem;
    margin-inline: auto;
  }
  .dropdown-group {
    align-content: baseline;
    row-gap: 1.25rem;
    padding-block: 4rem;
  }
  .dropdown-group:first-child, .dropdown-group:last-child {
    margin: unset;
  }
  .dropdown-items {
    padding-top: unset;
  }
  .dropdown-block {
    padding-top: unset;
    padding-inline: unset;
  }
  .dropdown:hover > .dropdown-content {
    cursor: initial;
    top: 4.25rem;
    opacity: 1;
    pointer-events: initial;
  }
  .dropdown:hover > .dropdown-toggle i.bx {
    rotate: 180deg;
  }
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 1.5rem;
  height: 1rem;
  border: none;
  outline: none;
  visibility: visible;
}
.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.5px;
  opacity: 1;
  rotate: 0deg;
  border-radius: 0.15rem;
  background-color: #000;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active > .burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}
.burger.is-active > .burger-line:nth-child(2) {
  opacity: 0;
}
.burger.is-active > .burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

@media screen and (min-width: 62rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
@keyframes fade-out {
  100% {
    opacity: 0;
    scale: 1.2;
  }
}
.content-main {
  position: relative;
  padding: 4rem 0;
  margin-top: 16rem;
}
@media only screen and (max-width: 767px) {
  .content-main {
    margin-top: 10rem;
    padding: 3rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-main {
    margin-top: 10rem;
  }
}
.content-main .main-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .content-main .main-cont {
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-main .main-cont {
    flex-direction: column;
    align-items: flex-start;
  }
}
.content-main .main-cont::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -11.4rem;
  right: -17.7rem;
  width: 86rem;
  height: 69.7rem;
  background-image: url("../../assets/images/hero-section.png");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .content-main .main-cont::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-main .main-cont::after {
    display: none;
  }
}
.content-main .cont-left {
  width: 53%;
}
@media only screen and (max-width: 767px) {
  .content-main .cont-left {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-main .cont-left {
    width: 100%;
  }
}
.content-main .cont-rgt {
  width: 50rem;
  height: 50rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .content-main .cont-rgt {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-main .cont-rgt {
    display: none;
  }
}
.content-main .cont-rgt .mobile-hero-img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .content-main .cont-rgt .mobile-hero-img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-main .cont-rgt .mobile-hero-img {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .content-main .cont-rgt {
    display: none;
  }
}
.content-main .mobile-image {
  display: none;
}
@media only screen and (max-width: 767px) {
  .content-main .mobile-image {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-main .mobile-image {
    display: block;
  }
}
.content-main .head-cont {
  font-size: 5.6rem;
  margin: 0;
  font-weight: 700;
  line-height: 67px;
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  .content-main .head-cont {
    font-size: 3.6rem;
  }
  .content-main .head-cont br {
    display: none;
  }
}
.content-main .highlighted {
  background-color: #FCE7F1;
  display: inline-block;
  padding: 0 4px;
  line-height: 67px;
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  .content-main .highlighted {
    display: inline;
  }
}
.content-main .para-cont {
  font-size: 1.6rem;
  color: #565656;
  font-weight: 500;
  letter-spacing: 0.12px;
}
@media only screen and (max-width: 767px) {
  .content-main .para-cont {
    font-size: 1.4rem;
  }
  .content-main .para-cont br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-main .para-cont br {
    display: none;
  }
}
.content-main .email-form {
  margin-top: 3rem;
}
.content-main .email-form .form-inner {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .content-main .email-form .form-inner {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-main .email-form .form-inner {
    justify-content: center;
  }
}
.content-main .email-form .input-wrapper {
  display: flex;
  align-items: center;
  background-color: #f8f6f6;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  width: 27rem;
  height: 3.8rem;
}
@media only screen and (max-width: 767px) {
  .content-main .email-form .input-wrapper {
    width: 100%;
    height: 5rem;
  }
}
.content-main .email-form .email-input {
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  font-size: 1.2rem;
  flex: 1;
  outline: none;
  color: #333;
}
.content-main .email-form .email-input::-moz-placeholder {
  color: #999;
}
.content-main .email-form .email-input::placeholder {
  color: #999;
}
.content-main .email-form .email-input:-webkit-autofill, .content-main .email-form .email-input:-webkit-autofill:hover, .content-main .email-form .email-input:-webkit-autofill:focus, .content-main .email-form .email-input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333 !important;
  box-shadow: 0 0 0px 1000px #f8f6f6 inset !important;
}
.content-main .email-form .search-box {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin-left: 1rem;
  box-shadow: none;
  cursor: pointer;
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-main .email-form .search-box img {
  width: 5rem;
  height: 5rem;
  display: block;
  border: none;
  outline: none;
}
@media only screen and (max-width: 767px) {
  .content-main .email-form .search-box img {
    width: 100%;
    height: auto;
  }
}
.content-main .email-form .search-box:focus, .content-main .email-form .search-box:active, .content-main .email-form .search-box:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
@media only screen and (max-width: 767px) {
  .content-main .email-form .search-box {
    align-self: flex-end;
    margin-top: 0;
  }
}
.content-main .email-form .submission-result {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #565656;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .content-main .email-form .submission-result {
    text-align: center;
    font-size: 1.2rem;
  }
}
.content-main .email-form .formloader {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #BFBFBF;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .content-main .email-form .formloader {
    text-align: center;
    font-size: 1.2rem;
  }
}
.content-main .login-text {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #999;
}
.content-main .login-text .sign-link {
  font-weight: 500;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .content-main .login-text {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-main .login-text {
    text-align: center;
  }
}

.login-text {
  margin-top: 3.6rem;
  font-size: 1.6rem;
  color: #BFBFBF;
}
.login-text .sign-link {
  color: #ff007a;
  font-weight: 600;
  text-decoration: none;
}
.login-text .sign-link:hover {
  text-decoration: underline;
}

.header-main {
  z-index: 9;
}

.header {
  position: relative;
  z-index: 10;
}

.trusted-companies {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
  margin-top: 3rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .trusted-companies {
    margin-top: -0.3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .trusted-companies {
    margin-top: 0;
  }
}
.trusted-companies .sub-head {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: #333;
  letter-spacing: -1.5px;
  line-height: 45px;
}
.trusted-companies .logo-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.trusted-companies .logo-row {
  display: flex;
  align-items: center;
  gap: 7rem;
  animation: scroll-left 30s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
.trusted-companies .logo-row img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.trusted-companies .logo-row img:hover {
  filter: grayscale(0%);
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.platform-business {
  margin-top: 13rem;
}
@media only screen and (max-width: 767px) {
  .platform-business {
    margin-top: 8rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-business {
    margin-top: 10rem;
  }
}
.platform-business .platform-cont {
  font-size: 4.2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 55px;
}
@media only screen and (max-width: 767px) {
  .platform-business .platform-cont {
    font-size: 2.8rem;
    text-align: center;
  }
}
.platform-business .para-cont {
  font-size: 1.6rem;
  color: #565656;
  font-weight: 500;
  letter-spacing: 0.12px;
  text-align: center;
  margin-top: -1rem;
}
@media only screen and (max-width: 767px) {
  .platform-business .para-cont {
    text-align: center;
    font-size: 1.4rem;
  }
  .platform-business .para-cont br {
    display: none;
  }
}
.platform-business .network-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
  margin-top: 15rem;
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-business .network-cont {
    gap: 0;
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont.reverse-on-mobile {
    flex-direction: column-reverse;
  }
}
.platform-business .network-cont .left-cont {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont .left-cont {
    width: 100%;
    text-align: center;
  }
}
.platform-business .network-cont .left-cont .sub-content {
  font-size: 3.6rem;
  text-align: left;
  letter-spacing: -1.5px;
  line-height: 45px;
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont .left-cont .sub-content {
    font-size: 2.4rem;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-business .network-cont .left-cont .sub-content {
    font-size: 3rem;
  }
}
.platform-business .network-cont .left-cont .para-cont {
  font-size: 1.6rem;
  color: #565656;
  font-weight: 500;
  letter-spacing: 0.12px;
  text-align: left;
  margin-top: -1rem;
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont .left-cont .para-cont {
    font-size: 1.4rem;
  }
}
.platform-business .network-cont .right-cont {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont .right-cont {
    width: 100%;
    height: auto;
    min-height: 25rem;
  }
}
.platform-business .network-cont .right-cont .right-img {
  position: absolute;
  transition: transform 1s ease, opacity 1s ease;
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont .right-cont .right-img {
    position: absolute;
  }
}
.platform-business .network-cont .right-cont .bg-circle {
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont .right-cont .bg-circle {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 50rem;
  }
  .platform-business .network-cont .right-cont .bg-circle img {
    width: 100%;
    max-width: 100%;
  }
}
.platform-business .network-cont .right-cont .left-img {
  z-index: 2;
  left: 5rem;
  top: 12rem;
}
.platform-business .network-cont .right-cont .left-img img {
  width: 8rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-business .network-cont .right-cont .left-img img {
    width: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont .right-cont .left-img {
    top: 13rem;
    left: 1rem;
  }
  .platform-business .network-cont .right-cont .left-img img {
    width: 5rem;
  }
}
.platform-business .network-cont .right-cont .right-card {
  z-index: 3;
  right: 0;
  top: -7.3rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-business .network-cont .right-cont .right-card {
    top: -2.3rem;
  }
}
.platform-business .network-cont .right-cont .right-card img {
  width: 28rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-business .network-cont .right-cont .right-card img {
    width: 15rem;
  }
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont .right-cont .right-card {
    top: -2rem;
    right: -1rem;
  }
  .platform-business .network-cont .right-cont .right-card img {
    width: 18rem;
  }
}
.platform-business .network-cont:hover .right-cont .left-img {
  transform: translate(4rem, -4rem) scale(1.1);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont:hover .right-cont .left-img {
    transform: translate(1rem, -1rem) scale(1.05);
  }
}
.platform-business .network-cont:hover .right-cont .right-card {
  transform: translate(-4rem, -2rem);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .platform-business .network-cont:hover .right-cont .right-card {
    transform: translate(-1rem, -0.5rem) scale(1.05);
  }
}
.platform-business .network-cont .graph {
  width: 100%;
}
.platform-business .m-t-300 {
  margin-top: 23.4rem;
}
@media only screen and (max-width: 767px) {
  .platform-business .m-t-300 {
    margin-top: 0rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-business .m-t-300 {
    margin-top: 9.4rem;
    gap: 4rem;
  }
}

.margin-t-100 {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .margin-t-100 {
    margin-top: 0;
  }
}

.content-work {
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  .content-work {
    padding: 4rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-work {
    padding: 2rem 0;
  }
}
.content-work .platform-cont {
  font-size: 4.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: left;
  letter-spacing: -1.5px;
  line-height: 45px;
}
@media only screen and (max-width: 767px) {
  .content-work .platform-cont {
    font-size: 3.2rem;
    text-align: center;
  }
}
.content-work .para-cont {
  font-size: 1.6rem;
  color: #565656;
  font-weight: 500;
  letter-spacing: 0.12px;
  max-width: 60rem;
  margin-bottom: 6rem;
  text-align: left;
  margin-top: -1rem;
}
@media only screen and (max-width: 767px) {
  .content-work .para-cont {
    font-size: 1.4rem;
    text-align: center;
    max-width: 100%;
    margin-bottom: 4rem;
  }
}
.content-work .steps-wrapper {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 5;
}
.content-work .steps-wrapper .step-card {
  position: sticky;
  top: 10rem;
  width: 100%;
  height: 50rem;
  border-radius: 2rem;
  padding: 5rem 3rem;
  text-align: center;
  margin-bottom: 0;
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease;
}
@media only screen and (max-width: 767px) {
  .content-work .steps-wrapper .step-card {
    position: sticky;
    top: 6rem;
    height: 40rem;
    margin-bottom: 0;
    transform: scale(1);
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-work .steps-wrapper .step-card {
    height: 40rem;
  }
}
@media only screen and (max-width: 767px) {
  .content-work .steps-wrapper .step-card {
    top: 5rem;
    height: 38rem;
  }
}
.content-work .steps-wrapper .step-signup {
  background-color: #f1e8fa;
  z-index: 1;
}
.content-work .steps-wrapper .step-connect {
  background-color: #FFEAE7;
  z-index: 2;
}
.content-work .steps-wrapper .step-trade {
  background-color: #F7E1E8;
  z-index: 3;
}
.content-work .steps-wrapper .step-business {
  background-color: #F8EEED;
  z-index: 4;
}
.content-work .steps-wrapper .signup-image,
.content-work .steps-wrapper .connect-image {
  width: 14rem;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .content-work .steps-wrapper .signup-image,
  .content-work .steps-wrapper .connect-image {
    width: 10rem;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-work .steps-wrapper .signup-image,
  .content-work .steps-wrapper .connect-image {
    margin-top: 3rem;
  }
}
.content-work .steps-wrapper .step-title {
  font-size: 4.2rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  letter-spacing: -1.5px;
}
@media only screen and (max-width: 767px) {
  .content-work .steps-wrapper .step-title {
    font-size: 2.8rem;
  }
}
.content-work .steps-wrapper .step-desc {
  font-size: 1.6rem;
  color: #333;
  font-weight: 500;
  margin-top: -1rem;
}
@media only screen and (max-width: 767px) {
  .content-work .steps-wrapper .step-desc {
    font-size: 1.4rem;
  }
}

.banner-screen {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .banner-screen {
    padding: 5rem 3.5rem;
  }
}
.banner-screen .banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  height: 40.8rem;
  border-radius: 2rem;
  padding: 6rem;
  background-color: #f8f6f6;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-screen .banner-container {
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .banner-screen .banner-container {
    flex-direction: column;
    text-align: center;
    height: 788px;
    padding: 4rem 2rem;
  }
}
.banner-screen .banner-content {
  max-width: 60rem;
}
.banner-screen .banner-content .banner-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
  line-height: 45px;
}
@media only screen and (max-width: 767px) {
  .banner-screen .banner-content .banner-title {
    font-size: 2.2rem;
  }
}
.banner-screen .banner-content .banner-subtitle {
  font-size: 1.6rem;
  color: #565656;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .banner-screen .banner-content .banner-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.banner-screen .banner-content .banner-btn {
  display: inline-block;
  background-color: #ff0080;
  color: #fff;
  font-weight: 500;
  padding: 1.2rem 2.4rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.banner-screen .banner-content .banner-btn:hover {
  background-color: #e60073;
}
@media only screen and (max-width: 767px) {
  .banner-screen .banner-content .banner-btn {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}
.banner-screen .banner-image {
  flex-shrink: 0;
}
.banner-screen .banner-image img {
  max-width: 30rem;
  height: auto;
  margin-top: 9.8rem;
}
@media only screen and (max-width: 767px) {
  .banner-screen .banner-image img {
    margin-top: 0;
    max-width: 19rem;
  }
}

.about-content {
  position: relative;
  padding: 4rem 0;
  margin-top: 16rem;
}
@media only screen and (max-width: 767px) {
  .about-content {
    margin-top: 6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-content {
    margin-top: 10rem;
  }
}
.about-content .sub-head-cont {
  font-size: 1.4rem;
  color: #FE0083;
}
@media only screen and (max-width: 767px) {
  .about-content .sub-head-cont {
    font-size: 1.2rem;
  }
}
.about-content .cont-abt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-content .cont-abt {
    flex-direction: column;
  }
}
.about-content .head-cont {
  font-size: 5.6rem;
  margin: 0;
  font-weight: 700;
  line-height: 67px;
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  .about-content .head-cont {
    font-size: 3.6rem;
  }
  .about-content .head-cont br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-content .head-cont br {
    display: none;
  }
}
.about-content .para-cont {
  font-size: 1.6rem;
  color: #565656;
  font-weight: 500;
  letter-spacing: 0.12px;
}
@media only screen and (max-width: 767px) {
  .about-content .para-cont {
    text-align: left;
    font-size: 1.4rem;
  }
  .about-content .para-cont br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-content .para-cont br {
    display: none;
  }
}
.about-content::after {
  content: "";
  background-image: url(../../assets/images/about-img.png);
  position: absolute;
  width: 50rem;
  height: 41.7rem;
  background-repeat: no-repeat;
  background-size: cover;
  right: -0.7rem;
  top: -5.4rem;
  z-index: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-content::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .about-content::after {
    width: 100%;
    height: auto;
    right: 0;
    top: 0;
    background-size: contain;
    background-position: center;
  }
}
.about-content .cont-rgt {
  display: none;
}
@media only screen and (max-width: 767px) {
  .about-content .cont-rgt {
    width: 60%;
    height: auto;
  }
}

.why-fit-section {
  padding: 8rem 0;
}
@media only screen and (max-width: 767px) {
  .why-fit-section {
    padding: 0;
  }
}
.why-fit-section .why-fit-container {
  background-color: #f8f6f6;
  padding: 6rem 4rem;
  border-radius: 2rem;
  text-align: center;
}
.why-fit-section .why-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4rem;
  text-align: center;
  letter-spacing: -1.5px;
  line-height: 45px;
}
@media only screen and (max-width: 767px) {
  .why-fit-section .why-title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .why-fit-section .why-title br {
    display: none;
  }
}
.why-fit-section .why-card-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .why-fit-section .why-card-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}
.why-fit-section .why-card {
  background-color: #fff;
  padding: 3rem 2rem;
  width: 30rem;
  height: 20rem;
  text-align: left;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.why-fit-section .why-card:hover {
  border-color: #ff0080;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .why-fit-section .why-card {
    max-width: 100%;
    height: auto;
    text-align: center;
    padding: 2rem;
  }
}
.why-fit-section .why-card .card-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .why-fit-section .why-card .card-title {
    font-size: 1.6rem;
  }
}
.why-fit-section .why-card .card-desc {
  font-size: 1.4rem;
  color: #555;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .why-fit-section .why-card .card-desc {
    font-size: 1.2rem;
  }
}
.why-fit-section .column-fit {
  background-color: #f5f5f7;
  padding: 3rem;
  height: 50rem;
}
@media only screen and (max-width: 767px) {
  .why-fit-section .column-fit {
    height: auto;
  }
}

.about-banner {
  background-color: #ff0080;
  padding: 12rem 2rem 6rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 100% 60rem;
  border-top-right-radius: 100% 60rem;
}
@media only screen and (max-width: 767px) {
  .about-banner {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    height: auto;
  }
}
.about-banner .about-banner-container {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .about-banner .about-banner-container {
    max-width: 100%;
  }
}
.about-banner .about-banner-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
  line-height: 45px;
}
@media only screen and (max-width: 767px) {
  .about-banner .about-banner-title {
    font-size: 2.4rem;
  }
}
.about-banner .about-banner-subtitle {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .about-banner .about-banner-subtitle {
    font-size: 1.4rem;
    max-width: 100%;
  }
}
.about-banner .about-banner-btn {
  background-color: #fff;
  color: #ff0080;
  padding: 1.2rem 2.4rem;
  font-weight: 500;
  border-radius: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.about-banner .about-banner-btn:hover {
  background-color: white;
}
@media only screen and (max-width: 767px) {
  .about-banner .about-banner-btn {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .about-banner {
    padding: 2rem 1rem 5rem;
    margin-top: 6rem;
  }
  .about-banner::before {
    top: -80px;
    height: 160px;
    border-bottom-left-radius: 100% 8rem;
    border-bottom-right-radius: 100% 8rem;
  }
}

.contact-section {
  padding: 8rem 0;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-section {
    padding: 4rem 0;
  }
}
.contact-section .head-cont {
  font-size: 5.6rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  line-height: 67px;
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  .contact-section .head-cont {
    font-size: 3.6rem;
  }
  .contact-section .head-cont br {
    display: none;
  }
}
.contact-section .contact-head {
  height: 33.4rem;
  background-color: #f5f5f7;
  padding: 6rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-head {
    padding: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-section .contact-head {
    height: 29.4rem;
  }
}
.contact-section .contact-head .para-cont {
  font-size: 1.6rem;
  color: #565656;
  font-weight: 500;
  letter-spacing: 0.12px;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-head .para-cont {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-head .para-cont br {
    display: none;
  }
}
.contact-section .contact-wrapper {
  max-width: 80rem;
  margin: -11.2rem auto;
  background: #fff;
  padding: 4rem;
  border-radius: 1.2rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-wrapper {
    border-radius: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-section .contact-wrapper {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-wrapper {
    padding: 2.4rem;
  }
}
.contact-section .contact-heading {
  margin-bottom: 3rem;
}
.contact-section .contact-heading .para-cont {
  font-size: 1.6rem;
  color: #565656;
  font-weight: 500;
  letter-spacing: 0.12px;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-heading .para-cont {
    text-align: center;
    font-size: 1.4rem;
  }
  .contact-section .contact-heading .para-cont br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-heading {
    text-align: center;
  }
}
.contact-section .contact-form .row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
.contact-section .contact-form .row.single {
  flex-direction: column;
}
.contact-section .contact-form .row .input-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-section .contact-form .row .input-field label {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.contact-section .contact-form .row .input-field label span {
  color: #e20142;
}
.contact-section .contact-form .row .input-field input,
.contact-section .contact-form .row .input-field select,
.contact-section .contact-form .row .input-field textarea {
  padding: 1.2rem 1.6rem;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
  outline: none;
}
.contact-section .contact-form .row .input-field textarea {
  min-height: 12rem;
  resize: none;
}
.contact-section .contact-form .privacy-note {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
}
.contact-section .contact-form .submit-btn {
  background-color: #FE0083;
  color: #fff;
  padding: 1.2rem 3rem;
  font-size: 1.4rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: background 0.3s;
}
.contact-section .contact-form .submit-btn:hover {
  background-color: #cc0062;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-form .row {
    flex-direction: column;
  }
  .contact-section .contact-form .row .input-field {
    width: 100%;
  }
}

.get-in-touch {
  margin-top: 9rem;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .get-in-touch {
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .get-in-touch {
    margin-top: -3rem;
  }
}
.get-in-touch .get-in-touch__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 17rem;
}
@media only screen and (max-width: 767px) {
  .get-in-touch .get-in-touch__content {
    gap: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .get-in-touch .get-in-touch__content {
    align-items: center;
    gap: 6rem;
  }
}
.get-in-touch .get-in-touch__content .left {
  flex: 1;
}
.get-in-touch .get-in-touch__content .left h2 {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
  line-height: 45px;
}
@media only screen and (max-width: 767px) {
  .get-in-touch .get-in-touch__content .left h2 {
    font-size: 3.2rem;
  }
}
.get-in-touch .get-in-touch__content .left .para-cont {
  font-size: 1.6rem;
  color: #565656;
  font-weight: 500;
  letter-spacing: 0.12px;
}
@media only screen and (max-width: 767px) {
  .get-in-touch .get-in-touch__content .left .para-cont {
    font-size: 1.4rem;
  }
  .get-in-touch .get-in-touch__content .left .para-cont br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .get-in-touch .get-in-touch__content .left {
    width: 100%;
  }
}
.get-in-touch .get-in-touch__content .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
@media only screen and (max-width: 767px) {
  .get-in-touch .get-in-touch__content .right {
    gap: 1rem;
  }
}
.get-in-touch .get-in-touch__content .right .contact-block {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.get-in-touch .get-in-touch__content .right .contact-block img {
  -o-object-fit: contain;
     object-fit: contain;
  color: #ff007a;
}
.get-in-touch .get-in-touch__content .right .contact-block .contact-img {
  width: 7rem;
  height: 7rem;
}
@media only screen and (max-width: 767px) {
  .get-in-touch .get-in-touch__content .right .contact-block .contact-img {
    width: 4rem;
    height: 4rem;
  }
}
.get-in-touch .get-in-touch__content .right .contact-block .para-cont {
  font-size: 1.6rem;
  color: #565656;
  font-weight: 500;
  letter-spacing: 0.12px;
}
.get-in-touch .get-in-touch__content .right .contact-block .para-cont a {
  color: #565656;
  text-decoration: none;
}
.get-in-touch .get-in-touch__content .right .contact-block .para-cont a:hover {
  color: #ff007a;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .get-in-touch .get-in-touch__content .right .contact-block .para-cont br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .get-in-touch .get-in-touch__content .right .contact-block {
    gap: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .get-in-touch .get-in-touch__content .right {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .get-in-touch .get-in-touch__content {
    flex-direction: column;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 1.6rem 2.4rem;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 1.4rem;
  z-index: 9999;
}
.cookie-banner .cookie-text {
  color: #333;
  max-width: 85%;
}
.cookie-banner .cookie-text a {
  color: #FE0083;
  text-decoration: none;
  font-weight: 500;
}
.cookie-banner .cookie-text a:hover {
  text-decoration: none;
}
.cookie-banner .cookie-btn {
  background-color: #FE0083;
  color: #fff;
  padding: 1rem 1.8rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 400;
  cursor: pointer;
  width: 12.5rem;
  height: 4.5rem;
  transition: background 0.3s ease;
}
.cookie-banner .cookie-btn:hover {
  background-color: #e60073;
}

.product-section {
  position: relative;
  padding: 6rem 0 2rem;
  margin-top: 10rem;
  background: linear-gradient(135deg, #f5f5f5 50%, #fce4f6 100%);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .product-section {
    padding: 4rem 0 2rem;
  }
}
.product-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 130%;
  background: radial-gradient(circle at top right, #fcd1e7 0%, rgba(255, 255, 255, 0) 50%);
  z-index: 0;
  pointer-events: none;
}
.product-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68%;
  background-color: #FFFFFF;
  -webkit-clip-path: polygon(0 100%, 100% 30%, 100% 100%, 0% 100%);
          clip-path: polygon(0 100%, 100% 30%, 100% 100%, 0% 100%);
  z-index: 1;
}
.product-section .global-width {
  position: relative;
  text-align: center;
  z-index: 2;
}
.product-section .head-cont {
  font-size: 5.6rem;
  margin: 0;
  font-weight: 700;
  line-height: 67px;
  letter-spacing: -1px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .product-section .head-cont {
    font-size: 3.6rem;
  }
  .product-section .head-cont br {
    display: none;
  }
}
.product-section .para-cont {
  font-size: 1.6rem;
  color: #565656;
  font-weight: 500;
  letter-spacing: 0.12px;
  text-align: center;
  margin: 1.5rem 0 3rem;
}
@media only screen and (max-width: 767px) {
  .product-section .para-cont {
    font-size: 1.4rem;
  }
  .product-section .para-cont br {
    display: none;
  }
}
.product-section .pdt-img {
  margin-top: -10rem;
  display: flex;
  justify-content: center;
}
.product-section .pdt-img img {
  width: 100%;
  max-width: 70rem;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  margin-top: 13rem;
}
@media only screen and (max-width: 767px) {
  .product-section .pdt-img img {
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-section .pdt-img {
    margin-top: -6rem;
  }
  .product-section .pdt-img img {
    max-width: 90%;
  }
}

.purchase-invoice-section {
  position: relative;
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section {
    padding: 3rem 0;
  }
}
.purchase-invoice-section .purchase-head {
  font-size: 4.2rem;
  font-weight: 600;
  margin-bottom: 4rem;
  text-align: center;
  letter-spacing: -1px;
  line-height: 55px;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .purchase-head {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}
.purchase-invoice-section .purchase-main {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .purchase-main {
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .purchase-main {
    display: grid;
  }
}
.purchase-invoice-section .purchase-main::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -6rem;
  right: -15rem;
  width: 85rem;
  height: 60rem;
  background-image: url("../../assets/images/purchase-invoice.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .purchase-main::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .purchase-main::after {
    display: none;
  }
}
.purchase-invoice-section .purchase-right .purchase-img-tab {
  display: none;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .purchase-right .purchase-img-tab {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .purchase-right .purchase-img-tab {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 4rem;
  }
}
.purchase-invoice-section .purchase-right .purchase-right {
  width: 50rem;
  height: 50rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .purchase-right .purchase-right {
    width: 100%;
    height: auto;
  }
}
.purchase-invoice-section .sales-main {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25rem;
  gap: 32.1rem;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .sales-main {
    display: grid;
    margin-top: 3rem;
    gap: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .sales-main {
    display: grid;
    width: 100%;
    margin-top: 3rem;
    gap: 2.1rem;
  }
}
.purchase-invoice-section .sales-main::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -6rem;
  left: -16rem;
  width: 85rem;
  height: 60rem;
  background-image: url("../../assets/images/sales.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .sales-main::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .sales-main::after {
    display: none;
  }
}
.purchase-invoice-section .sales-main.reverse-layout {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .sales-main.reverse-layout {
    flex-direction: initial;
  }
}
.purchase-invoice-section .sales-main.reverse-layout .sales-left {
  order: 2;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .sales-main.reverse-layout .sales-left {
    order: 2;
  }
}
.purchase-invoice-section .sales-main.reverse-layout .sales-right {
  order: 1;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .sales-main.reverse-layout .sales-right {
    order: 1;
  }
}
.purchase-invoice-section .sales-main .sales-left {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .sales-main .sales-left {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .sales-main .sales-left {
    width: 100%;
  }
}
.purchase-invoice-section .sales-main .sales-left .sales-img-tab {
  display: none;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .sales-main .sales-left .sales-img-tab {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .sales-main .sales-left .sales-img-tab {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }
}
.purchase-invoice-section .sales-main .sales-right {
  width: 50%;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .sales-main .sales-right {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .sales-main .sales-right {
    width: 100%;
  }
}
.purchase-invoice-section .product-main {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: 25rem;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .product-main {
    display: grid;
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .product-main {
    display: grid;
    width: 100%;
    margin-top: 3rem;
    gap: 2.1rem;
  }
}
.purchase-invoice-section .product-main::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -6rem;
  right: -15rem;
  width: 85rem;
  height: 60rem;
  background-image: url("../../assets/images/products.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .product-main::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .product-main::after {
    display: none;
  }
}
.purchase-invoice-section .product-main .product-left {
  width: 39%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .product-main .product-left {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .product-main .product-left {
    width: 100%;
  }
}
.purchase-invoice-section .product-main .product-right {
  width: 50rem;
  height: 50rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .product-main .product-right {
    width: 100%;
    height: auto;
  }
}
.purchase-invoice-section .inventory-main {
  position: relative;
  z-index: 1;
  margin-top: 25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32.1rem;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .inventory-main {
    display: grid;
    margin-top: 3rem;
    gap: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .inventory-main {
    display: grid;
    width: 100%;
    margin-top: 3rem;
    gap: 2.1rem;
  }
}
.purchase-invoice-section .inventory-main::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -6rem;
  left: -16rem;
  width: 85rem;
  height: 60rem;
  background-image: url("../../assets/images/all-reports.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .inventory-main::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .inventory-main::after {
    display: none;
  }
}
.purchase-invoice-section .inventory-main.reverse-layout {
  flex-direction: row-reverse;
}
.purchase-invoice-section .inventory-main.reverse-layout .inventory-left {
  order: 2;
}
.purchase-invoice-section .inventory-main.reverse-layout .inventory-left .reports {
  display: none;
}
.purchase-invoice-section .inventory-main.reverse-layout .inventory-right {
  order: 1;
}
.purchase-invoice-section .inventory-main.reverse-layout .inventory-right .reports {
  display: none;
}
.purchase-invoice-section .inventory-main .inventory-left {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .inventory-main .inventory-left {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .inventory-main .inventory-left {
    width: 100%;
  }
}
.purchase-invoice-section .inventory-main .inventory-right {
  width: 50%;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .inventory-main .inventory-right {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .purchase-invoice-section .inventory-main .inventory-right {
    width: 100%;
  }
}
.purchase-invoice-section .accounts-main {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: 25rem;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .accounts-main {
    display: grid;
    margin-top: 3rem;
  }
}
.purchase-invoice-section .accounts-main::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -6rem;
  right: -15rem;
  width: 85rem;
  height: 60rem;
  background-image: url("../../assets/images/payment-voucher.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .accounts-main::after {
    display: none;
  }
}
.purchase-invoice-section .accounts-main .accounts-left {
  width: 35%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .accounts-main .accounts-left {
    width: 100%;
  }
}
.purchase-invoice-section .accounts-main .accounts-right {
  width: 50rem;
  height: 50rem;
  position: relative;
  z-index: 1;
}
.purchase-invoice-section .accounts-main .accounts-right .voucher {
  display: none;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .accounts-main .accounts-right {
    width: 100%;
    height: auto;
    margin-top: 5rem;
  }
}
.purchase-invoice-section .purchase-subhead {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
  line-height: 45px;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .purchase-subhead {
    font-size: 2.4rem;
  }
}
.purchase-invoice-section .purchase-points {
  list-style: none;
  margin-bottom: 3rem;
  padding: 0;
}
.purchase-invoice-section .purchase-points li {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  position: relative;
  padding-left: 3rem;
  color: #565656;
}
.purchase-invoice-section .purchase-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 2rem;
  height: 2rem;
  background-image: url("../../assets/images/circle-point.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .purchase-points li {
    font-size: 1.4rem;
  }
}
.purchase-invoice-section .banner-btn {
  display: inline-block;
  background-color: #ff0080;
  color: #fff;
  font-weight: 500;
  padding: 1.2rem 2.4rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.purchase-invoice-section .banner-btn:hover {
  background-color: #e60073;
}
@media only screen and (max-width: 767px) {
  .purchase-invoice-section .banner-btn {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}

.get-start {
  background-color: #F0F0F0;
  padding: 6rem 0;
  text-align: center;
  margin-top: 22rem;
}
@media only screen and (max-width: 767px) {
  .get-start {
    padding: 4rem 0;
    margin-top: 4rem;
  }
}
.get-start .get-start-wrapper {
  max-width: 80rem;
  margin: 0 auto;
}
.get-start .get-start-heading {
  font-size: 4.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
  line-height: 45px;
}
@media only screen and (max-width: 767px) {
  .get-start .get-start-heading {
    font-size: 3rem;
  }
}
.get-start .get-start-text {
  font-size: 1.6rem;
  font-weight: 400;
  color: #565656;
  margin-bottom: 3rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .get-start .get-start-text {
    font-size: 1.4rem;
    text-align: left;
  }
}
.get-start .get-start-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.get-start .get-start-buttons a {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.2rem 2.4rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.get-start .get-start-buttons .btn-pink {
  background-color: #ff0080;
  color: #fff;
}
.get-start .get-start-buttons .btn-pink:hover {
  background-color: #cc0066;
}
.get-start .get-start-buttons .btn-outline {
  border: 2px solid #ff0080;
  color: #ff0080;
  background-color: transparent;
}
.get-start .get-start-buttons .btn-outline:hover {
  background-color: #ff0080;
  color: #fff;
}

.terms-and-condition {
  position: relative;
  padding: 4rem 0;
  margin-top: 10rem;
}
.terms-and-condition .terms-head {
  font-size: 2.5rem;
}
.terms-and-condition .sub-head-terms {
  font-size: 1.8rem;
}

.blog-main {
  position: relative;
  padding: 4rem 0;
  margin-top: 16rem;
}
@media only screen and (max-width: 767px) {
  .blog-main {
    margin-top: 10rem;
    padding: 3rem 0;
  }
}
.blog-main .head-cont {
  font-size: 5.6rem;
  margin: 0;
  font-weight: 700;
  text-align: center;
  line-height: 67px;
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  .blog-main .head-cont {
    font-size: 3.6rem;
  }
  .blog-main .head-cont br {
    display: none;
  }
}
.blog-main .para-cont {
  font-size: 1.6rem;
  color: #565656;
  font-weight: 500;
  letter-spacing: 0.12px;
  text-align: center;
  margin: 1.5rem 0 3rem;
}
@media only screen and (max-width: 767px) {
  .blog-main .para-cont {
    font-size: 1.4rem;
  }
  .blog-main .para-cont br {
    display: none;
  }
}
.blog-main .search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .blog-main .search-bar {
    gap: 3rem;
  }
}
.blog-main .search-bar input {
  width: 100%;
  max-width: 50rem;
  padding: 1.2rem 1.5rem;
  border: none;
  border-radius: 10rem;
  font-size: 1.6rem;
  background-color: #f5f5f5;
  color: #001f2d;
  outline: none;
}
@media only screen and (max-width: 767px) {
  .blog-main .search-bar input {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-main .search-bar input {
    max-width: 32rem;
  }
}
.blog-main .search-bar button {
  border: none;
  background-color: transparent;
  margin-left: -3.2rem;
  padding: 0.9rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-main .search-bar button img {
  width: 4rem;
  height: 4rem;
}
@media only screen and (max-width: 767px) {
  .blog-main .search-bar button {
    margin-left: -2.8rem;
    padding: 0.7rem;
  }
  .blog-main .search-bar button img {
    width: 4.6rem;
    height: 3rem;
  }
}

.recent-blog {
  padding: 4rem 0;
}
@media only screen and (max-width: 767px) {
  .recent-blog {
    margin-top: -4rem;
  }
}
.recent-blog .blog-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
  line-height: 45px;
}
.recent-blog .blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .recent-blog .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .recent-blog .blog-grid {
    grid-template-columns: 1fr;
  }
}
.recent-blog .blog-grid .featured-post {
  width: 100%;
  max-width: 61rem;
  height: auto;
}
.recent-blog .blog-grid .featured-post img {
  width: 100%;
  border-radius: 0.5rem;
}
.recent-blog .blog-grid .featured-post .blog-sub-cnt {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.8rem 0;
  color: #001f2d;
}
.recent-blog .blog-grid .featured-post .excerpt {
  font-size: 1.6rem;
  color: #252525;
}
.recent-blog .blog-grid .featured-post .tags {
  margin-top: 1rem;
}
.recent-blog .blog-grid .featured-post .tags span {
  border: 1px solid #737373;
  border-radius: 2rem;
  padding: 0.3rem 0.9rem;
  font-size: 1.4rem;
  margin-right: 0.5rem;
  display: inline-block;
  color: #252525;
}
@media only screen and (max-width: 767px) {
  .recent-blog .blog-grid .featured-post .tags span {
    margin-bottom: 1rem;
  }
}
.recent-blog .blog-grid .featured-post .feature-img {
  width: 61rem;
  height: 50rem;
}
@media only screen and (max-width: 767px) {
  .recent-blog .blog-grid .featured-post .feature-img {
    width: 100%;
    height: auto;
  }
}
.recent-blog .blog-grid .side-posts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.recent-blog .blog-grid .side-posts .post {
  display: flex;
  gap: 1.5rem;
}
.recent-blog .blog-grid .side-posts .post img {
  width: 30rem;
  height: 30rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.recent-blog .blog-grid .side-posts .post .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.recent-blog .blog-grid .side-posts .post .content .blog-sub-cnt {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.8rem 0;
  color: #001f2d;
}
.recent-blog .blog-grid .side-posts .post .content .excerpt {
  font-size: 1.6rem;
  color: #252525;
}
.recent-blog .blog-grid .side-posts .post .content .tags {
  margin-top: 0.5rem;
}
.recent-blog .blog-grid .side-posts .post .content .tags span {
  border: 1px solid #737373;
  border-radius: 2rem;
  padding: 0.2rem 0.8rem;
  font-size: 1.2rem;
  margin-right: 0.4rem;
  display: inline-block;
  color: #252525;
}
.recent-blog .blog-grid .side-posts .post .content .m-t-10 {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .recent-blog .blog-grid .side-posts .post {
    flex-direction: column;
  }
  .recent-blog .blog-grid .side-posts .post img {
    width: 100%;
    height: auto;
  }
}

.all-blogs {
  padding: 4rem 0;
}
@media only screen and (max-width: 767px) {
  .all-blogs {
    padding: 2rem 0;
    margin-top: -2rem;
  }
}
.all-blogs .blog-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
  line-height: 45px;
}
.all-blogs .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 6rem;
  justify-items: flex-start;
  text-align: left;
  margin-top: 3rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .all-blogs .grid-container {
    grid-template-columns: repeat(1, 1fr);
    margin: 0;
    gap: 3rem;
  }
}
.all-blogs .grid-container .blog-sub-cnt {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.8rem 0;
  color: #001f2d;
}
.all-blogs .grid-container .excerpt {
  font-size: 1.6rem;
  color: #252525;
}
.all-blogs .grid-container .tags {
  margin-top: 1rem;
}
.all-blogs .grid-container .tags span {
  border: 1px solid #737373;
  border-radius: 2rem;
  padding: 0.3rem 0.9rem;
  font-size: 1.4rem;
  margin-right: 0.5rem;
  display: inline-block;
  color: #252525;
}
@media only screen and (max-width: 767px) {
  .all-blogs .grid-container .tags span {
    margin-bottom: 1rem;
  }
}
.all-blogs .grid-container .all-img {
  width: 34rem;
  height: 30rem;
}
@media only screen and (max-width: 767px) {
  .all-blogs .grid-container .all-img {
    width: 100%;
    height: auto;
  }
}
.all-blogs .box-grid a {
  text-decoration: none;
  color: inherit;
}

.blog-main-content {
  padding: 4rem 2rem;
}
@media only screen and (max-width: 767px) {
  .blog-main-content {
    padding: 0;
  }
}
.blog-main-content .blog-section {
  max-width: 120rem;
  margin: 0 auto;
}
.blog-main-content .breadcrumb {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 1.5rem;
  margin-top: 10rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-main-content .breadcrumb {
    margin-bottom: -2.5rem;
  }
}
.blog-main-content .breadcrumb a {
  color: #888;
  text-decoration: none;
}
.blog-main-content .breadcrumb a:hover {
  color: #ff0080;
  text-decoration: none;
}
.blog-main-content .blog-title {
  font-size: 5.6rem;
  font-weight: 700;
  color: #001f2d;
  margin-bottom: 8rem;
  line-height: 67px;
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  .blog-main-content .blog-title {
    font-size: 3.6rem;
    margin-bottom: 4rem;
  }
}
.blog-main-content .blog-content {
  position: relative;
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .blog-main-content .blog-content {
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-main-content .blog-content .blog-left {
    width: 85%;
  }
}
.blog-main-content .blog-content .featured-image {
  flex: 1 1 60%;
}
.blog-main-content .blog-content .featured-image .blog-img {
  width: 61rem;
  height: 50rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-main-content .blog-content .featured-image .blog-img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-main-content .blog-content .featured-image .blog-img {
    width: 100%;
    height: auto;
  }
}
.blog-main-content .blog-sub {
  font-size: 1.6rem;
  color: #565656;
}
@media only screen and (max-width: 767px) {
  .blog-main-content .blog-sub {
    font-size: 1.4rem;
  }
}
.blog-main-content .blog-content-head {
  font-size: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .blog-main-content .blog-content-head {
    font-size: 2.8rem;
  }
}
.blog-main-content .blog-benefits {
  margin-top: 1rem;
  padding-left: 4.2rem;
  list-style: disc;
  color: #565656;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .blog-main-content .blog-benefits {
    padding-left: 3.2rem;
    font-size: 1.4rem;
  }
}
.blog-main-content .blog-benefits li {
  margin-bottom: 0.6rem;
}
.blog-main-content .head-sub {
  font-size: 2.8rem;
}
@media only screen and (max-width: 767px) {
  .blog-main-content .head-sub {
    font-size: 2.4rem;
  }
}
.blog-main-content .table-of-contents {
  height: 32rem;
  width: 40rem;
  background-color: #F8F8F8;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid;
}
@media only screen and (max-width: 767px) {
  .blog-main-content .table-of-contents {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-main-content .table-of-contents {
    width: 100%;
    height: auto;
  }
}
.blog-main-content .table-of-contents .tab-head {
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 600;
}
.blog-main-content .table-of-contents ul {
  list-style-type: none;
  padding-left: 2rem;
}
.blog-main-content .table-of-contents ul .tab-cont-sub {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: #001f2d;
}
.blog-main-content .table-of-contents ul .tab-cont-sub a {
  text-decoration: none;
  color: #333;
}
.blog-main-content .table-of-contents ul .tab-cont-sub a:hover {
  text-decoration: none;
  color: #ff007a;
}
.blog-main-content .table-of-contents-accounting {
  height: 37rem;
  width: 40rem;
  background-color: #F8F8F8;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-main-content .table-of-contents-accounting {
    width: 100%;
    height: auto;
  }
}
.blog-main-content .table-of-contents-accounting .tab-head {
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 600;
}
.blog-main-content .table-of-contents-accounting ul {
  list-style-type: none;
  padding-left: 2rem;
}
.blog-main-content .table-of-contents-accounting ul .tab-cont-sub {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: #001f2d;
}
.blog-main-content .table-of-contents-accounting ul .tab-cont-sub a {
  text-decoration: none;
  color: #333;
}
.blog-main-content .table-of-contents-accounting ul .tab-cont-sub a:hover {
  text-decoration: none;
  color: #ff007a;
}
.blog-main-content .table-of-contents-traditional {
  height: 42rem;
  width: 40rem;
  background-color: #F8F8F8;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid;
}
@media only screen and (max-width: 767px) {
  .blog-main-content .table-of-contents-traditional {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-main-content .table-of-contents-traditional {
    width: 100%;
    height: auto;
  }
}
.blog-main-content .table-of-contents-traditional .tab-head {
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 600;
}
.blog-main-content .table-of-contents-traditional ul {
  list-style-type: none;
  padding-left: 2rem;
}
.blog-main-content .table-of-contents-traditional ul .tab-cont-sub {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: #001f2d;
}
.blog-main-content .table-of-contents-traditional ul .tab-cont-sub a {
  text-decoration: none;
  color: #333;
}
.blog-main-content .table-of-contents-traditional ul .tab-cont-sub a:hover {
  text-decoration: none;
  color: #ff007a;
}

.footer-main-sec {
  background-color: #1e1e1e;
  color: #fff;
  padding: 6rem 0 2rem;
}
@media only screen and (max-width: 767px) {
  .footer-main-sec {
    margin-top: 0;
  }
}
.footer-main-sec .footer-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.footer-main-sec .footer-container .footer-top {
  flex-wrap: wrap;
  gap: 4rem;
  display: flex;
  justify-content: space-between;
}
.footer-main-sec .footer-container .footer-top .footer-logo img {
  width: 15rem;
}
.footer-main-sec .footer-container .footer-top .footer-links {
  display: flex;
  gap: 16rem;
  flex: 1;
  padding: 1rem;
}
@media only screen and (max-width: 767px) {
  .footer-main-sec .footer-container .footer-top .footer-links {
    flex-direction: column;
    gap: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-main-sec .footer-container .footer-top .footer-links {
    gap: 6rem;
  }
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col ul li {
  margin-bottom: 1rem;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col ul li a {
  color: #ccc;
  font-size: 1.4rem;
  text-decoration: none;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col ul li a:hover {
  text-decoration: underline;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col.region-apps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col.region-apps .region-select select {
  padding: 0.8rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1.4rem;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col.region-apps .get-app .app-buttons {
  display: flex;
  gap: 1rem;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col.region-apps .get-app .app-buttons img {
  width: 12rem;
  height: auto;
  border-radius: 0.8rem;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col.region-apps .follow-us h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col.region-apps .follow-us .social-icons {
  display: flex;
  gap: 3rem;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col.region-apps .follow-us .social-icons a {
  display: inline-block;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col.region-apps .follow-us .social-icons a img {
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-main-sec .footer-container .footer-top .footer-links .footer-col.region-apps .follow-us .social-icons a img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.footer-main-sec .footer-container .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid #444;
  padding-top: 2rem;
}
.footer-main-sec .footer-container .footer-bottom .footer-note {
  flex: 1;
  font-size: 1.2rem;
  color: #aaa;
}
.footer-main-sec .footer-container .footer-bottom .footer-note a {
  color: #ff2b85;
  text-decoration: none;
}
.footer-main-sec .footer-container .footer-bottom .footer-note a:hover {
  text-decoration: underline;
}
.footer-main-sec .footer-container .footer-bottom .social-icons {
  display: flex;
  gap: 1.5rem;
}
.footer-main-sec .footer-container .footer-bottom .social-icons a {
  color: #ccc;
  font-size: 1.8rem;
}
.footer-main-sec .footer-container .footer-bottom .social-icons a:hover {
  color: #fff;
}/*# sourceMappingURL=style.css.map */