:root, [data-theme=default] {
  --font-family: "Inter", sans-serif;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-body: #000A1E;
  --color-body-dark: #000716;
  --color-body-light: #0B1427;
  --color-body-lighter: #1E2738;
  --color-body-light-btn: #293854;
  --color-body-light-hover: #3b4f73;
  --color-primary: #C92323;
  --color-primary-light: #ED5050;
  --color-secondary: #696D72;
  --color-red: #C92323;
  --color-yellow: #EBC43D;
  --color-orange: #FF9800;
  --color-green: #1D9637;
  --color-green-light: #2EB74C;
  --color-blue: #0E47D9;
  --color-facebook: rgb(36, 94, 170);
  --color-google: #DF2121;
  --color-behance: rgb(23, 103, 252);
  --color-dribble: rgb(238, 74, 137);
  --color-instagram: rgb(255, 171, 2);
  --color-placeholder: rgba(255, 255, 255, .45);
  --color-border: #1E2738;
}

.nav-btn {
  width: 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  right: 0;
  z-index: 0;
  padding: 0;
  border: none;
  margin-left: 10px;
}
@media only screen and (min-width: 992px) {
  .nav-btn {
    display: none;
  }
}
.nav-btn span {
  display: block;
  border-radius: 100px;
  height: 2px;
  background-color: var(--color-white);
  margin-bottom: 5px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.nav-btn span:last-child {
  margin-bottom: 0;
}
.nav-btn span:nth-child(2) {
  margin-right: 6px;
}
.nav-btn:hover span:nth-child(2) {
  margin-right: 0;
}
.nav-btn[aria-expanded=true] span {
  height: 3px;
}
.nav-btn[aria-expanded=true] span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.nav-btn[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.nav-btn[aria-expanded=true] span:last-child {
  transform: rotate(-45deg);
  bottom: 8px;
}

.header-ham {
  width: 23px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  right: 0;
  z-index: 0;
  padding: 0;
  border: none;
}
.header-ham span {
  display: block;
  border-radius: 100px;
  height: 3px;
  background-color: var(--color-white);
  margin-bottom: 3px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.header-ham span:last-child {
  margin-bottom: 0;
}
.header-ham[aria-expanded=true] span {
  height: 3px;
}
.header-ham[aria-expanded=true] span:nth-child(1) {
  transform: rotate(45deg);
  top: 6px;
}
.header-ham[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.header-ham[aria-expanded=true] span:last-child {
  transform: rotate(-45deg);
  bottom: 6px;
}

.header-dds {
  transition: none;
  border-radius: 15px;
  border: 1px solid var(--color-black);
  padding: 7px;
  min-width: 268px;
  width: 100%;
  max-width: 100%;
  margin-top: 30px !important;
  margin-right: -18px !important;
}
.header-dds::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-black);
  border-radius: 3px;
  transform: rotate(45deg);
  background: #fff;
  border-bottom: none;
  border-right: none;
  border-bottom-right-radius: 20px;
}
.header-dds li {
  margin-bottom: 5px;
}
.header-dds li.active a {
  background-color: var(--color-whiter);
}
.header-dds li.active a .icon {
  background-color: var(--color-white);
  transition: all 0.2s ease-in-out;
}
.header-dds li a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-black);
  padding: 5px 8px;
  border-radius: 8px;
}
.header-dds li a:hover {
  background-color: var(--color-whiter);
}
.header-dds li a:hover .icon {
  background-color: var(--color-white);
  transition: all 0.2s ease-in-out;
}
.header-dds li a .icon {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  background-color: var(--color-whiter);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}
.header-dds li a .text {
  width: 1%;
  flex: 1;
}
.header-dds li a .text .title {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.header-dds li a .text .desc {
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}
.header-dds li:last-child {
  margin-bottom: 0;
}

.container {
  position: relative;
  max-width: 1336px;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 1;
}

header.navbar {
  width: 100%;
  z-index: 999;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--color-body-light);
  border-radius: 10px;
  min-height: 50px;
  margin-bottom: 10px;
}
header.navbar .logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
header.navbar .logo img {
  max-width: 100%;
  height: auto;
}
header.navbar .header-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
header.navbar .header-right .btn.custom--btn {
  margin-right: 10px;
  border: none;
}
header.navbar .header-right .custom--btn.signin-btn {
  width: 65px;
  padding: 0;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  header.navbar .header-right .custom--btn.signin-btn {
    font-size: 13px;
    width: 60px;
  }
}
header.navbar .header-right .custom--btn.register-btn {
  width: 125px;
  text-align: center;
  margin-right: 0;
}
@media only screen and (max-width: 991px) {
  header.navbar .header-right .custom--btn.register-btn {
    width: 97px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 991px) {
  header.navbar .header-right .custom--btn.register-btn .icon {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  header.navbar .header-right .custom--btn.register-btn .text {
    width: 100%;
  }
}
header.navbar .header-nav-main {
  position: relative;
  margin-left: 25px;
  margin-right: 25px;
  flex: 1;
  width: 1%;
  min-height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  header.navbar .header-nav-main {
    margin: 0;
  }
}
header.navbar .header-nav-main .header-nav-main-inner {
  position: relative;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 991px) {
  header.navbar .header-nav-main .header-nav-main-inner {
    position: fixed;
    left: -270px;
    top: 0;
    bottom: 0;
    min-height: 100%;
    width: 270px;
    background-color: var(--color-body-light);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
}
header.navbar .header-nav-main .header-nav-main-inner.show {
  left: 0;
}
header.navbar .header-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 991px) {
  header.navbar .header-nav {
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 17px 10px;
  }
}
header.navbar .header-nav li {
  padding-right: 23px;
  float: left;
}
@media only screen and (max-width: 991px) {
  header.navbar .header-nav li {
    float: none;
    padding-right: 0;
  }
}
header.navbar .header-nav li a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  header.navbar .header-nav li a {
    padding: 12px;
  }
}
header.navbar .header-nav li a .icon {
  margin-right: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
header.navbar .header-nav li a .text {
  white-space: nowrap;
}
header.navbar .header-nav li a .arrow-icon {
  display: none;
}
header.navbar .header-nav li a .arrow-icon svg {
  transition: all 0.2s ease-in-out;
}
header.navbar .header-nav li a:hover {
  color: var(--color-white);
}
header.navbar .header-nav li a:hover::after {
  opacity: 1;
  visibility: visible;
}
header.navbar .header-nav li a::after {
  content: "";
  width: 45px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='45' height='7' viewBox='0 0 45 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.2426 0.757355L18 5H0V7H45V5H26.4853L22.2426 0.757355Z' fill='%23C92323'/%3E%3C/svg%3E%0A");
  background-size: 45px 7px;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 991px) {
  header.navbar .header-nav li a::after {
    display: none;
  }
}
header.navbar .header-nav li a[aria-expanded=true] .arrow-icon svg {
  transform: rotate(90deg);
}
header.navbar .header-nav li.active a {
  color: var(--color-white);
}
@media only screen and (max-width: 991px) {
  header.navbar .header-nav li.active a {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
  }
}
header.navbar .header-nav li.active a::after {
  opacity: 1;
  visibility: visible;
}
header.navbar .header-nav li.dropdown a .arrow-icon {
  margin-left: 7px;
  width: 19px;
  height: 19px;
  border-radius: 20px;
  background-color: var(--color-body-lighter);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  header.navbar .header-nav li.dropdown a .arrow-icon {
    margin-left: auto;
  }
}
header.navbar .header-nav li ul.dropdown-menu {
  margin-top: 13px;
  transition: none !important;
  width: 160px;
  border-radius: 8px;
  left: calc(50% - 10px);
  transform: translateX(-50%);
}
@media only screen and (max-width: 991px) {
  header.navbar .header-nav li ul.dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    margin-bottom: 10px;
    margin-top: 5px;
  }
}
header.navbar .header-nav li ul.dropdown-menu li {
  padding: 0;
  float: none;
}
header.navbar .header-nav li ul.dropdown-menu li a {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 7px 14px;
  line-height: 1.2;
}
header.navbar .header-nav li ul.dropdown-menu li a::after {
  display: none;
}
header.navbar .header-nav li ul.dropdown-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: var(--color-black);
}
header.navbar .receiver-more-btn {
  position: relative;
}
header.navbar .receiver-more-btn .nav-show-more-btn {
  background-color: var(--color-body-lighter);
  border-radius: 8px;
  width: 65px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  cursor: pointer;
}
header.navbar .receiver-more-btn ul.dropdown-menu {
  margin-top: 13px;
  transition: none !important;
  width: 160px;
  border-radius: 8px;
  left: 50%;
  transform: translateX(-50%);
}
header.navbar .receiver-more-btn ul.dropdown-menu::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 1px;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  background: var(--color-white);
}
header.navbar .receiver-more-btn ul.dropdown-menu li {
  padding: 0;
  float: none;
}
header.navbar .receiver-more-btn ul.dropdown-menu li a {
  padding: 7px 12px;
  line-height: 1.2;
  position: relative;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-secondary);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
header.navbar .receiver-more-btn ul.dropdown-menu li a .icon {
  margin-right: 7px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
header.navbar .receiver-more-btn ul.dropdown-menu li a .icon svg path {
  fill: var(--color-secondary);
}
header.navbar .receiver-more-btn ul.dropdown-menu li a .text {
  white-space: nowrap;
}
header.navbar .receiver-more-btn ul.dropdown-menu li a .arrow-icon {
  display: none;
}
header.navbar .receiver-more-btn ul.dropdown-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: var(--color-black);
}
header.navbar .receiver-more-btn ul.dropdown-menu li a:hover::after {
  display: none;
}
header.navbar .receiver-more-btn ul.dropdown-menu li a:hover svg path {
  fill: var(--color-black);
}
header.navbar .receiver-more-btn ul.dropdown-menu li a::after {
  display: none;
}
header.navbar .header-favorite-sec {
  position: relative;
}
header.navbar .header-favorite-sec .header-favorite-btn {
  border-radius: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--color-body-lighter);
  cursor: pointer;
}

.hero-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
@media only screen and (max-width: 969px) {
  .hero-section {
    flex-direction: column;
  }
}
.hero-section .hero-left {
  width: 525px;
  margin-bottom: 10px;
  min-height: calc(100% - 10px);
  border-radius: 10px;
  padding: 18px 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-right: 10px;
  background: linear-gradient(135deg, rgb(249, 55, 67) 0%, rgb(211, 19, 19) 100%);
}
@media only screen and (max-width: 1366px) {
  .hero-section .hero-left {
    width: 465px;
    padding: 18px 33px 34px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-left {
    width: 400px;
    padding: 13px 25px 25px;
  }
}
@media only screen and (max-width: 969px) {
  .hero-section .hero-left {
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-right: 0;
    padding: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-left {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-left {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.hero-section .hero-left .crypto-title {
  font-size: 51px;
  line-height: 69px;
  font-weight: 900;
  font-style: italic;
  color: var(--color-white);
  margin-bottom: 17px;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-left .crypto-title {
    font-size: 41px;
    line-height: 57px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 969px) {
  .hero-section .hero-left .crypto-title {
    margin-bottom: 0;
    font-size: 31px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-left .crypto-title {
    white-space: nowrap;
  }
}
@media only screen and (max-width: 639px) {
  .hero-section .hero-left .crypto-title {
    font-size: 25px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-left .crypto-title br {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-left .crypto-title {
    text-align: center;
    margin-bottom: 10px;
  }
}
.hero-section .hero-left .crypto-logos {
  padding: 13px 19px;
  background-color: #801515;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-left .crypto-logos {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 969px) {
  .hero-section .hero-left .crypto-logos {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-left .crypto-logos {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    clear: both;
    padding: 8px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-left .crypto-logos {
    order: initial;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.hero-section .hero-left .crypto-logos .crypto-logo {
  text-align: center;
  display: flex;
}
.hero-section .hero-left .crypto-logos .crypto-logo img, .hero-section .hero-left .crypto-logos .crypto-logo svg {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-left .crypto-logos .crypto-logo img, .hero-section .hero-left .crypto-logos .crypto-logo svg {
    max-height: 25px;
  }
}
.hero-section .hero-left .hero-buy-btn {
  border-radius: 10px;
  background-color: var(--color-white);
  line-height: 50px;
  padding: 0 22px;
  font-size: 21px;
  font-weight: 900;
  color: var(--color-black);
  margin-right: auto;
}
@media only screen and (max-width: 969px) {
  .hero-section .hero-left .hero-buy-btn {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-left .hero-buy-btn {
    line-height: 45px;
    padding: 0 16px;
    font-size: 20px;
  }
}
.hero-section .hero-left .hero-buy-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.hero-section .hero-right {
  flex: 1;
  width: 1%;
  min-height: calc(100% - 10px);
  margin-bottom: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 969px) {
  .hero-section .hero-right {
    order: 1;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-right {
    padding: 0;
  }
}
.hero-section .hero-right .hero-image {
  background: url(../images/hero-image.png) left center no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
}
@media only screen and (max-width: 1366px) {
  .hero-section .hero-right .hero-image {
    inset: -80px;
    left: -230px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-right .hero-image {
    inset: 0;
    left: -230px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-right .hero-image {
    inset: -133px;
    left: -480px;
  }
}
@media only screen and (max-width: 969px) {
  .hero-section .hero-right .hero-image {
    inset: 0;
    left: -230px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-right .hero-image {
    inset: -120px;
    left: -250px;
  }
}
.hero-section .hero-right .hero-right-inner {
  margin-right: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1366px) {
  .hero-section .hero-right .hero-right-inner {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-right .hero-right-inner {
    margin-right: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-right .hero-right-inner {
    margin-right: 0;
    padding: 15px;
    width: inherit;
    background-color: rgba(0, 10, 30, 0.8);
    border-radius: 10px;
    border: 1px solid var(--color-body-light);
  }
}
.hero-section .hero-right .hero-right-inner .hero-right-title {
  font-size: 51px;
  font-weight: 900;
  font-style: italic;
  color: var(--color-white);
  margin-bottom: 3px;
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-right .hero-right-inner .hero-right-title {
    font-size: 40px;
  }
}
.hero-section .hero-right .hero-right-inner .hero-right-desc {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-right .hero-right-inner .hero-right-desc {
    font-size: 16px;
    margin-bottom: 19px;
  }
}
.hero-section .hero-right .hero-right-inner .hero-right-gift-btn {
  position: relative;
  border-radius: 10px;
  background-color: var(--color-primary);
  font-size: 19px;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  padding: 0 34px 0 48px;
  line-height: 45px;
  margin-bottom: 24px;
  margin-left: 22px;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-right .hero-right-inner .hero-right-gift-btn {
    font-size: 16px;
    padding: 0 24px 0 37px;
    line-height: 42px;
    margin-bottom: 18px;
  }
}
.hero-section .hero-right .hero-right-inner .hero-right-gift-btn::after {
  content: "";
  width: 73px;
  height: 71px;
  background: url(../images/icon-gift.png) center center no-repeat;
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
}
.hero-section .hero-right .hero-right-inner .hero-right-gift-btn:hover {
  background-color: var(--color-primary-light);
}
.hero-section .hero-right .hero-right-inner .hero-right-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.hero-section .hero-right .hero-right-inner .hero-right-btns a {
  min-width: 45px;
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  margin-left: 5px;
  background-color: var(--color-body-light-btn);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  padding: 0 14px;
}
.hero-section .hero-right .hero-right-inner .hero-right-btns a .icon {
  margin-right: 7px;
}
.hero-section .hero-right .hero-right-inner .hero-right-btns a:hover {
  background-color: var(--color-body-light-hover);
}

.main-search {
  position: relative;
  margin-bottom: 30px;
}
.main-search .main-search-input {
  position: relative;
}
.main-search .main-search-input input {
  border: 1px solid var(--color-border);
  background-color: var(--color-body-light);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 3.3684e-08C7.56238 0.000155699 6.14571 0.344701 4.86859 1.00479C3.59146 1.66489 2.49105 2.62132 1.65947 3.79402C0.827885 4.96672 0.28933 6.32158 0.0888866 7.74516C-0.111557 9.16874 0.0319443 10.6196 0.507377 11.9764C0.982809 13.3331 1.77634 14.5562 2.82154 15.5433C3.86673 16.5304 5.13318 17.2527 6.51487 17.6498C7.89656 18.0469 9.35328 18.1073 10.7631 17.8258C12.1729 17.5443 13.4947 16.9292 14.618 16.032L18.293 19.707C18.4816 19.8892 18.7342 19.99 18.9964 19.9877C19.2586 19.9854 19.5094 19.8802 19.6948 19.6948C19.8802 19.5094 19.9854 19.2586 19.9877 18.9964C19.99 18.7342 19.8892 18.4816 19.707 18.293L16.032 14.618C17.09 13.2939 17.7526 11.6979 17.9435 10.0138C18.1344 8.32966 17.8459 6.62586 17.1112 5.0985C16.3764 3.57113 15.2253 2.28228 13.7904 1.38029C12.3554 0.478308 10.6949 -0.000146577 9 3.3684e-08ZM3 9C3 8.21207 3.1552 7.43185 3.45673 6.7039C3.75825 5.97595 4.20021 5.31451 4.75736 4.75736C5.31451 4.20021 5.97595 3.75825 6.7039 3.45672C7.43186 3.15519 8.21207 3 9 3C9.78794 3 10.5682 3.15519 11.2961 3.45672C12.0241 3.75825 12.6855 4.20021 13.2426 4.75736C13.7998 5.31451 14.2418 5.97595 14.5433 6.7039C14.8448 7.43185 15 8.21207 15 9C15 10.5913 14.3679 12.1174 13.2426 13.2426C12.1174 14.3679 10.5913 15 9 15C7.4087 15 5.88258 14.3679 4.75736 13.2426C3.63214 12.1174 3 10.5913 3 9Z' fill='%231E2738'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: left 13px center;
  border-radius: 10px;
  padding: 10px;
  padding-left: 46px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  width: 100%;
}
.main-search .main-search-input input:focus {
  border-color: var(--color-body-light-hover);
}
.main-search .main-search-dd {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 10px;
  border-radius: 10px;
  padding: 10px;
  background-color: var(--color-body-light);
  display: none;
}
.main-search .main-search-dd.show {
  display: initial;
}
.main-search .main-search-dd .temps-search-sec {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.main-search .main-search-dd .temps-search-sec .temps-search-top {
  padding: 11px 0 58px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  opacity: 0.5;
  text-align: center;
}
.main-search .main-search-dd .temps-search-sec .temps-searched-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  opacity: 0.5;
  margin-bottom: 13px;
}
.main-search .main-search-dd .temps-search-sec .temps-searches {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.main-search .main-search-dd .temps-search-sec .temps-searches .temps-searches-inner {
  margin-right: 10px;
  height: 24px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--color-body-lighter);
}
.main-search .main-search-dd .temps-search-sec .temps-searches .temps-searches-inner .temps-searches-inner-txt {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
  opacity: 0.5;
  padding: 0 0 1px 9px;
  line-height: 1;
}
.main-search .main-search-dd .temps-search-sec .temps-searches .temps-searches-inner .temps-searches-inner-btn {
  width: 25px;
  height: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}
.main-search .main-search-dd .temps-search-sec .temps-searches .temps-searches-inner .temps-searches-inner-btn:hover {
  opacity: 0.8;
}

.products-tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.products-tabs a {
  border-radius: 10px;
  background-color: var(--color-body-light);
  margin-right: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  height: 44px;
  padding: 0 12px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .products-tabs a {
    border-radius: 8px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    height: 35px;
    padding: 0 10px;
  }
}
.products-tabs a .icon {
  margin-right: 10px;
  display: flex;
}
.products-tabs a .green-circle {
  width: 7px;
  height: 7px;
  border-radius: 10px;
  background-color: var(--color-green);
  margin-left: 10px;
}
.products-tabs a:last-child {
  margin-right: 0;
}
.products-tabs a.active {
  background-color: var(--color-primary);
}

.products-section {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  margin-bottom: 20px;
}
@media only screen and (max-width: 575px) {
  .products-section {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.products-section > * {
  background-color: var(--color-body-light);
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.products-section > * .label-playing {
  background-color: var(--color-body-lighter);
  border-radius: 5px;
  height: 21px;
  padding: 0 5px 0 6px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 2;
}
.products-section > * .label-playing span {
  opacity: 0.7;
}
.products-section > * .label-playing .green-circle {
  width: 7px;
  height: 7px;
  border-radius: 10px;
  background-color: var(--color-green);
  margin-right: 3px;
}
.products-section > * img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-section > * .title-bg {
  background: linear-gradient(to bottom, rgba(201, 35, 35, 0) 0%, rgb(201, 35, 35) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 13px 10px 10px;
}
.products-section > * .title-bg .title {
  font-size: 31px;
  font-weight: 900;
  color: var(--color-white);
  text-align: center;
  line-height: 28px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 9px;
  text-transform: uppercase;
}
.products-section > * .title-bg .desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 0;
}

.pagination-sec {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pagination-sec a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 767px) {
  .pagination-sec a {
    font-size: 13px;
    min-width: 34px;
    height: 34px;
  }
}
.pagination-sec a.disabled {
  opacity: 1;
  pointer-events: none;
}
.pagination-sec a.active {
  background-color: var(--color-body-light);
}

.table.custom-table > :not(caption) > * > * {
  padding: 14px 17px;
  color: var(--color-white);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  border: none;
}

.table.custom-table.table-striped > tbody > tr:nth-of-type(2n+1) > * {
  --bs-table-color-type: var(--color-white);
  --bs-table-bg-type: var(--color-body-light);
}

.table.custom-table.table-striped > tbody > tr:nth-of-type(2n+1) > *:first-child {
  border-radius: 10px 0 0 10px;
}

.table.custom-table.table-striped > tbody > tr:nth-of-type(2n+1) > *:last-child {
  border-radius: 0 10px 10px 0;
}

.table-txt-wd-icon-start, .table-txt-wd-icon-center, .table-txt-wd-icon-end {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}
.table-txt-wd-icon-start.fw-400, .table-txt-wd-icon-center.fw-400, .table-txt-wd-icon-end.fw-400 {
  font-weight: 400;
}

.table-txt-wd-icon-start {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.table-txt-wd-icon-start .icon {
  display: flex;
  margin-right: 9px;
}

.table-txt-wd-icon-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.table-txt-wd-icon-center .icon {
  display: flex;
  margin-right: 7px;
}

.table-txt-wd-icon-end {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.table-txt-wd-icon-end .icon {
  display: flex;
  margin-left: 9px;
}

.footer-top-details {
  background-color: var(--color-body-light);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 20px;
}
.footer-top-details .footer-top-details-title-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.footer-top-details .footer-top-details-title-main .footer-top-details-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0;
}
.footer-top-details .footer-top-details-title-main .footer-top-details-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
  background-color: var(--color-white);
  border-radius: 5px;
  line-height: 32px;
  padding: 0 12px;
  white-space: nowrap;
}
.footer-top-details .footer-top-details-title-main .footer-top-details-btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.footer-top-details .footer-top-details-desc-main p {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .footer-top-details .footer-top-details-desc-main p {
    font-size: 14px;
  }
}
.footer-top-details .footer-top-details-desc-main ul li {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  padding: 4px 0;
}
@media only screen and (max-width: 767px) {
  .footer-top-details .footer-top-details-desc-main ul li {
    font-size: 14px;
  }
}

footer {
  background-color: var(--color-body-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 20px;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  footer .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 18px;
  }
}
footer .footer-logos-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 17px 0 36px;
  border-bottom: 1px solid var(--color-body-lighter);
  margin-bottom: 28px;
}
footer .footer-logos-main img, footer .footer-logos-main svg {
  width: auto;
  height: 40px;
  margin: 0 auto;
}
footer .footer-logo {
  display: flex;
  margin-bottom: 16px;
}
footer .footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 8px;
}
footer .footer-copyright a {
  color: var(--color-white);
  opacity: 0.5;
}
footer .footer-copyright a:hover {
  opacity: 1;
}
footer .footer-copyright span {
  opacity: 0.5;
}
footer .footer-btcequalto {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 17px;
}
footer .footer-btcequalto span {
  opacity: 0.5;
}
footer .footer-support-text {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
footer .footer-support-text li {
  padding: 3px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
}
footer .footer-support-text li span {
  opacity: 0.5;
}
footer .footer-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 17px;
}
@media only screen and (max-width: 767px) {
  footer .footer-title {
    text-align: center;
  }
}
footer .footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  footer .footer-nav {
    margin-bottom: 20px;
  }
}
footer .footer-nav li {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.5;
  padding: 3px 0;
}
@media only screen and (max-width: 767px) {
  footer .footer-nav li {
    text-align: center;
  }
}
footer .footer-nav li:hover {
  opacity: 1;
}

.custom--btn {
  text-align: center;
  background: var(--color-primary);
  color: var(--color-white);
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  border: 1px solid transparent;
}
.custom--btn.wd-icon {
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.custom--btn.wd-icon .icon {
  margin-right: 7px;
}
.custom--btn.btn__dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.custom--btn.btn__dark svg path {
  fill: var(--color-white);
}
.custom--btn.btn__dark:hover, .custom--btn.btn__dark:focus, .custom--btn.btn__dark:active {
  background: var(--color-body);
  color: var(--color-white);
}
.custom--btn.btn__light {
  background: var(--color-white);
  color: var(--color-body);
}
.custom--btn.btn__light svg path {
  fill: var(--color-body);
}
.custom--btn.btn__light:hover, .custom--btn.btn__light:focus, .custom--btn.btn__light:active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(173, 173, 173, 0.3);
  color: var(--color-white);
}
.custom--btn.btn__green {
  background: var(--color-green);
  color: var(--color-white);
}
.custom--btn.btn__green svg path {
  fill: var(--color-white);
}
.custom--btn.btn__green:hover, .custom--btn.btn__green:focus, .custom--btn.btn__green:active {
  background: var(--color-green-light);
  border-color: none;
  color: var(--color-white);
}
.custom--btn:hover, .custom--btn:focus, .custom--btn:active, .custom--btn.disabled, .custom--btn:disabled {
  background: var(--color-primary-light);
  color: var(--color-white);
}
.custom--btn:hover svg path, .custom--btn:focus svg path, .custom--btn:active svg path, .custom--btn.disabled svg path, .custom--btn:disabled svg path {
  fill: var(--color-white);
}
.custom--btn.btn__bordered {
  border: 2px solid var(--color-primary);
  background: none;
  color: var(--color-primary);
}
.custom--btn.btn__bordered:hover, .custom--btn.btn__bordered:focus, .custom--btn.btn__bordered:active {
  background: var(--color-primary);
  color: var(--color-white);
}
.custom--btn.btn__bordered:hover svg path, .custom--btn.btn__bordered:focus svg path, .custom--btn.btn__bordered:active svg path {
  fill: var(--color-white);
}
.custom--btn.btn__bordered svg {
  margin-right: 6px;
}
.custom--btn.btn__bordered.btn__dark {
  background-color: transparent;
  border-color: var(--color-black);
  color: var(--color-black);
}
.custom--btn.btn__bordered.btn__dark:hover, .custom--btn.btn__bordered.btn__dark:focus, .custom--btn.btn__bordered.btn__dark:active {
  opacity: 1;
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.custom--btn.dark-hover:hover, .custom--btn.dark-hover:focus, .custom--btn.dark-hover:active {
  background: var(--color-secondary);
  color: var(--color-white);
}
.custom--btn.dark-hover:hover svg path, .custom--btn.dark-hover:focus svg path, .custom--btn.dark-hover:active svg path {
  fill: var(--color-white);
}

.button__sm {
  font-weight: 600;
  padding: 0 12px;
  line-height: 30px;
  font-size: 14px;
  border-radius: 8px;
}

.button__md {
  padding: 0 21px;
  line-height: 40px;
  font-size: 17px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .button__md {
    padding: 0 17px;
    line-height: 35px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .button__md {
    padding: 0 12px;
    line-height: 33px;
    font-size: 14px;
  }
}

.button__lg {
  padding: 0 31px;
  line-height: 50px;
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .button__lg {
    padding: 0 20px;
    line-height: 40px;
    font-size: 16px;
  }
}

.button__xl {
  font-size: 27px;
  font-weight: 700;
  padding: 0 41px;
  line-height: 75px;
}
@media only screen and (max-width: 991px) {
  .button__xl {
    font-size: 18px;
    padding: 0 30px;
    line-height: 45px;
  }
}

.btn-block {
  width: 100%;
}

*, body {
  font-family: var(--font-family);
}

html, body {
  padding: 0;
  margin: 0;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  background: var(--color-body);
  font-size: 17px;
  font-weight: 400;
  padding: 10px;
}

body, p, form, input, h1, h2, h3, h4, h5, h6, p, form, ul, li, ol, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  font-family: var(--font-family);
  color: var(--color-black);
  transition: all 0.2s ease-in-out;
}

a {
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family);
  transition: all 0.2s ease-in-out;
}
a:hover, a:focus, a:active {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}

button, a, input, textarea {
  outline: 0 !important;
}

.form-control, .btn.focus, .btn:focus, .custom-select:focus, .form-control:focus, .form-select:focus {
  box-shadow: none;
}

label {
  color: var(--color-black);
  font-size: 16px;
  margin-bottom: 11px;
}

.form-select {
  background-size: 35px 17px;
}

.form-check {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
}
.form-check .form-check-input {
  width: 18px;
  height: 18px;
  background-color: var(--color-white);
  border-color: none;
  margin: 0 10px 0 0;
}
.form-check .form-check-input[type=checkbox] {
  border-radius: 4px;
}
.form-check .form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check .form-check-input:active {
  filter: brightness(90%);
}
.form-check .form-check-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
.form-check .form-check-input:checked {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}
.form-check .form-check-input:checked[type=checkbox] {
  background-size: 12px 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg id='Group_440' data-name='Group 440' transform='translate(-322 -367)'%3E%3Cg id='check' transform='translate(313.727 358.859)'%3E%3Cpath id='Path_662' data-name='Path 662' d='M17.762,10.956A.934.934,0,1,1,19.1,12.264l-4.972,6.215a.934.934,0,0,1-1.345.025l-3.295-3.3a.934.934,0,1,1,1.32-1.32l2.608,2.607,4.325-5.511a.294.294,0,0,1,.025-.027Z' transform='translate(0 0)' fill='%23fff' stroke='%23fff' stroke-width='1' fill-rule='evenodd'/%3E%3C/g%3E%3Crect id='Rectangle_77' data-name='Rectangle 77' width='12' height='12' transform='translate(322 367)' fill='none'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.form-check .form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check .form-check-input[type=checkbox]:indeterminate {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check label {
  margin-bottom: 0;
}
.form-check.form-switch {
  padding-left: 2.5em;
}
.form-check.form-switch .form-check-input {
  width: 40px;
  margin-left: -40px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 40px;
  transition: background-position 0.15s ease-in-out;
}
.form-check.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check.form-switch .form-check-input:checked[type=checkbox] {
  background-size: 18px 18px;
}

.form-check-input:focus ~ .form-check-label:before, .form-check-input:checked, .form-check-input:focus {
  box-shadow: none;
}

.form-group {
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .form-group {
    margin-bottom: 12px;
  }
}

.custom-input {
  height: 50px;
  font-weight: 500;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 14px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-white);
  background-color: var(--color-body-light);
  box-shadow: none;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .custom-input {
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }
}
.custom-input.placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.custom-input:-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.custom-input::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.custom-input:-ms-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.custom-input::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.custom-input:focus, .custom-input:active {
  box-shadow: none;
  background-color: var(--color-body-light);
  border-color: var(--color-white);
  color: var(--color-white);
}
.custom-input.form-select:focus {
  color: var(--color-white);
}

.custom-textarea {
  font-weight: 500;
  padding: 15px 20px;
  font-size: 14px;
  border: 1px solid var(--color-border);
  border-radius: 25px;
  color: var(--color-white);
  background-color: var(--color-body-light);
  resize: none;
  box-shadow: none;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .custom-textarea {
    padding: 9px 12px;
    font-size: 14px;
    border-radius: 15px;
  }
}
.custom-textarea.placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.custom-textarea:-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.custom-textarea::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.custom-textarea:-ms-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.custom-textarea::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.custom-textarea:focus, .custom-textarea:active {
  box-shadow: none;
  background-color: var(--color-body-light);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: none;
}

.position-relative {
  position: relative;
}

.img-responsivee {
  max-width: 100%;
  height: auto;
}

svg path {
  transition: all 0.2s ease-in-out;
}

hr {
  background-color: var(--color-black);
  height: 1px;
  border: none;
  margin: 30px 0;
  opacity: 1;
}
@media only screen and (max-width: 991px) {
  hr {
    margin: 20px 0;
  }
}
hr.small-marg {
  margin: 15px 0;
}
@media only screen and (max-width: 991px) {
  hr.small-marg {
    margin: 10px 0;
  }
}
hr.smaller-marg {
  margin: 10px 0;
}

.paragraph {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .paragraph {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 18px;
  }
}

.nav-overflow {
  overflow: hidden;
}

.input-alerts {
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 400;
  padding: 6px 12px;
  margin-top: 5px;
  border-radius: 8px;
  border: none;
}
.input-alerts.alert-danger {
  background-color: var(--color-red);
  color: var(--color-white);
}/*# sourceMappingURL=style.css.map */