:root {
  --primary-color: #000000;
  --white-color: #FFFFFF;
  /* --gray-color: ; */
  /* --dark-blue:#0E1F42; */
  --blue-color:#1463A4;
  --light-color:#F2F6FF;
  --text-gray:#666666;
  --bg-gray: #F2F2F2;


  /* Font Size */
  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-26: 26px;
  --font-size-28: 28px;
  --font-size-32: 32px;
  --font-size-36: 36px;
  --font-size-42: 42px;
  --font-size-48: 48px;
  --font-size-50: 50px;

  /* Font Weight */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font family */
  --font-family-primary: 'Inter', serif;

  scroll-behavior: auto !important;

  --disp-arrow : 'none';
}


body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: var(--font-family-primary) !important;
  font-size: var(--font-size-medium);
  line-height: 1.47059;
  letter-spacing: 0px;
  color: var(--primary-color);
  -webkit-font-smoothing: subpixel-antialiased;
  overflow-x: hidden;
}

.capital{
  text-transform: uppercase;
}

p {
  line-height: 1.47059;
}

/* section heading   */
h1,
.h1,
h1 .h1 {
  /*font-weight: var(--font-weight-semibold) !important;*/
  font-size: 50px !important;
  line-height: 55px !important;
  color: var(--primary-color);
  font-family: var(--font-family-primary);
}

/* banner heading   */
h2,
.h2,
h2 .h2 {
  color: var(--primary-color);
  font-size: 42px !important;
  line-height: 50px !important;
  font-weight: var(--font-weight-semibold) !important;
  font-family: var(--font-family-primary);
}

/* for paragraph heading  */
h3,
.h3,
h3 .h3 {
  font-weight: var(--font-weight-semibold) !important;
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-size: 32px !important;
  line-height: 45px !important;
}

h4,
.h4,
h4 .h4 {
  font-weight: var(--font-weight-semibold) !important;
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-size: 24px !important;
  line-height: 30px;
  margin-bottom: 0px;
}

h5,
.h5,
h5 .h5 {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-size: 18px !important;
  line-height: 24px !important;
}

.font-grpahic {
  font-family: var(--font-family-secondary) !important;
}

.font-poppins {
  font-family: var(--font-family-primary);
}

.font-weight-semibold {
  font-weight: var(--font-weight-semibold) !important;
}

.green-color {
  color: var(--green-color) !important;
}

.bg-orange-color {
  background-color: var(--orange-color);
}

.bg-gray-color {
  background-color: var(--bg-color);
}

.orange-color {
  color: var(--orange-color);
}

.gray-color {
  background-color: var(--bg-color);
}

.white-color {
  background-color: var(--white-color);
}

.purple-color {
  color: var(--purple-color);
}

.red-color {
  color: var(--red-color);
}

a {
  text-decoration: none !important;
}

p {
  margin-top: 0px;
  margin-bottom: 8px;
}

ul {
  padding-left: 0px !important;
  list-style-type: none;
}

.font-size-18 {
  font-size: var(--font-size-18);
  line-height: calc(var(--font-size-18) + 10px);
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-40 {
  padding-bottom: 40px;
}

.btn {
  font-family: var(--font-family-primary) !important;
  font-size: var(--font-size-16) !important;
  line-height: calc(var(--font-size-18) + 4px) !important;
  font-weight: var(--font-weight-medium) !important;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.1px;
}

.btn:focus-visible,
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.border-left {
  border-left: 2px solid var(--gray-color);
}

.form-control:focus,
.form-control:focus-visible,
.form-control:active {
  outline: none !important;
  box-shadow: none !important;
}

.img-350 {
  width: 100%;
  max-width: 350px;
}


.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--orange-color);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: var(--green-color);
}

input:focus+.slider {
  box-shadow: 0 0 1px var(--green-color);
}

input:checked+.slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
  height: 28px;
}

.slider.round:before {
  border-radius: 50%;
}

@media (max-width: 768px) {

  #accountform-section {
    max-width: auto;
  }

  form#mobile-number .form-group #mobile-number {
    max-width: 100% !important;
  }

  form#mobile-number .form-group .btn.btn-submit-mobile {
    padding: 15px 30px !important;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  h1,
  .h1,
  h1 .h1 {
    font-size: 35px !important;
    line-height: 45px !important;
  }

  h2,
  .h2,
  h2 .h2 {
    font-size: 30px !important;
    line-height: 38px !important;
  }

  h3,
  .h3,
  h3 .h3 {
    font-size: 25px !important;
    line-height: 35px !important;
  }

  h4,
  .h4,
  h4 .h4 {
      font-size: 24px !important;
  }
  h5,
  .h5,
  h5 .h5 {
      font-size: 18px !important;
 }
  .img-350 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
}

.width-90 {
  max-width: 900px !important;
}

.image-container {
  width: 100%;
}

.image-container>div {
  position: unset !important;
}

.image-container .image {
  object-fit: contain;
  width: 100% !important;
  position: relative !important;
  height: unset !important;
}

#web-platform .image.icon-hover {
  min-width: 70px;
}

#about-stock-app .image.icon-hover {
  min-width: 60px;
}