@charset "UTF-8";

:root {
  scroll-behavior: smooth;
}

:root {
  --color-white: #fff;
  --color-gra: linear-gradient(135deg, #ff6b35, #e8910d);
  --color-primary: #e8910d;
  --color-black: #333;
  --color-yellow: #ffc107;
  --color-bg: #191d31;
  --color-yellowtwo: #e8910d;
  --color-gratwo: linear-gradient(135deg, rgba(232, 145, 13, .1), rgba(255, 107, 53, .05));
  --color-border: rgba(232, 145, 13, .2);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--color-black);
  font-family: 'Poppins', sans-serif !important;
}

a {
  color: var(--color-black);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--color-black);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-black);
}

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

main section {
  padding: 20px;
}

.gap_y25 {
  gap: 25px 0;
}

.heading_main h2 {
  font-size: clamp(22px, 5vw, 40px);
  margin-bottom: 0;
  font-weight: 500;
  color: var(--color-black);
}

.heading_main h2 .d_flex {
  display: flex;
  gap: 0 10px;
  align-items: center;
  justify-content: center;
}


.button_mamin a, .button_mamin button{
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  border-radius: 6px;
  transform: all .5s;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 22px;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
.button_mamin a:hover, .button_mamin button:hover{
  background-color: var(--color-primary);
  color: var(--color-white);
}
.button_mamin a:focus, .button_mamin button:focus{
  border: 1px solid var(--color-primary);
  outline: none;
  box-shadow: none;
}

.imgbutton a, .imgbutton button {
	background: transparent;
  border: 0;
}

@-webkit-keyframes glowing {
  0% { background-color: #ff6b35; -webkit-box-shadow: 0 0 3px #ff6b35; }
  50% { background-color: #ff6b35; -webkit-box-shadow: 0 0 40px #ff6b35; }
  100% { background-color: #ff6b35; -webkit-box-shadow: 0 0 3px #ff6b35; }
}

@-moz-keyframes glowing {
  0% { background-color: #ff6b35; -moz-box-shadow: 0 0 3px #ff6b35; }
  50% { background-color: #ff6b35; -moz-box-shadow: 0 0 40px #ff6b35; }
  100% { background-color: #ff6b35; -moz-box-shadow: 0 0 3px #ff6b35; }
}

@-o-keyframes glowing {
  0% { background-color: #ff6b35; box-shadow: 0 0 3px #ff6b35; }
  50% { background-color: #ff6b35; box-shadow: 0 0 40px #ff6b35; }
  100% { background-color: #ff6b35; box-shadow: 0 0 3px #ff6b35; }
}

@keyframes glowing {
  0% { background-color: #ff6b35; box-shadow: 0 0 3px #ff6b35; }
  50% { background-color: #ff6b35; box-shadow: 0 0 40px #ff6b35; }
  100% { background-color: #ff6b35; box-shadow: 0 0 3px #ff6b35; }
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--color-black);
  background-color: #ffffffc7;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.scrolled .header {
  isolation: isolate;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--color-black);
    padding: 18px 15px;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--color-primary);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--color-white);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}




.banner_hero {
  padding-top: 100px;
}

.banner_hero .banner_aliter {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ff6b6b;
}

.banner_hero .banner_aliter h3 {
  padding: .75rem 1rem;
  background: #ff6b6b;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0;
}

.banner_hero .banner_aliter p {
  padding: 18px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #ff6b6b;
  margin-bottom: 0;
  text-align: center;
}

.card_banner .card_gme {
  background-color: var(--color-white);
  border: 1px solid #e4e7ea;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 12px;
  padding: 15px 10px 10px 10px;
  height: 100%;
}

.card_banner .card_gme .w_100 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card_banner .card_gme .w_100 .w_80 {
  width: 80%;
  min-width: 80%;
  max-width: 80%;
}

.card_banner .card_gme .w_100 .w_80 h3 {
  font-size: clamp(20px, 5vw, 26px);
  margin-bottom: 10px;
  font-weight: 600;
  background: linear-gradient(135deg, #ff6b35, #e8910d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Montserrat', sans-serif !important;
  text-transform: uppercase;
}

.card_banner .card_gme .w_100 .w_80 h4 {
  font-size: clamp(20px, 5vw, 26px);
  margin-bottom: 6px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif !important;
}

.card_banner .card_gme .w_100 .w_20 img {
  max-width: 70px;
  max-height: 70px;
  cursor: pointer;
}

.card_banner .card_gme .w_100 .w_20 img.animt {
  display: inline-block;
  animation: scaleAnimation 1.4s ease-in-out infinite;
}

@keyframes scaleAnimation {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.card_banner .card_gme .button_card {
  display: flex;
  align-items: center;
  gap: 10px 10px;
  justify-content: center;
  margin-bottom: 4px;
}

.card_banner .card_gme .button_card a.buttoncard {
  background: linear-gradient(135deg, #ff6b35, #e8910d);
  border: none;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 400;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 15px rgba(232, 145, 13, .3);
  color: #fff !important;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  font-size: 12px;
}

.card_banner .card_gme .button_card a.buttoncard::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: hsla(0, 0%, 100%, .2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .6s ease, height .6s ease;
  z-index: 0;
}

.card_banner .card_gme .button_card a.buttoncard:hover:before {
  width: 300px;
  height: 300px;
}

.card_banner .card_gme .button_card a.buttoncard:hover {
  background: linear-gradient(135deg, #e8910d, #ff6b35);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 145, 13, .5);
}

.faq .accordion .accordion-item {
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(232, 145, 13, .1);
  border: 2px solid rgba(232, 145, 13, .2);
  border-radius: 12px;
}

.faq .accordion .accordion-item {
  box-shadow: 0 2px 12px rgba(232, 145, 13, .15);
}

.faq .accordion .accordion-item h2 button {
  background: linear-gradient(135deg, rgba(232, 145, 13, .1), rgba(255, 107, 53, .05));
  border: 0;
  border-bottom: 1px solid rgba(232, 145, 13, .1);
  padding: 1rem 1.5rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-yellowtwo);
}

.faq .accordion .accordion-item h2 button:focus {
  border-bottom: 1px solid rgba(232, 145, 13, .1);
  border: 0;
  box-shadow: none;
  outline: none;
}

.faq .accordion .accordion-item h2 button:hover {
  background: linear-gradient(135deg, rgba(232, 145, 13, .1), rgba(255, 107, 53, .05));
}

.faq .accordion .accordion-body {
  border-top: 1px solid rgba(232, 145, 13, .2);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
}

.faq .accordion .accordion-button::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--bs-accordion-btn-active-icon) no-repeat center, linear-gradient(135deg, #e8910d, #ff6b35);
  background-size: 18px 18px, cover;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s ease;
  margin-left: auto;
  font-weight: 600;
}

.footer {
  background-color: var(--color-bg);
  padding: 20px 0;
}

.footer .footercard h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-yellow);
  margin-bottom: 10px;
}

.footer .footercard ul {
  display: grid;
  gap: 10px 0px;
}

.footer .footercard ul li a {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
  opacity: .6;
  transition: all .5s;
}

.footer .footercard ul li a:hover {
  opacity: 1;
}

.footer .footer_copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 0;
  text-align: center;
}

.chatr_main {
  background: #deeefd;
  padding: 30px 0;
}

.chatr_main .card_charts {
  align-items: stretch;
  gap: 20px 0;
}

.chatr_main .card_charts .charts {
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  text-align: center;
  height: 100%;
}

.chatr_main .card_charts .charts .day p {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 4px;
}

.chatr_main .card_charts .charts .day h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 4px;
}

.chatr_main .card_charts .charts .card_row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-top: 1px solid var(--color-black);
}

.chatr_main .card_charts .charts .card_row .col-4 p {
  display: table-cell;
  margin-bottom: 0px;
  padding-bottom: 10px;
  font-size: clamp(11px, 5vw, 16px);
  font-weight: 600;
  text-align: center;
  width: 100%;
  /* height: 100%; */
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
}

.chatr_main .card_charts .charts .card_row .col-4 p.border_right {
  border-right: 1px solid var(--color-black);
}

.chatr_main .card_charts .charts .card_row .col-4 p.border_left {
  border-left: 1px solid var(--color-black);
}

.chatr_main .card_charts .charts .card_row .col-4 p.border_right {
  border-right: 1px solid var(--color-black);
}

.chatr_main .card_charts .charts .card_row .col-4 h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-black);
  margin-bottom: 0;
  height: 100%;
  padding-top: 10px;
}

@media(min-width: 768px) {
  .col-md-2s {
    -ms-flex: 0 0 14.28%;
    flex: 0 0 14.28%;
    max-width: 114.28%;
    margin-bottom: 0px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media(max-width: 767px) {
  .col-md-2s {
    width: 13.4%;
    flex: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .chatr_main .card_charts .charts .day h6 {
    font-size: 8px;
    font-weight: 700;
}

.chatr_main .card_charts .charts .card_row .col-4 h4 {
    font-size: 10px;
}

  .chatr_main .card_charts .charts .card_row .col-4 p {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 10px;
  }
  .chatr_main .card_charts .charts .day p {
    font-size: 10px;
}
  
}


@media(max-width:567px) {
  .card_banner .card_gme .w_100 .w_20 img {
    max-width: 50px;
    max-height: 50px;
  }

  .card_banner .card_gme .w_100 .w_80 h3 {
    margin-bottom: 6px;
  }
}