/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
  --gradient-bg: #000;
  --dark-bg: #202020;
  --white-color: #fff;
  --primary-color: #CDB189;
  --secondary-color: #3b3422;
  --border-color: #997c4a;
  --fonts: "Montserrat", sans-serif;
  --fonts-color: #ffffff;
  --footer-bg: #CDB189;
  --bg-hover: #555;
  --font-red: #ff0000;
  --font-green: #008000;
}
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-family: var(--fonts);
  font-size: 20px;
  background: var(--dark-bg);
  position: relative;
}
.d-flex {
  display: flex;
}
.justify-content-center {
  justify-content: center;
}
.align-items-center {
  align-items: center;
}
.gap-15 {
  gap: 10px;
}
.gap-10 {
  gap: 10px;
}
.column {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.col-1 {
  flex: 0 0 50%;
  padding-right: 15px;
}
.col-2 {
  flex: 0 0 50%;
  padding-left: 15px;
}
.text-red {
  color: var(--font-red);
}
.text-green {
  color: var(--font-green);
}
.bg-gardient {
  background: var(--gradient-bg);
}
.desc-table .table-body td {
  padding: 10px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
}
table tr:first-child {
/*  background: var(--gradient-bg);*/
  color: var(--white-color);
}
table tr:first-child th:first-child {
  border-top-left-radius: 12px;
}
table tr:first-child th:last-child {
  border-top-right-radius: 12px;
}
table tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}
table tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}
table td,
table th {
  border: 0;
  font-weight: 700;
  padding: 15px 15px;
  border-collapse: collapse;
  text-align: center;
  color: var(--white-color);
  letter-spacing: 1.5px;
  font-size: 24px;
}
thead th {
  color: #CDB189;
}
table td {
  padding: 10px 20px;
  min-width: 130px;
  position: relative;
  line-height: 1;
  background-color: #313236;
}
tbody td::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
}
table td:first-child::after {
  background-color: var(--primary-color);
}
table tr:last-child td::after {
  display: none;
}
/*table tbody td::before {
  content: "";
  height: 60%;
  z-index: 1;
  width: 1px;
  background-color: var(--primary-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}*/
.table-responsive {
  border-radius: 15px;
  border: 3px solid var(--primary-color);
}
table tbody td:last-child::before {
  display: none;
}
.text-uppercase {
  text-transform: uppercase;
}
.gl-kg {
  display: block;
  font-size: 16px;
  color: var(--primary-color);
}
.small-text {
  font-size: 14px;
}
.big-text {
  font-size: 28px;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: left;
}
.wrap {
  padding: 25px 25px 40px;
  position: relative;
}
marquee {
  font-size: 18px;
  padding: 0 5px;
  color: var(--primary-color);
  font-weight: 800;
}
.rates-heading {
  text-align: center;
  color: #be965b;
  background: #fff;
  padding: 8px;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  font-size: 18px;
}
.para-section {
  padding: 50px 80px;
  position: relative;
}
.dark-bg {
  background-color: var(--dark-bg);
}
/* Header css :: BEGIN */
.header-section {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.download-section h5 {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 800;
  color: var(--white-color);
}
.download-section h5 span {
  font-weight: 400;
}
.gold-box {
  background: #313236;
  border-radius: 15px;
  
  border: 1px var(--primary-color) solid;
  display: flex;
  align-items: center;
  color: var(--white-color);
  padding: 15px;
  gap: 15px;
  flex-grow: 1;
  width: 100%;
  justify-content: space-around;
  position: relative;
}
.gold-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gold-title p {
  margin: 0;
  font-weight: 800;
  line-height: 26px;
  font-size: 35px;
}
.gold-title p span {
  font-weight: 400;
  font-size: 60%;
}
.line-h {
  padding: 0 20px;
}
.logo {
  font-size: 30px;
  color: var(--white-color);
}
header a {
  text-decoration: none;
  cursor: pointer;
}
header .d-flex {
  gap: 8px;
}
header .d-flex a img {
  width: 75px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 5px;
}
.line-v {
  width: 100%;
  margin-top: 10px;
  background-color: var(--white-color);
  height: 2px;
}
.logo a {
  background-color: transparent;
  padding: 0;
}
header a svg {
  fill: var(--dark-bg);
}
.bid-section {
  text-align: center;
  line-height: 1;
}
.bid-section h1 {
  /* margin: 5px 0 2px;
  font-size: 35px;
  text-align: left; */
  margin: 5px 0 5px;
  font-size: 35px;
  text-align: left;
  background: var(--primary-color);
  padding: 2px 30px;
  border-radius: 25px;
}
.bid-section .rate-description {
  margin: 0;
  display: flex;
  align-items: baseline;
  font-size: 16px;
  gap: 6px;
  justify-content: center;
  font-size: 18px;
}
/* Header css :: END */
/* content section css :: BEGIN */
.content-section {
  position: relative;
  height: 100%;
}
.rate-box {
  width: 100%;
  margin: 0 auto;
  padding-top: 15px;
}
.rate-box-body {
  color: var(--fonts-color);
  text-transform: uppercase;
  padding: 10px 0;
}
.white-text {
  color: var(--white-color);
}
.primary-text {
  color: var(--primary-color);
}
.table-header {
  font-size: 20px;
  padding: 10px;
  margin: 10px 0;
  border-radius: 15px;
  font-weight: 600;
}
.table-body {
  font-size: 20px;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  background-color: var(--dark-bg);
}
.tabw1 {
  width: 34%;
  text-align: center;
}
.tabw2 {
  width: 20%;
  text-align: center;
}
.tabw3,
.tabw4 {
  width: 23%;
  text-align: center;
}
table p {
  margin: 0;
}
.top-border {
  border-top: 1px solid var(--border-color);
}
table td p.top-border {
  width: fit-content;
  margin: auto;
  padding: 2px 10px;
}
table tr th:first-child,
table tr td:first-child {
  text-align: left;
}
.bid-section .rate-description span {
  font-weight: 800;
}
table th:last-child,
table td:last-child,
table th:nth-child(3),
table td:nth-child(3) {
  text-align: right;
}
.download-logo-set {
  gap: 20px;
  margin-bottom: 15px;
}
.download-logo-set a {
  color: transparent;
  text-decoration: none;
}
.download-logo-set img {
  width: 100px;
  height: 30px;
  object-fit: contain;
}
/* content section css :: END */
/* Footer css :: BEGIN */
.footer-bottom {
  background: var(--footer-bg);
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  position: relative;
  font-size: 14px;
  color: #463b29;
  font-weight: 700;
}
.footer-bottom a {
  color: #463b29;
}
footer p {
  margin: 0;
}
.footer-copyright {
  padding: 5px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--fonts-color);
}
.footer-bottom .muted-text {
  color: #7d7ac6;
}
.footer-set-fixed {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
}
footer {
/*  position: fixed;*/
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.whats-app-icon{
  position: absolute; 
  right: 6px; 
  top:6px;
  cursor: pointer;
}
/* Footer css :: END */

.tradingview_booking {
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* Media Query */
@media screen and (min-width: 1440px) {
  table td,
  table th {
    padding: 18px;
    font-size: 34px;
  }
  body,
  marquee {
    font-size: 26px;
  }
  .download-logo-set img {
    width: 150px;
    height: 50px;
    object-fit: fill;
  }
  .whats-app-icon{
    width:32px;
    height:32px;
  }
}
@media screen and (min-width: 1620px) {
  body,
  marquee {
    font-size: 40px;
  }
  .gold-title img {
    width: 45px;
  }
  .rate-description svg {
    width: 32px;
    height: 32px;
  }
  .footer-bottom {
    font-size: 30px;
  }
  .download-section h5 {
    line-height: 32px;
  }
  .table-body,
  .table-header {
    font-size: 28px;
  }
  .table-body {
    margin: 20px 0;
  }
  .gold-title p {
    font-size: 44px;
    line-height: 36px;
  }
  .gold-title p span {
    font-size: 68%;
  }
  .bid-section small {
    font-size: 40px;
  }
  .bid-section h1 {
    font-size: 42px;
    padding: 5px 30px;
  }
  .logo img {
    width: 300px;
  }
  table table td {
    min-width: 220px;
  }
  .header-section {
    gap: 50px;
  }
  table td,
  table th {
    padding: 20px 20px;
    font-size: 50px;
  }
  .table-responsive {
    border-width: 5px;
  }
  .wrap {
    padding-bottom: 70px;
  }
  header .d-flex a img {
    width: 180px;
    height: 60px;
  }
  .gl-kg,
  .bid-section .rate-description {
    font-size: 32px;
  }
}
@media screen and (min-width: 2500px) {
  body,
  marquee {
    font-size: 54px;
  }
  .header-section {
    gap: 100px;
  }
  .gl-kg,
  .bid-section .rate-description {
    font-size: 52px;
  }
  .download-section h5 {
    line-height: 47px;
  }
  .table-responsive {
    border-width: 10px;
  }
  table td,
  table th {
    padding: 45px 70px;
  }
  .logo img {
    width: 480px;
  }
  header .d-flex a img {
    width: 240px;
    height: 82px;
  }
  .gap-15 {
    gap: 50px;
  }
  .table-header,
  .table-body {
    font-size: 48px;
  }
  .table-body {
    margin: 35px 0;
  }
  .footer-bottom {
    font-size: 30px;
    padding: 30px 25px;
  }
  table table td {
    min-width: 300px;
  }
  table th .d-flex img {
    width: 10%;
  }
  .gold-title p {
    line-height: 62px;
    font-size: 76px;
  }
  .gold-title {
    gap: 45px;
  }
  .line-h svg {
    height: 100%;
  }
  .gold-title img {
    width: 100px;
  }
  .bid-section h1 {
    font-size: 84px;
  }
  .bid-section .rate-description {
    font-size: 46px;
    gap: 16px;
  }
  .bid-section .rate-description svg {
    width: 50px;
    height: 50px;
  }
  .download-logo-set img {
    width: 450px;
    height: 130px;
    object-fit: fill;
  }
  .download-logo-set {
    gap: 100px;
  }
}
@media screen and (min-width: 3500px) {
  .logo img {
    width: 700px;
  }
  .table-responsive {
    border-radius: 22px;
  }
  body,
  marquee {
    font-size: 100px;
  }
  .download-section h5 {
    line-height: 88px;
  }
  .gold-title p {
    line-height: 72px;
    font-size: 120px;
  }
  .bid-section h1 {
    font-size: 120px;
  }
  .wrap {
    padding: 65px 55px 0;
  }
  .bid-section small {
    font-size: 94px;
  }
  .bid-section .rate-description {
    font-size: 66px;
    gap: 20px;
  }
  .bid-section .rate-description svg {
    width: 70px;
    height: 70px;
  }
  table td,
  table th {
    font-size: 110px;
    padding: 45px 100px;
  }
  header .d-flex a img {
    width: 380px;
    height: 130px;
  }
  .rate-box-body {
    padding: 25px 0;
  }
  .gl-kg,
  .bid-section .rate-description {
    font-size: 74px;
  }
  .footer-bottom {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199.25px) {
  .logo img {
    width: 150px;
  }
  .bid-section h1 {
    font-size: 20px;
  }
  .whats-app-icon{
    width:32px;
    height: 32px;
  }
  .gold-title p {
    line-height: 19px;
    font-size: 24px;
  }
  .bid-section .rate-description {
    font-size: 14px;
  }
  table td,
  table th {
    font-size: 18px;
    padding: 10px;
  }
  .gl-kg {
    font-size: 14px;
  }
}
@media screen and (max-width: 900.25px) {
  table table td {
    min-width: 70px;
  }
  .gold-box {
    gap: 5px;
    padding: 10px 5px;
  }
  .line-h {
    padding: 0 5px;
  }
  .gold-title p {
    font-size: 20px;
  }
  .bid-section h1 {
    font-size: 18px;
  }
  .bid-section .rate-description {
    font-size: 12px;
  }
  .header-section {
    gap: 10px;
  }
  header .d-flex a img {
    width: 85px;
    height: 25px;
  }
}
@media screen and (max-width: 767.25px) {
  body {
    font-size: 14px;
    overflow: auto;
  }
  .whats-app-icon{
    right: 10px; 
    top:10px;
    width: 25px;
    height: 25px;
  }
  header .d-flex a img {
    width: 115px;
    height: 35px;
    border-radius: 5px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
  .d-flex,
  .header-section,
  .gold-box {
    flex-wrap: wrap;
  }
  .header-section {
    gap: 10px;
    justify-content: center;
  }
  table td,
  table th {
    font-size: 14px;
  }
  .bid-section .rate-description {
    font-size: 14px;
  }
  .gold-box{
    padding: 15px;
    display: flex;
    justify-content: space-between;
    row-gap: 10px;
  }
  .gold-title{
    flex:0 0 100%;
  }
  .gold-box .line-h{
    display: none;
  }
  .bids-section {
    flex: 0 0 46%;
  }
  .gold-title p {
    line-height: 16px;
    font-size: 20px;
  }
  .rate-box {
    border-width: 15px;
    width: 100%;
  }
  .rate-box-body {
    padding: 5px 0;
  }
  table table td span {
    border-radius: 10px;
    padding: 5px;
  }
  .table-responsive {
    position: relative;
    overflow: auto;
  }
  table td,
  table th {
    padding: 15px 20px;
    font-size: 14px;
  }
  .logo img {
    width: 300px;
  }
  header .d-flex {
    justify-content: center;
  }
  footer {
    display: block;
    position: relative;
  }
  .wrap {
    padding: 10px 10px 0;
  }
  .footer-section {
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
  }
  table table td {
    min-width: 45px;
  }
  .line-h {
    padding: 0px 5px;
  }
  .bid-section h1 {
    font-size: 22px;
    padding: 2px 5px;
    text-align: center;
  }
  .bid-section .rate-description {
    font-size: 13px;
    gap: 2px;
  }
  .bid-section .rate-description svg {
    width: 12px;
    height: 12px;
  }
  .download-logo-set {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  table th,
  table td {
    width: 30px;
    max-width: 30px;
    min-width: 30px;
  }
  .buy_rate,
  .sell_rate {
    font-size: 16px;
  }
}
@media screen and (max-width: 670px) {
  table td,
  table th {
    padding: 15px 5px;
  }
}
@media screen and (max-width: 375px) {
  table td,
  table th {
    min-width: 30px;
    font-size: 12px;
  }
}
