@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --color: #2f497a;
}

.text-success { color: #2ebeba!important; }
.text-primary { color: #1b8cca!important; }
i.bi-star-fill { color: #efa12b }

.success {
  background-color: #2ebeba!important;
  border-color: #2ebeba
}

.primary, .btn-primary, .bg-primary {
  background-color: #1b8cca!important;
  border-color: #1b8cca
}

body {
  font-family: "Rajdhani", sans-serif;
  font-size: 19px;
  padding: 0;
  margin: 0;
  font-weight: 500;
  position: relative;
  line-height: 30px;
  color: #4E5058;
  background: #F4F6FE;
}

div.wrapper {
  overflow: hidden;
  position: relative;
}

/* Preload */
.preload {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
}

.preload .animation-preloader { z-index: 1000; }

.preload .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #265EC2;
  height: 150px;
  margin: 0 auto 3.5em auto;
  width: 150px;
}

.preload .animation-preloader .txt-loading {
  font: bold 5em "Barlow", sans-serif;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.preload .animation-preloader .txt-loading .letters-loading {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.preload .animation-preloader .txt-loading .letters-loading:before {
  -webkit-animation: letters-loading 4s infinite;
  animation: letters-loading 4s infinite;
  color: #000000;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Barlow", sans-serif;
  position: absolute;
  top: -3px;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}

.preload
.animation-preloader
.txt-loading
.letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.preload
.animation-preloader
.txt-loading
.letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.preload
.animation-preloader
.txt-loading
.letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.preload
.animation-preloader
.txt-loading
.letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.preload
.animation-preloader
.txt-loading
.letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.preload
.animation-preloader
.txt-loading
.letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.preload
.animation-preloader
.txt-loading
.letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.preload.dark .animation-preloader .spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}

.preload.dark .animation-preloader .txt-loading .letters-loading {
  color: rgba(255, 255, 255, 0.2);
}

.preload.dark .animation-preloader .txt-loading .letters-loading:before {
  color: #fff;
}

.preload p {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #3b3b3b;
}

.preload .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preload .loader .row { height: 100%; }

.preload .loader .loader-section { padding: 0px; }

.preload .loader .loader-section .bg {
  background-color: #ffffff;
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preload .loader.dark_bg .loader-section .bg {
  background: #111339;
}

.preload.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.preload.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%,
	75%,
	100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
	50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
	75%,
	100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
	50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
/* Prelaod Ending */


/* Header */
[data-disable-parallax-down=xs] {
  transform: none !important
}


.parallax {
  position: relative
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.parallax-layer:first-child {
  position: relative
}

.parallax-layer>img {
  display: block;
}

header {
  height: 130px;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}

.scrolled header {
  background-color: #fff; /* Background after scroll */
}

header div.container { max-width: 1690px; }

header div.logo { max-width: 200px; }

header li.nav-item { margin: 0 .6em; }

header .dropdown:hover .dropdown-menu { display: block; }

header .dropdown small {
  position: relative;
  padding-left: 32px;
  top: -15px;
  margin-left: 3px;
}

header .dropdown svg {
  position: relative;
  top: 7px;
  margin-right: 4px;
}

.navbar-toggler:focus { box-shadow: none!important; }

.offcanvas-body .dropdown-item, .offcanvas .nav-link {
  border-radius: 9px;
}

.offcanvas-body .dropdown-item:hover, .offcanvas .nav-link:hover {
  border-radius: 9px;
  background-color: var(--color);
  color: #fff!important;
}

span.dropdown-menu { min-width: 4rem !important; }

.login-btn {
  line-height: 33px;
  padding: 0 1em;
  color: #fff;
  background: #2F497A;
  letter-spacing: 1px;
  border-color: #2F497A;
}
/* Header */

/* Home */
main section.cover > div.container {
  max-width: 1410px;
}

section.cover {
  background: url(https://res.cloudinary.com/dyvuerxzu/image/upload/v1679215911/paycashpay/banner_uk2t2i.svg) no-repeat right top;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

div.img-wrapper {
  position: relative;
  margin-top: 3em;
  margin-left: 200px;
  margin-right: -200px;
}

section h2.title {
  font-size: 75px;
  line-height: 82px;
  margin-bottom: 40px;
}

main {
  color: #4E5058;
}

ul.tags li { flex-basis: 50%; }

section h2 {
  font-size: 55px;
}

section span.tags {
  position: relative;
  top: 15px;
}

section.head {
  padding-top: 10em;
  padding-bottom: 120px;
}

section.cover a.btn, section.crypto a.btn {
  position: relative;
  z-index: 1;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #1b8cca 0%, #2f497a 51%, #1b8cca 100%);
  transition: all 500ms;
}

#currencies div.limite {
  border-radius: 20px;
  background: #264265;
  padding: 12px 15px 11px;
}

#currencies span.ctext {
  font-size: 16px;
}

div.slider ul li {
  filter: opacity(.5);
}
/* Home ending */


/* Invoice */
section .single-block:nth-child(1) .text {
  border-left: 1px dashed #dcdcdc;
  border-bottom: 1px dashed #dcdcdc;
  border-radius: 0 0 0 20px;
}

.section .single-block:nth-child(1) .text:before {
  content: '';
  width: 1px;
  height: 39px;
  position: absolute;
  background: #fff;
  top: 0;
  left: -1px;
}

section .text {
  position: relative;
  padding: 0 0 60px 60px;
}

section .text .number {
  font-size: 45px;
  color: #d8d8d8;
  text-transform: uppercase;
  position: relative;
}

section .text .number:before {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ff8e9d;
  opacity: .32;
  top: 35px;
  left: -67px;
}

section .text .number:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff8e9d;
  top: 39px;
  left: -63px;
  z-index: 1;
}
/* Invoice */

/* Crypto */
.flex-basis-3 {
  flex-basis: 30%;
}

.flex-basis-7 {
  flex-basis: 70%;
}

.single-feature {
  position: relative;
}

.single-feature .icon-box {
  width: 218px;
  height: 218px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin: 0 auto;
  position: relative;
}

.single-feature .icon-box img {
  width: 130px;
  position: absolute;
  margin: 0 auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* Crypto */

/* Virtual card */
.paycashpay-card-widget {
  padding: 40px 25px;
  border-radius: 10px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0.5px 1px 0 rgba(51, 77, 114, 0.1), 0px 1.6px 3.6px 0 rgba(51, 77, 114, 0.15);
  transition: all 0.3s ease-out;
}

.card-info .card-img {
  position: relative;
  z-index: 1;
}

.card-info .card-img .bg-img {
  position: absolute;
  bottom: -136px;
  left: -17%;
  z-index: -1;
}

.card-trust {
  background: #012654;
  padding-top: 70px;
  padding-bottom: 70px;
}

.card-section .cta.cta-2 {
  padding: 80px 70px;
  background-color: #1b8cca;
  background-image: url(https://res.cloudinary.com/dyvuerxzu/image/upload/v1657355705/paycashpay_card/download_bg.png);
  background-position: center;

}

/* Pricing */
ul.coins {
  filter: grayscale(1);
}

/* Succes page */

section.payment-link,
section.success-page,
section.error {
  height: 100vh;
  display: flex;
  align-items: center;
}

section.success-page .card { width: 35%; }

section.success-page .bi {
  color: #2ebeba;
  line-height: 200px;
  margin: 2.5em auto;
}


/* Footer */
.footer-area {
  padding-top: 80px;
  margin-top: 100px;
  background: #e8ecfd url(https://res.cloudinary.com/dyvuerxzu/image/upload/v1654306444/paycashpay/footer-bg_b2giad.png) no-repeat right top;
  background-size: contain;
}

.footer-copywrite-info {
  position: relative;
  top: -20px;
}

footer p {
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1.9;
}

.cookieControl__BarButtons button {
  font-family: "Rajdhani";
  font-size: 17px;
  font-weight: bold;
  background-color: #2f497a !important;
  color: #fff !important;
  padding: 10px 15px !important;
  border-radius: 9px !important;
  transition: background-color .3s ease;
}

.cookieControl__Bar {
  font-family: "Rajdhani";
  background-color: #3E74DD!important;
  width: 98%;
  margin: 2em auto;
  border-radius: 9px;
  transition: 5s ease-in;
}

.cookieControl__Bar h2 {
  font-family: "Rajdhani";
  font-weight: bold;
}

.cookieControl__Bar p {
  font-family: "Rajdhani";
}

.cookieControl__ModalContent {
  overflow-y: initial!important;
  border-radius: 9px!important;
}

.cookieControl__ModalContent input+button {
  display: none!important;
}

.cookieControl__Modal button {
  border-radius: 9px;
  font-weight: bold;
}

.cookieControl__ModalCookieName span {
  font-size: 17px!important;
}

.cookieControl__BarContainer {
  align-items: center!important;
}
/* End Footer */



@media(min-width: 500px) {
  [data-disable-parallax-up=sm] {
    transform: none !important
  }
}

@media(min-width: 768px) {
  [data-disable-parallax-up=md] {
    transform: none !important
  }
}

@media(min-width: 1200px) {
  [data-disable-parallax-up=xl] {
    transform: none !important
  }
}

@media (min-width: 992px) {
  div.home-img {
    position: relative;
    margin-top: 3em;
    margin-left: 200px;
    margin-right: -200px;
  }
  [data-disable-parallax-up=lg] {
    transform: none !important
  }
}
img.second { width: 700px; margin: auto; }
img.third { width: 300px; }

@media(max-width: 1199.98px) {
  [data-disable-parallax-down=xl] {
    transform: none !important
  }
}


@media(max-width: 500px) {
  [data-disable-parallax-down=sm] {
    transform: none !important
  }
  .preload .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .preload .animation-preloader .txt-loading {
    font: bold 2em "Roboto", sans-serif;
  }
}


@media(max-width: 768px) {
  [data-disable-parallax-down=md] {
    transform: none !important
  }
  section.cover div.img-one {
    position:absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center
  }
  section.cover div.img-one img {
    width: 400px
  }
  section.cover div.img-two {
    margin:auto!important;
    text-align: center
  }
  .preload .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
  .preload .animation-preloader .txt-loading {
    font: bold 3.5em "Rajdhani", sans-serif;
  }
  div.resume-img {
    margin-right: 0;
    padding-left: 0;
  }
  .cookieControl__ModalContent {
    position: relative!important;
    max-height: 100%!important;
    max-width: 100%!important;
  }
}

@media(max-width: 992px) {
  section.success-page .card {
    width: 60%;
  }
  .cookieControl__BarButtons {
    flex-direction: row!important;
    justify-content: flex-start!important;
    width: 100%!important;
  }
  .cookieControl__BarButtons button {
    margin: 10px!important;
    width: auto!important;
  }
  .cookieControl__BarContainer, .cookieControl__ModalButtons {
    flex-direction: column!important;
    gap: 10px;
  }
  .cookieControl__BarButtons button:first-child {
    margin-left: 0!important;
  }
}


@media (max-width: 1200px) {
  div.parallax {
    margin-left: 50px;
    margin-right: 0;
  }
  [data-disable-parallax-down=lg] {
    transform: none !important
  }
  div.parallax {
    margin-left: 0;
    padding: 0 100px;
  }
  img.cover {
    width: 700px!important;
  }
  header .nav-link { 
    padding: 10px;
  }
  section.cover div.col-xl-7 {
    height: 530px;
    margin-top: 7em;
  }
  section.cover {
    background-size: contain;
  }
}
