ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: #f6f6f6;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: #a7a7a7;
}

a.border-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

input[type=text], input[type=password], input[type=number], input[type=email], input[type=date], select, textarea {
  height: 42px;
  background: none;
  border: 1px solid rgba(246, 246, 246, 0.1);
  padding: 0 1rem 0 1rem;
  border-radius: 12.5px;
  color: #a7a7a7;
  transition: all 0.2s ease-in-out;
  font-size: 15px;
  outline: none;
  width: 100%;
}
input[type=text]:hover, input[type=text]:focus, input[type=password]:hover, input[type=password]:focus, input[type=number]:hover, input[type=number]:focus, input[type=email]:hover, input[type=email]:focus, input[type=date]:hover, input[type=date]:focus, select:hover, select:focus, textarea:hover, textarea:focus {
  border: 1px solid rgba(60, 194, 128, 0.2);
  background: none;
  color: #a7a7a7;
}

textarea {
  height: 100%;
  resize: none;
  line-height: auto;
  padding: 1rem;
}

label {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
label img {
  width: 18px;
  margin-right: 0.5rem;
}

.input-container {
  width: 100%;
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5 {
  margin-bottom: 0;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(103, 55, 242, 0.5);
  border-radius: 20px;
}

.form-check-input:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.form-check-input:checked {
  background-color: #6737f2;
  border-color: #5d2de8;
}

body {
  background: url(../images/bg2.png) center center no-repeat #1c2127;
  background-size: cover;
  background-clip: content-box;
  background-attachment: fixed;
  position: relative;
  top: 0;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #f6f6f6;
}

.success-alert {
  background: rgba(60, 194, 128, 0.3);
  color: #3cc280;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(60, 194, 128, 0.8);
  border-radius: 12.5px;
}

.errors-alert {
  background: rgba(222, 120, 120, 0.3);
  color: #de7878;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(222, 120, 120, 0.8);
  border-radius: 12.5px;
}

.forms {
  height: auto;
  position: relative;
}
.forms::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background: url(../images/shape3_3.png) center center no-repeat;
  height: 548px;
  width: 528px;
  z-index: -1;
}

.form-check input[type=checkbox], .form-check label {
  cursor: pointer;
}

.allert {
  border-radius: 12.5px;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.1);
}

.dropdown-toggle {
  cursor: pointer;
  background: url(../images/question.svg) center center no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 3;
}
.dropdown-toggle::after {
  display: none !important;
}

.dropdown-menu {
  z-index: 10;
  min-width: 15rem;
  padding: 1.6666666667rem;
  background: rgba(38, 44, 52, 0.98);
  border-radius: 12.5px;
  color: #f6f6f6;
  border: none;
  transform: translate(0px, 0px) !important;
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.25), 25px 0 20px -20px rgba(0, 0, 0, 0.25), 1px 1px 0px 0px rgba(222, 120, 120, 0.1) inset;
}

.modal-content {
  padding: 1.6666666667rem;
  background: rgba(38, 44, 52, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 12.5px;
  color: #f6f6f6;
  border: none;
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.25), 25px 0 20px -20px rgba(0, 0, 0, 0.25), 1px 1px 0px 0px rgba(222, 120, 120, 0.1) inset;
}
.modal-content .btn-close {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 50%;
  line-height: inherit;
  padding: 0;
}
.modal-content .btn-close img {
  height: 30px;
}
.modal-content .notifications-folder ul li:not(:last-of-type) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  -o-border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
     border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
  border-bottom: 1px solid;
}

.pagination {
  margin-top: 1rem;
}
.pagination .page-item .page-link {
  padding: 0.5rem 1rem;
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: none;
}
.pagination .page-item .page-link:hover {
  background: rgba(0, 0, 0, 0.3);
}
.pagination .page-item.active {
  background: #6737f2;
  border-radius: 10px;
}
.pagination .page-item:not(:last-of-type) {
  margin-right: 0.5rem;
}

.btn-w {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 12.5px;
  line-height: 0.7;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
}
.btn-w img {
  height: 25px;
}
.btn-w:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.btn {
  background: rgba(0, 0, 0, 0.36);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.2s ease-in-out;
  height: 42px;
  line-height: 42px;
  font-size: 15px;
  color: #f6f6f6;
  padding: 0 1rem;
  border-radius: 12.5px;
  box-shadow: 0 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
}
.btn img {
  height: 18px;
}
.btn:active {
  background: rgba(0, 0, 0, 0.36) !important;
}
.btn:hover {
  background: rgba(0, 0, 0, 0.46);
}

.filter-button img {
  height: 18px;
}

.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  line-height: 42px;
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.94);
  border-radius: 12.5px;
  background: #6737f2;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 0px 0px rgba(255, 255, 255, 0.3) inset;
}
.btn-main.active {
  background: #6737f2 !important;
}
.btn-main:active {
  color: rgb(255, 255, 255) !important;
  background: #6737f2 !important;
  box-shadow: 0 2px 0px 0px rgba(255, 255, 255, 0.6) inset;
}
.btn-main:hover {
  background: #5d2de8;
  color: #fff;
}
.btn-main.disabled {
  background: #6737f2;
}

.btn-green {
  background: #3cc280;
}
.btn-green:hover {
  background: #2eae6f;
}

.py-10 {
  padding: 7rem 0;
}

.pt-10 {
  padding-top: 7rem;
}

.pb-10 {
  padding-bottom: 7rem;
}

.owl-nav div {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-nav div:hover {
  background: rgba(0, 0, 0, 0.4);
}

.slider-logo .slider-container {
  overflow: hidden;
  width: 100%;
}
.slider-logo .slider-container .slider {
  display: flex;
  animation: slide 20s linear infinite;
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

header {
  position: relative;
  padding-bottom: 1rem;
  background: url(../images/bg-lines.svg) bottom right no-repeat, url(../images/oval.svg) left top no-repeat;
  background-size: contain;
}
header::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: url(../images/header-shape.png) left top no-repeat;
  width: 664px;
  height: 750px;
  z-index: -1;
}

.support-folder .support {
  background: url(../images/email.svg) left center no-repeat;
  padding: 0 0 0 2.5rem;
}
.support-folder .time {
  background: url(../images/clock.svg) left center no-repeat;
  padding: 0 0 0 2.5rem;
}

.media-folder ul li a img {
  height: 24px;
}
.media-folder ul li:not(:last-of-type) {
  margin-right: 0.5rem;
}

.advantages-main .card-folder {
  background: url(../images/header-shape.png) top left no-repeat, rgba(56, 56, 56, 0.1);
  background-size: 50%;
}
.advantages-main .card-folder img {
  height: 50px;
}

.nav ul {
  width: 100%;
}
.nav ul li:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.nav ul li a {
  display: flex;
  align-items: center;
  padding: 10px 1rem;
  border-bottom: none;
  border-radius: 12.5px;
}
.nav ul li a:hover {
  background: rgba(0, 0, 0, 0.15);
  color: #3cc280;
}

.logo:hover {
  color: #fff;
}
.logo img {
  height: 45px;
}
.logo h3 {
  font-weight: 800;
}
.logo h3 span {
  color: #6737f2;
}

.menu-top {
  height: 42px;
  padding: 0 1rem 0 1rem;
  border-radius: 12.5px;
  color: #fff;
}
.menu-top img {
  height: 16px;
}

.search {
  height: 42px;
  border: 1px solid rgba(246, 246, 246, 0.1);
  padding: 0 1rem 0 1rem;
  border-radius: 12.5px;
  color: #a7a7a7;
  transition: all 0.2s ease-in-out;
  min-width: 50%;
}
.search input[type=text] {
  border: none;
  height: 42px;
  width: 100%;
  background: none;
  outline: none;
  color: #f6f6f6;
  padding: 0;
}
.search:hover {
  border: 1px solid rgba(246, 246, 246, 0.2);
}
.search img {
  height: 16px;
}
.search input[type=submit] {
  width: auto;
}

.faq-list {
  text-align: left;
}
.faq-list .faq-item {
  width: 48%;
}
.faq-list .faq-item p {
  display: block;
  margin-top: 1rem;
  color: #a7a7a7;
  font-size: 13.6363636364px;
}

.faq-item h5::first-letter {
  color: #3cc280;
  font-size: 25.5px;
}
.faq-item p {
  border-left: 1px solid rgba(60, 194, 128, 0.3);
  border-radius: 12.5px 0 0 12.5px;
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: linear-gradient(to left, rgba(60, 194, 128, 0), rgba(60, 194, 128, 0.06));
}

.help-page .faq-item p {
  font-size: 15px;
  padding: 1rem 1.5rem;
}

.title-header h1 {
  font-weight: 800;
  font-size: 4rem;
  color: #fff;
}
.title-header h1 span {
  color: #6737f2;
}
.title-header ul li {
  padding-left: calc(30px + 1rem);
  background: url(../images/check.svg) left center no-repeat;
  background-size: 30px;
}
.title-header ul li:not(:last-of-type) {
  margin-right: 1rem;
}
.title-header .btn {
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
}

.offers-home {
  position: relative;
}
.offers-home::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 595px;
  height: 1228px;
  z-index: -1;
  background: url(../images/shape2_1.png) right center no-repeat;
}
.offers-home .nav-tabs {
  border-bottom: none;
}
.offers-home .nav-tabs li a {
  height: 42px;
}
.offers-home .nav-tabs li:nth-child(1) a.active {
  background: #de7878;
}
.offers-home .nav-tabs li:nth-child(2) a.active {
  background: #3cc280;
}
.offers-home .nav-tabs li:nth-child(3) a.active {
  background: #6737f2;
}
.offers-home .nav-tabs li:nth-child(4) a.active {
  background: #aec23c;
}
.offers-home .nav-tabs li:not(:last-of-type) {
  margin-right: 1rem;
}

.offers-home .tab-content .card-folder-red {
  background: url(../images/user-panel-bg.png) left top no-repeat, rgba(56, 56, 56, 0.1);
  background-size: 40%;
}
.offers-home .tab-content .card-folder-green {
  background: url(../images/user-panel-bg-green.png) left top no-repeat, rgba(56, 56, 56, 0.1);
  background-size: 40%;
}
.offers-home .tab-content .card-folder-green .list ul li span {
  color: #3cc280;
}
.offers-home .tab-content .card-folder-green .about-stacking ul li {
  background: url(../images/check.svg) left center no-repeat;
  background-size: 25px;
}
.offers-home .tab-content .card-folder-violet {
  background: url(../images/user-panel-bg-violet.png) left top no-repeat, rgba(56, 56, 56, 0.1);
  background-size: 40%;
}
.offers-home .tab-content .card-folder-violet .list ul li span {
  color: #6737f2;
}
.offers-home .tab-content .card-folder-violet .about-stacking ul li {
  background: url(../images/check-violet.svg) left center no-repeat;
  background-size: 25px;
}
.offers-home .tab-content .card-folder-yellow {
  background: url(../images/user-panel-bg-yellow.png) left top no-repeat, rgba(56, 56, 56, 0.1);
  background-size: 40%;
}
.offers-home .tab-content .card-folder-yellow .list ul li span {
  color: #aec23c;
}
.offers-home .tab-content .card-folder-yellow .about-stacking ul li {
  background: url(../images/check-yellow.svg) left center no-repeat;
  background-size: 25px;
}
.offers-home .tab-content .offer img {
  height: 40px;
}
.offers-home .tab-content .list ul li {
  border-radius: 12.5px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.offers-home .tab-content .list ul li span {
  color: #de7878;
}
.offers-home .tab-content .list ul li:not(:last-of-type) {
  margin-right: 1rem;
}
.offers-home .tab-content .about-stacking ul li {
  padding-left: calc(30px + 0.2rem);
  background: url(../images/check-red.svg) left center no-repeat;
  background-size: 25px;
}
.offers-home .tab-content .about-stacking ul li:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.offers-home .tab-content .percent {
  font-weight: 800;
  opacity: 0.7;
  color: #de7878;
  font-size: 4rem;
}

.title h1 {
  font-weight: 700;
}
.title span {
  color: rgba(255, 255, 255, 0.5);
}

.offcanvas {
  padding: 0;
  --bs-offcanvas-width: 340px;
  background: rgba(38, 44, 52, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 0 25px 25px 0;
  color: #f6f6f6;
  border: none;
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.25), 25px 0 20px -20px rgba(0, 0, 0, 0.25), 1px 1px 0px 0px rgba(222, 120, 120, 0.1) inset;
}
.offcanvas .btn-close {
  background: url(../images/close.svg) center center no-repeat;
  background-size: 30px;
  opacity: 1;
}
.offcanvas .offcanvas-footer {
  padding: 1rem;
}

.balances-list:hover > :not(:hover) {
  opacity: 0.4;
}
.balances-list .balance-box {
  border-radius: 25px;
  border: 2px dotted rgba(255, 255, 255, 0);
  transition: opacity 0.5s ease;
}
.balances-list .balance-box .card-folder {
  padding: 1rem;
  pointer-events: none;
}
.balances-list .balance-box .card-folder .balances-buttons {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.balances-list .balance-box .card-folder .balances-buttons .btn {
  pointer-events: auto !important;
  padding: 0.5rem;
  height: auto;
}
.balances-list .balance-box .card-folder .balances-buttons .btn.disabled {
  pointer-events: none !important;
}
.balances-list .balance-box .card-folder .balances-buttons .btn img {
  height: 16px;
}
.balances-list .balance-box .card-folder .balances-buttons input[type=radio]:checked ~ label {
  background: #3cc280;
}
.balances-list .balance-box .card-folder .balances-buttons .checking img {
  margin-right: 0 !important;
}
.balances-list .balance-box.over {
  border: 2px dotted rgba(255, 255, 255, 0.6);
}
.balances-list .balance-box:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

.border-top-b {
  -o-border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
     border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
  border-top: 1px solid;
}

.border-bottom-b {
  -o-border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
     border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
  border-bottom: 1px solid;
}

.balance img {
  height: 36px;
}

.about-page::before {
  display: none;
}

.about-home {
  position: relative;
}
.about-home::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -50px;
  background: url(../images/chart-bg.png) center center no-repeat;
  width: 909px;
  height: 242px;
}
.about-home .card-folder {
  background: url(../images/shape2.png) left top no-repeat, rgba(56, 56, 56, 0.1);
  background-size: 50%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.about-home .card-folder-2 {
  top: -30px;
  left: 50px;
}
.about-home h1.title {
  font-weight: 700;
}
.about-home h1.title span {
  color: #6737f2;
  font-weight: 900;
}
.about-home .offcanvas-list li a {
  padding: 0.5rem 1rem;
  border-radius: 12.5px;
  line-height: 0.7;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
}
.about-home .offcanvas-list li a img {
  height: 25px;
}
.about-home .offcanvas-list li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.dashboard-preview {
  position: relative;
}
.dashboard-preview::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: url(../images/shape2.png) left center no-repeat;
  width: 592px;
  height: 1228px;
  z-index: -1;
}
.dashboard-preview .laptop-img {
  position: relative;
}

.list2 li:not(:last-of-type) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  -o-border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
     border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
  border-bottom: 1px solid;
}
.list2 li {
  padding-left: calc(30px + 1.2rem);
  background: url(../images/check.svg) left center no-repeat;
  background-size: 30px;
}

.partners-list .col-md-2 img {
  width: 80%;
}

.how-it-works {
  position: relative;
}
.how-it-works::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: url(../images/shape3.png) left center no-repeat;
  width: 664px;
  height: 1292px;
  z-index: -1;
}
.how-it-works .row .col-md-6:nth-child(1) .card-folder {
  background: linear-gradient(to left, rgba(60, 194, 128, 0), rgba(60, 194, 128, 0.15)) 50% 0%, rgba(56, 56, 56, 0.1) url(../images/Mask-Circle.svg) bottom left no-repeat;
}
.how-it-works .row .col-md-6:nth-child(2) .card-folder {
  background: linear-gradient(to left, rgba(103, 55, 242, 0), rgba(103, 55, 242, 0.15)) 50% 0%, rgba(56, 56, 56, 0.1) url(../images/Mask-Circle.svg) bottom left no-repeat;
}
.how-it-works .row .col-md-6:nth-child(3) .card-folder {
  background: linear-gradient(to left, rgba(222, 120, 120, 0), rgba(222, 120, 120, 0.15)) 50% 0%, rgba(56, 56, 56, 0.1) url(../images/Mask-Circle.svg) bottom left no-repeat;
}
.how-it-works .row .col-md-6:nth-child(4) .card-folder {
  background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15)) 50% 0%, rgba(56, 56, 56, 0.1) url(../images/Mask-Circle.svg) bottom left no-repeat;
}
.how-it-works .col-md-6 a > img {
  position: relative;
  transform: rotate(180deg);
  height: 16px;
  top: -2px;
}
.how-it-works .col-md-6 img {
  height: 60px;
  margin-bottom: 1rem;
  filter: drop-shadow(3px 15px 15px rgba(0, 0, 0, 0.2));
}

.card-folder {
  background: rgba(56, 56, 56, 0.2);
  background-size: 300px;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.25), 25px 0 20px -20px rgba(0, 0, 0, 0.25), 1px 1px 0px 0px rgba(222, 120, 120, 0.1) inset;
}
.card-folder span {
  color: rgba(255, 255, 255, 0.5);
}
.card-folder a {
  padding: 0.625rem 0.8333333333rem;
  border-radius: 12.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}
.card-folder a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.card-folder-green {
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.25), 25px 0 20px -20px rgba(0, 0, 0, 0.25), 1px 1px 0px 0px rgba(60, 194, 128, 0.1) inset;
}

.card-folder-violet {
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.25), 25px 0 20px -20px rgba(0, 0, 0, 0.25), 1px 1px 0px 0px rgba(103, 55, 242, 0.15) inset;
}

.card-folder-red {
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.25), 25px 0 20px -20px rgba(0, 0, 0, 0.25), 1px 1px 0px 0px rgba(222, 120, 120, 0.15) inset;
}

.card-folder-dark {
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.25), 25px 0 20px -20px rgba(0, 0, 0, 0.25), 1px 1px 0px 0px rgba(255, 255, 255, 0.05) inset;
}

.news-home {
  position: relative;
}
.news-home::before {
  position: absolute;
  content: "";
  left: 0;
  top: 150px;
  background: url(../images/news-bg.png) left bottom no-repeat;
  width: 1102px;
  height: 621px;
  z-index: -1;
}
.news-home .item {
  width: 100%;
}
.news-home .item .news-img {
  border-radius: 25px;
  height: auto;
  width: 100%;
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.25), 25px 0 20px -20px rgba(0, 0, 0, 0.25), 1px 1px 0px 0px rgba(255, 255, 255, 0.05) inset;
}
.news-home .item .border-top {
  -o-border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
     border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
  border-top: 1px solid;
}
.news-home .item a {
  font-weight: 600;
}
.news-home .item a:hover {
  color: #fff;
}

footer {
  background: url(../images/footer-bg.png) bottom center no-repeat;
}

.download-app .container .da-container {
  background: url(../images/bg-app.png) right center no-repeat, linear-gradient(to left, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.05)) 50% 0%;
  padding: 3rem;
  border-radius: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.download-app .container .da-container .phone {
  position: absolute;
  content: "";
  top: -50px;
  right: 30px;
  height: 450px;
  width: auto;
  filter: drop-shadow(3px 15px 15px rgba(0, 0, 0, 0.55));
}
.download-app .container .da-container h1 {
  font-weight: 700;
}
.download-app .container .da-container h1 span {
  color: #6737f2;
  font-weight: 900;
}
.download-app .container .da-container h4 {
  color: rgba(255, 255, 255, 0.8);
}
.download-app .container .da-container span {
  color: rgba(255, 255, 255, 0.5);
}
.download-app .container .da-container ul li a {
  padding: 0.5rem 1rem;
  border-radius: 12.5px;
  line-height: 0.7;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
}
.download-app .container .da-container ul li a img {
  height: 25px;
}
.download-app .container .da-container ul li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.social-footer ul li {
  text-align: center;
  margin: 0 0.8rem;
}
.social-footer ul li img {
  height: 30px;
  opacity: 0.6;
}
.social-footer ul li a {
  color: #a7a7a7;
  font-size: 0.8rem;
}
.social-footer ul li a:hover {
  color: #fff;
}

.footer-bottom {
  color: #a7a7a7;
}
.footer-bottom .container {
  border-top: 1px solid;
  -o-border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
     border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 50% 0%;
}
.footer-bottom ul li {
  position: relative;
}
.footer-bottom ul li a {
  color: #a7a7a7;
}
.footer-bottom ul li a:hover {
  color: #fff;
}
.footer-bottom ul li:nth-child(2),
.footer-bottom ul li:nth-child(3) {
  padding-left: 1.4rem;
  margin-left: 1.4rem;
}
.footer-bottom ul li:nth-child(2)::before,
.footer-bottom ul li:nth-child(3)::before {
  position: absolute;
  content: "";
  left: -3px;
  top: calc(50% - 3px);
  border-radius: 50%;
  height: 6px;
  width: 6px;
  background: #6737f2;
}

.ps-home .ps-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 0.7142857143rem 1rem;
  margin: 0.3rem;
}
.ps-home .ps-list img {
  height: 30px;
}

.password-generator small {
  color: #3cc280;
}
.password-generator img {
  width: 14px;
}
.password-generator .dropdown-menu {
  position: absolute;
  bottom: 0;
}
.password-generator .dropdown-menu label {
  position: relative;
  top: 1px;
  font-size: 13.6363636364px;
}
.password-generator .dropdown-menu #pasteButton.disabled-link {
  opacity: 0.3 !important;
}

.forms-background {
  background: url(../images/forms5.jpg) center center no-repeat;
  background-size: cover;
  height: calc(100vh - 3rem);
  width: 100%;
  border-radius: 25px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.7);
}

.forms-folder h1 span {
  color: #6737f2;
  font-weight: 800;
}

@media (max-width: 991px) {
  .about-home {
    position: relative;
  }
  .about-home::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -50px;
    background: url(../images/chart-bg2.png) left center no-repeat;
    width: 654px;
    height: 242px;
  }
  .dashboard-preview .laptop-img {
    width: 100%;
  }
  .download-app .container .da-container .phone {
    top: 0px;
    right: -80px;
  }
}
@media (max-width: 767px) {
  .offers-home .nav-tabs li a {
    height: 38px;
    padding: 0.5rem 0.65rem;
    font-size: 0.9rem;
  }
  .logo:hover {
    color: #fff;
  }
  .logo img {
    height: 35px;
  }
  .logo h3 {
    font-size: 1.2rem;
    font-weight: 800;
  }
  .logo h3 span {
    color: #6737f2;
  }
  .double-input-container {
    display: block !important;
  }
  .double-input-container .ms-4 {
    margin-left: 0 !important;
  }
  .faq-list .faq-item {
    width: 100%;
  }
  .card-folder {
    padding: 1.5rem;
  }
  .support-folder .support, .support-folder .time {
    background-size: 20px;
    padding-left: 30px;
  }
  .support-folder .support span, .support-folder .time span {
    font-size: 0.8rem;
  }
  .support-folder .support small, .support-folder .time small {
    font-size: 0.7rem;
  }
  .title-header h1 {
    font-size: 3rem;
  }
  .header-top .search {
    min-width: auto !important;
  }
  .about-home {
    position: relative;
  }
  .about-home::before {
    position: absolute;
    content: "";
    left: -100px;
    bottom: -110px;
    background: url(../images/chart-bg.svg) left center no-repeat;
    width: 909px;
    height: 242px;
    opacity: 0.5;
  }
  .about-home .card-folder-2 {
    top: 0px;
    left: 0px;
    margin-top: 1.5rem;
  }
  .news-home {
    margin: 0 1rem;
  }
  .news-home .item {
    width: 100%;
  }
  .news-home .item .news-img {
    border-radius: 25px;
    max-height: auto;
    width: 100%;
    box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.25), 25px 0 20px -20px rgba(0, 0, 0, 0.25), 1px 1px 0px 0px rgba(255, 255, 255, 0.05) inset;
  }
  .pb-10 {
    padding-bottom: 5rem;
  }
  .py-10 {
    padding: 5rem 0;
  }
  .pt-10 {
    padding-top: 5rem;
  }
  .download-app .container .da-container {
    padding: 2rem;
  }
}/*# sourceMappingURL=main.css.map */