:root {
   --primary: #3c8dbc;
   --red: #f14836;
   --white: #fff;
}

body {
   font-family: 'Source Sans Pro', sans-serif;
}

.theme-clr {
   color: var(--red);
}

a:hover {
   text-decoration: none;
}

.all_center {
   display: flex;
   align-items: center;
}

.ptb-80 {
   padding: 80px 0;
}

.title_decor {
   position: relative;
   margin-bottom: 2rem;
}

.title_decor::after {
   position: absolute;
   content: '';
   width: 300px;
   height: 30px;
   bottom: -31px;
   left: 50%;
   transform: translate(-50%);
   background-image: url(/public/images/separetor.png);
   background-repeat: no-repeat;
   background-position: center;
   background-size: 55%;
}

.sec-title {
   padding-top: 10px;
   font-weight: 600;
   font-size: 32px;
   margin-bottom: 50px;
   text-align: center;
}

.navbar {
   padding: 30px 10px;
}

.navbar .brand-logo img {
   width: 200px;
}

.client-button a {
   font-weight: 700;
   font-size: 16px;
   border-radius: 50px;
   border: 2px solid var(--red);
   cursor: pointer;
   transition: all 0.4s ease-out 0s;
   margin-left: 5px;
}

.client-button .login_btn {
   color: var(--white);
   background-color: var(--red);
}

.client-button .reg_btn {
   color: var(--red);
   background-color: var(--white);
}

.client-button .reg_btn:hover {
   color: var(--white);
   background: var(--red);
}

.client-button .login_btn:hover {
   color: var(--red);
   background: var(--white);
}

.hero .container {
   margin-top: 0;
}

.payment_method {
   display: flex;
   justify-content: space-between;
   margin-top: 30px;
   margin-bottom: 30px;
}

.payment_method .payment_img {
   display: grid;
   place-content: center;
}

.payment_method img {
   width: 100px;
}

.hero {
   min-height: 0;
   display: flex;
   align-items: center;
}

.hero-img {
   margin-top: -15px;
}

.hero-sec {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
}

.hero-sec p {
   font-size: 20px;
   line-height: 1.6;
   font-weight: 300;
}

.hero-sec img {
   max-width: 100%;
   height: auto;
}

.hero-sec .hero-title {
   font-size: 40px;
   font-weight: 700;
}

.bg-light {
   background-color: #fafafa;
}

.d-rate thead tr {
   border-top: 3px solid #f14836;
}

.d-rate img {
   border-radius: 5px;
}

.d-rate tr th {
   font-size: 18px;
   border: 0 !important;
}

.d-rate tr {
   border: 1px solid #ddd;
}

.d-rate tr th,
.d-rate tr td {
   padding: 15px 20px !important;
}

.d-rate > tbody > tr > td {
   border-top: 0;
}

.d-rate tbody tr > :not(:first-of-type) {
   padding: 15px 30px !important;
   vertical-align: middle;
}

.d-rate tbody tr > :first-child {
   font-size: 16px;
   font-weight: 700;
}

div ul:not(:first-child) {
   background-color: #900;
}

.withdrawl-mtd {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}

.withdrawl-mtd img {
   width: 150px;
   filter: grayscale(100%);
   opacity: 0.5;
   transition: filter 0.15s, opacity 0.15s;
   margin: 0 auto;
}

.withdrawl-mtd img:hover {
   filter: grayscale(0);
   opacity: 1;
}

footer .cta {
   padding: 20px 0;
}

.footer-copyright {
   color: #ffffff;
   padding: 25px;
   border-top: 1px solid rgb(206, 206, 206);
   background: #1a1a1a;
}

p {
   font-size: 16px;
}

@media (min-width: 992px) {
   .hero {
      min-height: 88vh;
   }
   .text-md-left {
      text-align: left;
   }

   .hero .container {
      margin-top: -108px;
   }

   .hero .hero-title {
      font-size: 60px;
   }
   .payment_method img {
      width: 135px;
   }
   .navbar .brand-logo img {
      width: 250px;
   }
   .shadow {
      padding: 30px;
   }
}

/* terms and conditions */
/* .shadow {
   box-shadow: 1px 0px 11px 0px #827f7f;
} */
.pt-40 {
   padding-top: 40px;
}
.mt-0 {
   margin-top: 0px;
}
.mb-0 {
   margin-bottom: 0px;
}
.mt-4 {
   margin-top: 25px;
}
.terms {
   margin-left: 25px;
}
.terms p {
   margin-bottom: 30px;
   font-size: 18px;
   position: relative;
}
.terms p::before {
   content: '\f05d';
   font: normal normal normal 18px/1 FontAwesome;
   position: absolute;
   top: 5px;
   left: -25px;
}
.breadcrumb {
   background-color: hsl(0deg 0% 90%);
}
