@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Jost:ital,wght@0,400;0,700;1,400;1,700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  box-sizing: border-box;
  position: relative;
  color: var(--text-dark);
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

p {
  line-height: 1.5;
  font-family: "Jost", sans-serif;
}

strong {
  color: var(--text-secondary);
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

:root {
  --bg-dark: #2C2D32;
  --bg-white: #fff;
  --bg-pink: #FEB7EB;
  --bg-primary: #CB67FF;
  --bg-lightblue: #e6f6fa;
  --bg-secondary: #1DCDFE;
  --bg-lightgray: #F7FCFE;
  --text-dark: #2C2D32;
  --text-pink: #FEB7EB;
  --text-primary: #CB67FF;
  --text-secondary: #1DCDFE;
  --text-white: #fff;
  --input-bg: #fff;
  --input-border: #ccc;
  --animate-duration: 1000ms;
  --animate-delay: 0.9s;
}

.mt-7 {
  margin-top: 7.0rem!important;
}

.mb-7 {
  margin-bottom: 7.0rem!important;
}

.w-110 {
  width: 110% !important;
}

.bg-light {
  background-color: #F8F8F8 !important;
}

.bg-dark {
  background-color: var(--bg-dark) !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* scrollbar*/
.custom-scrollbar::-webkit-scrollbar {
  -webkit-appearance: none;
}

.custom-scrollbar::-webkit-scrollbar:vertical {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar:horizontal {
  height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}

.ThemeBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
  gap: 7px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #1DCDFE, #CB67FF);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 1px 1000px 1px var(--bg-dark) inset;
  overflow: hidden;
}

.ThemeBtn:before,
.ThemeBtn:after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.ThemeBtn:before {
  transform: translate3d(-100%, 0, 0);
  background: linear-gradient(to bottom right, #CB67FF, #1DCDFE);
  transition: transform 300ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.ThemeBtn:after {
  background: linear-gradient(to bottom right, #1DCDFE, #CB67FF);
  transform: translate3d(100%, 0, 0);
  transition: transform 300ms 300ms cubic-bezier(0.16, 0.73, 0.58, 0.62);
}

.ThemeBtn:hover:before {
  transform: translate3d(0, 0, 0);
}

.ThemeBtn:hover:after {
  transform: translate3d(0, 0, 0);
}

.ThemeBtn span {
  font-family: "Roboto", sans-serif;
  position: relative;
  z-index: 100;
  color: #fff;
}

@-webkit-keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(5, 166, 202, 0.7);
  }

  100% {
    box-shadow: 0 0 0 15px rgba(5, 166, 202, 0);
  }
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(5, 166, 202, 0.7);
  }

  100% {
    box-shadow: 0 0 0 15px rgba(5, 166, 202, 0);
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 85px;
  padding: 10px 0;
  z-index: 999;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.sticky-header {
  background: var(--bg-dark);
  min-height: 65px;
}

header .navbar {
  width: 100%;
  padding: 0;
}

.header-container {
  display: flex;
  gap: 50px;
  width: 100%;
  justify-content: space-between
}

header .navbar-brand {
  margin: 0;
  padding: 0;
}

header .navbar-brand img {
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

header .navigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
}


header .navigation .icon-menu ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1024px) {
  header .navbar .header-container .navigation .icon-menu ul {
    gap: 20px;
  }
}


.HighLightText {
  color: var(--bg-primary);
}

.ZIndex {
  z-index: 1;
}

.form-control {
  min-height: 40px;
  padding: 5px 20px;
  border-radius: 30px;
  border-color: var(--input-border);
  background: var(--input-bg);
  color: #222;
  transition: all 0.3s ease-in-out;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--bg-primary);
  background: var(--input-bg);
  -webkit-animation: pulse-animation 2s infinite;
  animation: pulse-animation 2s infinite;
}

.form-control::-moz-placeholder {
  opacity: 0.6;
}

.form-control:-ms-input-placeholder {
  opacity: 0.6;
}

.form-control::placeholder {
  opacity: 0.6;
}


textarea.form-control {
  border-radius: 10px;
}

.title-divider {
  margin: 0 auto;
}

.title-divider span {
  width: 70px;
  background: linear-gradient(130deg, var(--bg-primary), transparent);
  border-radius: 0;
  display: block;
  height: 4px;
}

.custom-space {
  padding: 80px 0;
}

@media (max-width: 991.98px) {
  .custom-space {
    padding: 30px 0;
  }

  .custom-space-50 {
    padding: 20px 0;
  }
}

.custom-space-50 {
  padding: 50px 0;
}

footer {
  padding: 60px 0px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

footer .container,
footer .container-fluid {
  position: relative;
  z-index: 1;
}

footer .Footer-AboutBrands {
  padding-right: 50px;
}

footer .Footer-AboutBrands .navbar-brand {
  display: flex;
  margin: 0 0 15px;
}

footer .Footer-AboutBrands .navbar-brand img {
  width: 200px;
}

footer p {
  color: var(--text-white);
  font-weight: 300;
  letter-spacing: 0.5px;
}

footer .Footer-Col p:last-child {
  margin-bottom: 0;
}

footer .Footer-Col h5 {
  font-size: 16px;
  color: var(--text-white);
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: 1px;
}

footer .Footer-Col ul li {
  margin-bottom: 10px;
}

footer .Footer-Col ul li:last-child {
  margin-bottom: 0;
}

footer .Footer-Col ul li a {
  color: var(--text-white);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
  font-weight: 300;
}

footer .Footer-Col ul li a:after {
  content: "east";
  font-size: 14px;
  font-family: "Material Icons";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

footer .Footer-Col ul li a:hover {
  color: var(--text-primary);
}

footer .Footer-Col ul li a:hover:after {
  right: 0;
  opacity: 1;
}

footer .SubFooter {
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
  border-top: 1px solid #3e3d3a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .SubFooter p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-white);
  margin: 0;
  letter-spacing: 1px;
}

footer .social-icons a {
  background: #2e2d2b;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-white) !important;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}

.social-icons a img {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
  background: var(--bg-primary) !important;
}

.social-icons a:hover img {
  filter: brightness(10);
}

.CustomWith {
  max-width: inherit !important;
  min-width: auto !important;
}

.CustomWith .form-control::placeholder {
  font-size: 14px;
}

section.SubFoot {
  background: #2A2B30;
  text-align: center;
  color: #fff;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-backdrop {
  backdrop-filter: blur(5px);
  background-color: rgb(44 45 50 / 50%);
  opacity: 1 !important;
}

.error {
  color: red;
}

.InnerLogos img {
  width: 100%;
  padding: 25px;
}

.h50 {
  height: 50px;
}

.PlayBtn:hover {
  -webkit-animation: pulse-animation 2s infinite;
  animation: pulse-animation 2s infinite;
}