*,
*::after,
*::before {
  box-sizing: border-box;
  outline: none !important;
}

.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

html,
.header:not(.index),
.payment,
.thank-you,
.terms {
  overflow: scroll;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.header::-webkit-scrollbar,
.payment::-webkit-scrollbar,
.thank-you::-webkit-scrollbar,
.terms::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.header::-webkit-scrollbar-thumb,
.payment::-webkit-scrollbar-thumb,
.thank-you::-webkit-scrollbar-thumb,
.terms::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #fff;
}

.header .title,
.header .sub-title,
.payment .title,
.payment .sub-title,
.thank-you .title,
.thank-you .sub-title,
.terms .title,
.terms .sub-title {
  padding: 0 20px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

select:invalid {
  color: gray;
}

.hide {
  display: none;
}

.error {
  color: #ed1c24;
}

a,
a:hover {
  text-decoration: none;
}

.text-white-80 {
  color: rgba(255, 255, 255, .8);
}

.header:not(.index),
.payment,
.thank-you,
.terms {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url('../img/bg-img-5.jpg');
  background-size: cover;
  background-position: center center;
}

.header:not(.index),
.terms {
  left: 0;
  top: 0;
}

.logo a,
.logo a:hover {
  color: #000000;
  text-decoration: none;
}

.main {
  background-image: url('../img/bg-img-11.jpg');
  background-color: #fafafa;
  background-size: cover;
  background-position: center center;
}

.form-control-cust-padding {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.send-money-form .select2-selection {
  height: auto;
  padding: 0.6rem 0.75rem;
  border-color: #ced4da;
}

.send-money-form .select2-selection__rendered {
  padding: unset !important;
  color: #6c757d !important;
  line-height: 1.5 !important;
}

.send-money-form .select2-selection .select2-selection__arrow {
  right: 1%;
  top: 50%;
  transform: translateY(-50%);
}

.send-money-form .select2-selection .select2-search__field {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .3);
}

.send-money-form .form-control:focus,
.payment .form-control:focus,
.send-money-form .select2-selection:focus,
.send-money-form .select2-selection:focus .select2-container .select2-dropdown {
  transition: all .5s;
  box-shadow: unset;
  border-color: var(--bs-gray-dark);
}

.alert-msg {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

.btn-close:focus {
  box-shadow: none;
}

.btn-danger {
  box-shadow: 0 0 0 3px rgba(220, 56, 72, .3);
}

#back-to-top,
#header-btn-down {
  display: inline-block;
  background-color: rgb(220, 56, 72);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 5px;
  position: fixed;

  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;

}

#back-to-top {
  bottom: 4px;
  left: 30px;

}

#header-btn-down {
  top: 15px;
  right: 14px;

}


#back-to-top::after,
#header-btn-down::after {
  content: "\f077";
  font-family: "Font Awesome 5 Pro";
  font-weight: normal;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 50px;
  color: #fff;
  animation: up-down 2.5s linear infinite;
  display: inline-block;
}

#header-btn-down::after {
  content: "\f078";
}

#back-to-top:hover,
#header-btn-down:hover {
  cursor: pointer;
  background-color: #bb2d3b;
  text-decoration: none;
}

#back-to-top:active,
#header-btn-down:active {
  background-color: #bb2d3b;
}

#back-to-top.show,
#header-btn-down.show {
  opacity: 1;
  visibility: visible;
}

@keyframes up-down {
  0% {
    transform: translateY(0%);
  }

  25% {
    transform: translateY(-10%);
  }

  75% {
    transform: translateY(10%);
  }

  100% {
    transform: translateY(0%);
  }
}

.timeline {
  position: relative;
  margin: 10px auto 10px auto;
  padding-top: 10px;
  width: 1000px;
  box-sizing: border-box;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #c5c5c5;
}

.timeline ul {
  padding: 0;
  margin: 0;
}

.timeline ul li {
  list-style: none;
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline ul li:nth-child(odd) {
  float: left;
  text-align: right;
  clear: both;
}

.timeline ul li:nth-child(even) {
  float: right;
  text-align: left;
  clear: both;
}

.timeline .content {
  /* padding-bottom:10px; */
}

.timeline ul li:nth-child(odd):before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 24px;
  right: -6px;
  background: #bb2d3b;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(220, 56, 72, .2);
}

.timeline ul li:nth-child(even):before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 24px;
  left: -4px;
  background: #bb2d3b;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(220, 56, 72, .2);
}

.timeline ul li h3 {
  padding: 0;
  margin: 0;
  color: #bb2d3b;
  font-weight: 600;
}

.timeline ul li p {
  margin: 10px 0 0;
  padding: 0;
}

.timeline ul li .time h4 {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.timeline ul li:nth-child(odd) .time {
  position: absolute;
  top: 12px;
  right: -145px;
  margin: 0;
  padding: 8px 16px;
  background: #bb2d3b;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 0 0 3px rgba(220, 56, 72, .3);
}

.timeline ul li:nth-child(even) .time {
  position: absolute;
  top: 12px;
  left: -145px;
  margin: 0;
  padding: 8px 16px;
  background: #bb2d3b;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 0 0 3px rgba(220, 56, 72, .3);
}

@media(max-width:1000px) {
  .timeline {
    width: 100%;
  }
}

@media(max-width:767px) {
  .timeline {
    width: 100%;
    padding-bottom: 0;
    margin: 20px auto;
    padding-top: 50px;
  }

  .timeline:before {
    left: 20px;
    height: 95%;
    top: 30px;
  }

  .timeline ul li:nth-child(odd),
  .timeline ul li:nth-child(even) {
    width: 100%;
    text-align: left;
    padding-left: 50px;
    padding-bottom: 50px;
    padding-top: 40px;
    padding-right: 40px;
  }

  .timeline ul li:nth-child(odd):before,
  .timeline ul li:nth-child(even):before {
    top: 0px;
    left: 16px;
  }

  .timeline ul li:nth-child(odd) .time,
  .timeline ul li:nth-child(even) .time {
    top: -10px;
    left: 50px;
    right: inherit;
  }
}

@media (min-width: 768px) {
  .main {
    height: 100%;
  }
}

#error-container .btn-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.payment,
.thank-you {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url('../img/bg-img-3.jpg');
}

.payment {
  top: 0;
  width: 0;
  right: 0;
}

.thank-you {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url('../img/bg-img-11.jpg');
  bottom: 0;
  height: 0;
}

.payment .form-control:focus {
  box-shadow: unset;
}

#alipay-form .alipay-qr,
#wechat-form .wechat-qr {
  height: 300px;
  width: auto;
  text-align: center;
}

#alipay-form .alipay-qr img,
#wechat-form .wechat-qr img {
  height: 100%;
  width: auto;
}

.thank-you .title {
  color: #00c23f;
}

.thank-you-icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c23f;
  font-size: 60px;
}

.list-style-alpha {
  list-style-type: lower-alpha;
}

.list-style-roman {
  list-style-type: lower-roman;
}

#receiving-amount {
  pointer-events: none;
}

.language-btns .btn {
  background-color: #bb2d3b;
  width: 210px;
}

.btn-check:active+.btn-outline-dark:focus,
.btn-check:checked+.btn-outline-dark:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus {
  box-shadow: none;
}

.main-section.main-page {
  height: 100vh;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url('../img/bg-img.jpg');
  /* background-attachment: fixed; */
  background-size: cover;
  background-position: center center;
}

html::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.section-spacing {
  padding-top: 90px;
  padding-bottom: 90px;
}

.top-nav {
  padding: 20px 0;
}

.main-page .logo {
  max-width: 180px;
  display: inline-block;
  margin-right: 10px;
}

.main-page .logo img {
  width: 100%;
  height: auto;
}

.top-nav .nav-link {
  color: black;
  font-weight: 500;
  padding: 0 1rem;
}

.main-page .header-section {
  margin-top: 80px;
}

.main-page .header {
  background-image: unset;
  height: unset;
}

.main-page .header.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: .3s;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.04);
}

.main-page .main-wrapper {
  height: 100%;
  overflow-y: scroll;
}

.w-20 {
  width: 20% !important;
}

.w-15 {
  width: 15% !important;
}

.w-13 {
  width: 13% !important;
}

.w-10 {
  width: 10% !important;
}

.mobile-nav .nav-item {
  width: 100%;
}

.mobile-nav .nav-item>a {
  background-color: rgba(255, 255, 255, .6);
  width: 100%;
  color: red;
  display: block;
  border: 1px solid #ececec;
  text-transform: uppercase;
  font-weight: 600;
}

.mobile-nav .nav-item:last-child button {
  border: 1px solid #ececec;
  width: 100%;
}

.btn-check:active+.btn-outline-danger:focus,
.btn-check:checked+.btn-outline-danger:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger:active:focus {
  box-shadow: none;
}

.font-weight-bold {
  font-weight: bold;
}

.font-weight-600 {
  font-weight: 600;
}

.text-justify {
  text-align: justify;
}

main-page .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: var(--bs-danger);
  color: #fff;
}

main-page .nav-pills button {
  color: var(--bs-dark);
}

.menu-btn {
  width: 50px;
}

.menu-close {
  width: 30px;
}

/*Profile card 2*/
.profile-card-2 {
  overflow: hidden;
  transition: all .5s;
  margin: 0 0 30px 0;
}

.profile-card-2:hover {
  transform: translateY(-10px);
}

.profile-card-2 .card-body {
  position: relative;
}

.profile-card-2 .profile {
  border-radius: 50%;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  background: #fff;
  border: 3px solid rgba(220, 53, 69, 1);
  font-size: 35px;
}

.profile-card-2 h5 {
  font-weight: 600;
}

.profile-card-2 .card-text {
  font-weight: 300;
  font-size: 15px;
}

.profile-card-2 .icon-block {
  float: left;
  width: 100%;
}

.profile-card-2 .icon-block a {
  text-decoration: none;
  font-size: 0.85rem;
}

.app-box {
  max-width: 200px;
}

.app-box img {
  width: 100%;
  height: auto;
}
#contact-form .form-control:focus{
  box-shadow: 0 0 0 3px rgba(220, 56, 72, 0.3);
  border-color: #dc3545;
}
.footer .copyright {
  position: relative;
  padding: 25px 0;
  background: #FFFFFF;
}

.footer .copyright .copy-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}

.footer .copyright .copy-text p a {
  transition: all .5s;
  color: #dc3545;
  text-decoration: none;
}

.footer .copyright .copy-text p a:hover {
  color: #ff0019;
}

.footer .copyright .copy-menu {
  position: relative;
  font-size: 0;
  text-align: right;
}

.footer .copyright .copy-menu a {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  margin-right: 15px;
  padding-right: 15px;
  transition: all .5s;
  border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .copyright .copy-menu a:hover {
  color: #dc3545;
}

.footer .copyright .copy-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

@media (max-width: 767.98px) {

  .footer .copyright .copy-text,
  .footer .copyright .copy-menu {
    text-align: center;
  }

  .footer .copyright .copy-text p {
    margin-bottom: 5px;
  }

}