* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  vertical-align: middle;
}

/* common css end  */

/* header-part-start  */

.header {
  margin-top: 25px;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.nav-bg {
  background-color: #04091e;
  animation: slideDown 0.7s linear;
  margin-top: 0px;
  padding: 20px 0;
  box-shadow: 0 14px 16px 0 rgba(11, 2, 55, 0.1);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 65px;
}

/* header-menu  */
.header-left .menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-left .menu li a {
  font-size: 18px;
  color: var(--white-color);
  font-weight: var(--font-medium);
  transition: all linear 0.5s;
}
.header-left .menu li a:hover {
  color: var(--primary-color);
}

/* buy-now-btn  */
.header-btn {
  display: flex;
  align-items: center;
  justify-content: end;
}

/* header-part-end  */

/* mobile-header start */
.container-full {
  width: 100%;
}
.mobile-header {
  display: none;
  background-color: var(--headding-color);
  box-shadow: 0 14px 16px 0 rgba(11, 2, 55, 0.1);
  position: fixed;
  width: 100%;
  z-index: 999;
}
.mobile-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
}
#nav-opn-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
}
#offcanvas-nav {
  background: transparent;
  position: absolute;
  left: -300px;
  top: 0px;
  z-index: 99;
  width: 300px;
  height: 100vh;
  z-index: 999999;
  transition: 0.5s ease;
}
#offcanvas-nav::before {
  content: "";
  width: 0%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  transition: 0.5s ease 0.3s;
}
#offcanvas-nav.open {
  left: 0px;
}
#offcanvas-nav.open::before {
  width: 100%;
}
#offcanvas-nav .m-nav {
  position: relative;
  background: #04091e;
  padding-top: 80px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 50px;
  z-index: 9;
  display: block;
  height: 100%;
  overflow-y: scroll;
}
#nav-cls-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  border: none;
  outline: none;
  font-size: 22px;
  color: var(--white-color);
}
#offcanvas-nav .m-nav .nav-links {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--white-color);
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
}
#offcanvas-nav .m-nav .nav-links li {
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 20px;
}
#offcanvas-nav .m-nav .nav-links li a {
  font-size: 16px;
  color: var(--white-color);
  text-transform: uppercase;
}

/* mobile-header end */

/* banner-part-start  */

.banner {
  background: url(../../assets/images/hero/hero.png) no-repeat center / cover;
  padding-top: 178px;
}

.hero-text {
  color: var(--white-color);
  font-weight: var(--font-semibold);
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-text::before {
  position: absolute;
  content: "";
  top: 82px;
  left: 55%;
  width: 253px;
  height: 20px;
  background-image: url(../../assets/images/victor/hero-text-victor.svg);
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
}

/* .hero-btn  */
.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
}

.hero-btn .main-btn {
  width: 182px;
  height: 60px;
}

.hero-btn .main-btn:nth-child(2) {
  background-color: transparent;
  border: 1px solid var(--white-color);
}
.hero-btn .main-btn:nth-child(2)::after {
  background: var(--primary-color);
}
.hero-btn .main-btn:nth-child(2)::before {
  background: var(--primary-color);
}
.hero-btn .main-btn:nth-child(2):hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}

.hero-btn .main-btn:nth-child(3) {
  background-color: transparent;
  border: 1px solid var(--white-color);
}
.hero-btn .main-btn:nth-child(3)::after {
  background: var(--primary-color);
}
.hero-btn .main-btn:nth-child(3)::before {
  background: var(--primary-color);
}
.hero-btn .main-btn:nth-child(3):hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}
.hero-btn .main-btn:nth-child(4) {
  background-color: transparent;
  border: 1px solid var(--white-color);
}
.hero-btn .main-btn:nth-child(4)::after {
  background: var(--primary-color);
}
.hero-btn .main-btn:nth-child(4)::before {
  background: var(--primary-color);
}
.hero-btn .main-btn:nth-child(4):hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}

/* hero-thumb  */
.hero-thumb {
  margin-top: 133px;
  position: relative;
  z-index: 1;
}
.hero-thumb img {
  width: 1280.9px;
  object-fit: cover;
}

.hero-thumb-user img {
  width: 305.368px;
  height: 232.895px;
  object-fit: cover;
  position: absolute;
  top: -66px;
  right: -135px;
  z-index: -1;
  animation: dance 4s alternate infinite;
}
.hero-thumb-Provider img {
  width: 305.368px;
  height: 232.895px;
  object-fit: cover;
  position: absolute;
  top: -66px;
  left: -190px;
  z-index: -1;
  animation: dance 6s alternate infinite;
}

/* banner-part-end  */

/* Service-part-start  */

.service {
  background: url(../../assets/images/hero/service-bg.png) no-repeat center /
    cover;
}

.service-taitel {
  color: var(--headding-color);
  font-weight: var(--font-semibold);
}

.service-box {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 448px;
}

.service-box-two {
  background-color: #eaf8f8;
  border: 0;
}

.service-box-three {
  background-color: #fff8f8;
  border: 0;
}
.service-box-four {
  background-color: #f3f5ff;
  border: 0;
}

.service-box-overlay {
  transform: translate3d(-100%, 0, 0);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eaf8f8;
  z-index: -1;
}

.service-box-img img {
  width: 364px;
  height: 231px;
  object-fit: cover;
  border-radius: 24px;
}

.service-box-text {
  padding-top: 28px;
  font-size: 28px;
  line-height: normal;
  letter-spacing: -1px;
  font-weight: var(--font-semibold);
  color: var(--headding-color);
}

.service-box-decs {
  padding-top: 22px;
  color: var(--paragraph-color);
  font-weight: var(--font-regular);
  letter-spacing: -1px;
}

/* Mouse enter event */
.service-box.mouseenter.top .service-box-overlay {
  animation-name: slide--enter-top;
}
.service-box.mouseenter.right .service-box-overlay {
  animation-name: slide--enter-right;
}
.service-box.mouseenter.bottom .service-box-overlay {
  animation-name: slide--enter-bottom;
}
.service-box.mouseenter.left .service-box-overlay {
  animation-name: slide--enter-left;
}

/* Mouse leave event */
.service-box.mouseleave.top .service-box-overlay {
  animation-name: slide--leave-top;
}
.service-box.mouseleave.right .service-box-overlay {
  animation-name: slide--leave-right;
}
.service-box.mouseleave.bottom .service-box-overlay {
  animation-name: slide--leave-bottom;
}
.service-box.mouseleave.left .service-box-overlay {
  animation-name: slide--leave-left;
}

/* Service-part-end  */

/* Business-part-start  */

.business-ml {
  padding-left: 105px;
}

.business-img-main {
  position: relative;
}

.business-img {
  position: absolute;
  left: -300px;
  top: 13px;
}

.business-img.two {
  position: absolute;
  left: -22px;
  top: 13px;
}
.business-img img {
  height: 656px;
  width: 850px;
}

.business-img-two {
  position: absolute;
  left: -263px;
  top: -40px;
}
.business-img-two.two {
  position: absolute;
  left: 0px;
  top: -40px;
}

.business-img-two img {
  width: 805px;
  height: 753px;
  object-fit: cover;
}
.business-img-two.teo img {
  width: 805px;
  height: 610px;
  object-fit: cover;
}

.business-taitel {
  color: var(--headding-color);
  font-weight: var(--font-semibold);
}

.business-taitel span {
  color: var(--primary-color);
}

.business-decs {
  padding-top: 28px;
  color: var(--paragraph-color);
  font-weight: var(--font-regular);
  line-height: 32px;
}

.business-list {
  margin-top: 45px;
}

.business-list li span {
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.business-list li span svg {
  fill: currentColor;
  color: var(--white-color);
}

.business-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  font-weight: var(--font-regular);
  line-height: 42px;
  color: var(--headding-color);
}

/* business-btn  */
.business-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}
.business-btn .main-btn {
  width: 191px;
  height: 60px;
  border: 1px solid var(--primary-color);
  width: 260px;
}
.business-btn .main-btn:hover {
  border: 1px solid var(--headding-color);
}

.business-vic {
  position: relative;
}

.business-vic-img {
  position: absolute;
  right: -100px;
  top: -243px;
  opacity: 0.5;
  animation: dance 5s linear infinite;
}

/* Business-part-end  */

/* Payment-part-start  */
.payment {
  background: url(../images/hero/payment-bg.png) no-repeat center / cover;
}

.payment-taitel {
  font-weight: var(--font-semibold);
  color: var(--headding-color);
  text-align: center;
}

.payment-taitel span {
  position: relative;
  z-index: 1;
}
.payment-taitel span::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff3c6;
  z-index: -1;
}

.payment-item ul {
  display: flex;
  gap: 38px;
  justify-content: center;
  margin-top: 42px;
}

.payment-item ul li {
  font-size: 18px;
  font-weight: var(--font-regular);
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-item ul li span {
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-item ul li span svg {
  fill: currentColor;
  color: var(--white-color);
}

.payment-item ul li:nth-child(2) span {
  background-color: #2fcc71;
}
.payment-item ul li:nth-child(3) span {
  background-color: #f6a70b;
}
.payment-item ul li:nth-child(4) span {
  background-color: #ff47b1;
}

/* payment-logo-item  */
.payment-logo-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.payment-logo {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background-color: var(--white-color);
  box-shadow: 15px 30px 50px 0px rgba(7, 13, 46, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 103px;
  margin-bottom: 35px;
}

.payment-logo:nth-child(2) {
  width: 121px;
  height: 121px;
}
.payment-logo:nth-child(4) {
  width: 151px;
  height: 151px;
}
.payment-logo:nth-child(6) {
  width: 135px;
  height: 135px;
  margin-bottom: 0;
}
.payment-logo:nth-child(7) {
  width: 197px;
  height: 197px;
  margin-bottom: 0;
}
.payment-logo:nth-child(8) {
  width: 138px;
  height: 138px;
  margin-bottom: 0;
}
.payment-logo:nth-child(9) {
  margin-bottom: 0;
}

/* Payment-part-end  */

/* help-part-start  */

.help-img-main {
  position: relative;
}

.help-img {
  position: absolute;
  top: 10px;
  left: -300px;
}

.help-img img {
  width: 848px;
  height: 662.553px;
  object-fit: cover;
}

.help-taitel {
  letter-spacing: -2px;
  font-weight: var(--font-semibold);
  line-height: 80px;
  color: #2e2e2e;
  margin-top: 40px;
}

.help-list {
  margin-top: 20px;
}

.help-list li {
  font-size: 20px;
  font-weight: var(--font-regular);
  line-height: 32px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f0f0fd;
  padding: 18px 0;
}
.help-list li:last-child {
  border-bottom: 1px solid transparent;
  padding-bottom: 0;
}
.help-list li span {
  height: 28px;
  width: 28px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-list li span svg {
  fill: currentColor;
  color: var(--white-color);
}

/* .help-mail  */

.help-pl-80px {
  padding-left: 77px;
}
.help-mail {
  margin-top: 55px;
}

.help-mail li a span {
  height: 55px;
  width: 55px;
  border: 1px solid rgba(38, 98, 250, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-mail li a {
  font-size: 33.505px;
  font-style: normal;
  font-weight: var(--font-semibold);
  line-height: 152%;
  text-decoration-line: underline;
  color: var(--headding-color);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
}
.help-mail li:nth-child(2) a {
  padding-bottom: 0px;
}

/* help-part-end  */

/* Technology-part-start  */
.technology {
  background-color: #f9fbfe;
}

.technology-taitel {
  font-weight: var(--font-semibold);
  line-height: 76px; /* 131.034% */
  letter-spacing: -1px;
  color: var(--headding-color);
}

.technology-decs {
  margin-top: 34px;
  font-weight: var(--font-regular);
  line-height: 32px; /* 160% */
  letter-spacing: -1px;
  color: #717171;
}

.technology-img {
  padding-left: 65px;
}

.technology-img img {
  width: 909px;
  height: 372px;
}

/* Technology-part-end  */

/* faq-part-start  */

.faq-taitel {
  font-weight: var(--font-semibold);
  line-height: 70px;
  color: #2e2e2e;
}

.accordion {
  margin-top: 33px;
}

.accordion-item {
  margin-bottom: 24px;
  border: 1px solid #e7e7e7;
  box-shadow: 0px 10px 10px 0px rgba(198, 198, 198, 0.19);
  border-radius: 4px;
}
.accordion-item:last-child {
  margin-bottom: 0px;
}
.accordion-button {
  padding: 20px 20px 17px;
  font-size: 20px;
  font-weight: var(--font-medium);
  line-height: normal;
  color: #2e2e2e;
}
.accordion-body {
  border-top: 1px solid #e7e7e7;
  color: #4f5562;
  font-size: 20px;
  font-weight: var(--font-regular);
  line-height: 28px;
  padding: 20px 28px 20px 20px;
}

.accordion-body span {
  border-bottom: 1px solid #e7e7e7;
}
.accordion-item:not(:first-of-type) {
  border: 1px solid #e7e7e7;
}

.accordion-button:not(.collapsed) {
  color: #2e2e2e;
  background-color: #fff;
  box-shadow: inset 0 -1px 0 transparent;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #e7e7e7;
  box-shadow: 0 0 0 0.25rem transparent;
}

.accordion-button::after {
  background-image: url(../images/victor/faq-arrow.svg);
  background-repeat: no-repeat;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../images/victor/faq-arrow.svg);
}

/* faq-position-main  */

.faq-pl-95px {
  padding-left: 95px;
}
.faq-position-main {
  position: relative;
}

.faq-position-main img {
  width: 619.022px;
  height: 561.52px;
}

.faq-position-img {
  position: absolute;
  top: 59%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.faq-position-img img {
  width: 356.567px;
  height: 522.912px;
  animation: dance 10s linear infinite;
}

/* faq-part-end  */
/* Customization-part-start  */
.customization {
  background: url(../images/hero/customization-bg.png) no-repeat center / cover;
}

.customization-taitel {
  font-size: 66px;
  font-weight: var(--font-bold);
  line-height: 90px;
  color: var(--white-color);
}

.customization-taitel span {
  color: var(--primary-color);
}

.customization-mail {
  margin-top: 70px;
}

.customization-mail li a span {
  width: 78.511px;
  height: 78.511px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 50%;
}

.customization-mail li a span img {
  height: 40px;
  width: 40px;
}

.customization-mail li a {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 48px;
  font-weight: var(--font-semibold);
  line-height: 152%; /* 72.96px */
  text-decoration-line: underline;
  color: var(--white-color);
  padding-bottom: 20px;
}
.customization-mail li:last-child a {
  padding-bottom: 0;
}

/* customization-main-img  */

.customization-main-img {
  padding-left: 115px;
  position: relative;
}

.customization-animetion-img {
  position: absolute;
  top: 50%;
  left: 64%;
  transform: translate(-50%, -50%);
}

.customization-animetion-img img {
  object-fit: cover;
}
.customization-animetion-img-logo {
  position: absolute;
  top: -26px;
  left: -135px;
}
.customization-animetion-img-left {
  position: absolute;
  top: 38px;
  left: -255px;
}

.customization-animetion-img-right {
  position: absolute;
  top: 140px;
  right: -303px;
}

/* Customization-part-end  */

/* footer-part-start  */

.footer {
  background-color: #00081a;
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

.footer-position-left {
  position: absolute;
  top: 50px;
  left: 20px;
  opacity: 0.6;
  animation: footer-ani 5s linear infinite;
}
.footer-position-right {
  position: absolute;
  top: 50px;
  right: 20px;
  opacity: 0.6;
  animation: footer-ani 8s linear infinite;
}

.footer-bg {
  position: absolute;
  bottom: -283px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.footer-bg img {
  animation: footer-ani 10s linear infinite;
}

.footer-bg img {
  opacity: 0.5;
}

.footer-taitel {
  font-style: normal;
  font-weight: var(--font-semibold);
  line-height: 70px; /* 120.69% */
  letter-spacing: -1px;
  color: var(--white-color);
  text-align: center;
}

.footer-taitel span {
  position: relative;
  z-index: 1;
}

.footer-taitel span::before {
  position: absolute;
  content: "";
  bottom: 13px;
  left: 0;
  width: 260.519px;
  height: 14px;
  background-color: var(--primary-color);
  z-index: -1;
}

.footer-decs {
  font-size: 24px;
  font-weight: var(--font-regular);
  line-height: 28px;
  color: var(--white-color);
  text-align: center;
  padding-top: 38px;
}

.footer-btn {
  margin-top: 20px;
}
.footer-btn .hero-btn {
  margin-top: 60px;
}
.footer-btn .hero-btn .main-btn:nth-child(1) {
  background-color: #81b636;
  border: 1px solid #81b636;
}

.footer-btn .hero-btn .main-btn:nth-child(1):hover {
  border: 1px solid #fff;
}

.footer-btn .hero-btn .main-btn:nth-child(2) {
  width: 192px;
}

/* footer-part-end  */

/* copy-right-part-start  */
.copy-right {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #00081a;
  z-index: 11;
  position: relative;
}

.copy-right-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.copy-right-menu li a {
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 180%;
  color: var(--white-color);
  transition: all linear 0.5s;
}
.copy-right-menu li a:hover {
  color: var(--primary-color);
}

.copy-right-menu-end {
  justify-content: end;
}
.copy-right-menu-end span {
  text-decoration-line: underline;
}
/* copy-right-part-end  */
