:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #969696;
  --gray-dark: #434343;
  --gray-light: #EBEBEB;
  --primary: #1a91f8;
  --secondary: #6c757d;
  --success: #2AD264;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-family-heebo: 'Heebo', sans-serif;
  --font-16:16px;
  --font-20:20px;
  --font-weight-600: 600;
  --font-weight-300: 300;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;  
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: var(--font-family-heebo)!important;;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-dark);
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}
a {
  color: var(--primary);
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}
figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
progress {
  vertical-align: baseline;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
[hidden] {
  display: none !important;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  background: #fff;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn {
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: solid 1px var(--primary);
    transition: all 0.2s;
  position: relative;
  display: inline-block;
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn-border-none:hover, .btn-border:hover{color: #1a91f8;opacity: 0.8;}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}


.btn-primary {
    color: #fff;
    background-color: #2f78bd;
    border-color: #2f78bd;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.primary-text{color: var(--primary);}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}


.text-center{
  text-align: center;
}

/*new css*/

::placeholder {
  color: #C4C4C4;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #C4C4C4;
}

::-ms-input-placeholder { /* Microsoft Edge */
 color: #C4C4C4;
}





.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-aut{
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.header{
  padding: 20px 30px;
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 3;
   top: 0;
   box-shadow: 0px 4px 4px rgba(203, 203, 203, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(203, 203, 203, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(203, 203, 203, 0.25);
}
.head-action ul {
    margin: 0;
    padding: 0;
}
.head-action ul li {
    display: inline-block;
}
.head-action {
    margin-left: auto;    
}
.logo, .head-action {
    padding-right: 15px;
    padding-left: 15px;
}
.head-action li {
  cursor: pointer;
    margin-right: 20px;
    transition: 0.3s all;
    font-size: 16px;
    font-weight: 400;
        position: relative;
}
.head-action li a {
    color: #434343;
}
.head-action li img{
  margin-left: 5px;
}
.head-action li:last-child {
    margin-right:0;
}

ul.drop-down li:last-child {
    margin-bottom: 0;
}
ul.drop-down li {
    margin-right: 0 !important;
    display: block;
    padding: 0px 15px;
    padding-bottom: 5px;
    padding-top: 5px;
}
ul.drop-down {
    position: absolute;
    width: 150px;
    background: #FFFFFF;
    box-shadow: 3px 3px 10px rgb(0 0 0 / 25%);
    border-radius: 5px;
    padding: 8px 0;
    top: 30px;
    display: none;
}

ul.drop-down li:hover {
    background-color: #e8e8e8;
}

ul.drop-down li a {
    display: block;
}

.bannerTxt .btn-primary img{
  margin-left: 10px;
}
.form-head-1{font-size: 26px; font-weight: 400; color: #434343; line-height: 36px; margin-bottom: 20px;}
.form-head-1 span{color: #2F78BD;}
.form-head-2 {font-size: 16px; font-weight: 400; color: #434343; line-height: 24px;  margin-bottom: 40px;}
.banner-text{font-size: 29px; color: #434343; line-height: 36px; margin-bottom: 25px;}
.banner-text span{color: #2F78BD; font-weight: 700;}
.bannerTxt .btn {
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
}
.banner-section{
  padding-top: 60px;
  padding-bottom: 60px;    
}
.desktop-img img{max-width: 90%;}
.banner-section-bg{
  background-image: url(../../images/landing-page/timer-stp/banner-stp.png);
  background-position: center 80px;
  background-repeat: no-repeat;
  background-size: 85%;  }
.timer-text{font-size: 18px;}
.timer-box{margin-top: 10px; margin-bottom: 20px;}
section.banner-section {
    margin-top: 75px;
}
.mb-20{
  margin-bottom: 20px;
}
.mb-50{
  margin-bottom: 50px;
}
.mb-30{
  margin-bottom: 30px;
}
.head-1 strong {
    font-weight: 600;
}
.head-1 {
    font-size: 36px;
 
}
.head-1 span {
  color: #2F78BD;  
}
.head-3 {
    font-weight: 300;
    font-size: 25px;
}
.main-img {
    text-align: right;
}
.align-center{
  align-items: center;
}

.banner-section {   
    margin-bottom: 0;
}
.head-4 {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 30px;
}
.disc-txt p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}
.social li h4 {
    display: inline-block;
    margin: 0;
    font-size: 16px;
    margin-left: 10px;
}
.social li {
    list-style: none;
    margin-bottom: 10px;
}
.social ul {
    padding: 0;
    margin: 0;
}
.address .head-4 {
    margin-bottom: 10px;
    font-size: 18px;
}
.disclaimer {
    margin-bottom: 50px;    
    border-top: solid 1px #ddd;
    padding-top: 50px;
}
.s-links a {
    margin-right: 15px;
}

.s-links a:hover{
  opacity: 0.8;
}
.border-btn {
    width: 100%;
    margin-top: 16px;
    background: transparent;
    border: solid 1px #A3A3A3;
    padding: 9px 20px;
    font-weight: 400;
}
a.border-btn {
    display: block;
    text-align: center;
}
.m-0{
  margin: 0;
}
.mt-20{
  margin-top: 20px;
}
.copy-right {
    background: #f5f5f5;
    padding: 15px 0;  
    font-size: 13px;
}
.copy-right1 {
  background: #ebebeb;
  padding: 15px 0;
  font-size: 15px;
  margin-top: 20px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.copy-right a {
    color: #434343;
    text-decoration: none;
}
.copy-right a:hover {    
    text-decoration: underline;
}
.text-right{
  text-align: right;
}
.address p {
    font-size: 14px;
}


.heading-primary-sub {
  display: block;
  /* animation-name: moveInRight;
  animation-duration: 1s;
  animation-timing-function: ease-in; */
  animation: moveInRight 0.5s ease-out;
}


@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5);
}

.btn:after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
  transition: all 0.7s;
}
.btn:hover::after {
  transform: scaleX(1.5) scaleY(1.5);
  opacity: 0;
}
@keyframes moveInBottom {
  0% {
    transform: translateY(10rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animateTXT {
  width: 472px;
  animation: typing 2s steps(25), blink .6s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3.5px solid;
  display: block;
}

.animateTXT.coreTeam{
  width: 283px; 
  margin: 0 auto;
}

.animateTXT.director{
    width: 244px;
    margin: 0 auto;
}

.animateTXT.trustee {
    width: 300px;
    margin: 0 auto;
}

.animateTXT.contact-us {
    width: 180px;
    margin: 0 auto;
}

.mt-30{margin-top: 30px;}
.bannerTxt p {
    font-size: 18px;
    font-weight: 300;    
}
.notes{color: #888686; font-size: 13px !important; margin-top: 5px; margin-bottom: 5px;}
.notes1{color: #888686; font-size: 14px !important; margin-top: 5px; margin-bottom: 5px;}
a.btn-border {
    font-weight: 600;
    text-decoration: underline;
}

@keyframes typing {
  from {
    width: 0
  }
}
    
@keyframes blink {
  50% {
    border-color: transparent
  }
}
@media(max-width: 991px){
  .bannerTxt{
    text-align: center;
   
  }
  .banner-section{padding-top: 0px;}
  .desktop-img img {
    max-width: 100%;
}

  .address{margin-bottom: 20px;}
  .animateTXT{width: auto;
    white-space: normal;
    animation: none;
  }

  .header{
    padding: 15px 0;
  }
  .row{
    padding: 0 10px;
  }
  .reverse-collumn{
    flex-direction: column-reverse;
  }
  
}

.coreTeam{
  margin-bottom: 60px;
}
.card{
  background: #FFFFFF;
    box-shadow: 3px 3px 10px rgb(0 0 0 / 25%);
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

.coreTeam .card{overflow: hidden;}


.teamImg {
    height: 250px;
    overflow: hidden;
}


.teamImg img {
    width: 100%;
    height: 250px;
    object-fit: fill;
    object-position: top;
    transition: 0.5s all;
}
.coreTeam .card:hover .teamImg img{transform: scale(1.030);}
.head-2{
   font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  }

.desgination{
  
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #9F9F9F;
    margin-bottom: 15px;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mem-social a {
    text-decoration: none;
}
.mem-social a img{
  transition: 0.3s all;
}
.mem-social a:hover img{
    transform: scale(1.2);
}
.description{
 font-size: 14px;
    line-height: 21px;
    color: #434343;
    height: 102px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}
.readMore{
  font-size: 14px;
line-height: 21px;

text-decoration-line: underline;
color: #1A91F8;
}
.mem-social {
    margin-top: 15px;
    text-align: right;
}
.teamDesc {
    padding: 15px;
}
section.coreTeam .col-lg-3.col-sm-6{
    padding: 0 12.5px 25px 12.5px;
}


/*modal css*/
.md-body{line-height: 0;}
.st-modal {
    z-index: -10;
    position: relative;
    opacity: 0;
    transition: 0.2s all;
}
.ds-card-box {
    background: rgb(0 0 0 / 22%);
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: auto;
    padding: 30px 20px;
}
.square-card {
    width: 810px;
    text-align: left;
    box-shadow: 2px 4px 6px 0px rgb(0 0 0 / 23%);
    -moz-box-shadow: 2px 4px 6px 0px rgb(0 0 0 / 23%);
    padding: 2px;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    margin: auto;
    background: #fff;
    top: -150px;
    transition: 0.3s all;
}
.st-modal.active {   
    z-index: 999;
    position: relative;
    opacity: 1;
}
.st-modal.active .square-card{
  top:0;
}
.ds-close {
    position: absolute;
    top: -21px;
    right: -28px;
    cursor: pointer;
    transition: 0.3s all;
    border: solid 1px #fff;
    background: #fff;
    border-radius: 25px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 19px;
    transition: 0.3s all;
}
.ds-close img {
    width: 10px;
    

}

.ds-close:hover{transform: scale(1.1);}



.t-pr .desgination {
    height: auto;
    margin-bottom: 0;
    text-overflow: inherit;
    overflow: unset;
}
.t-pr .head-2{margin-bottom: 0;}
.t-img {
    overflow: hidden;
    border-radius: 100%;
    margin-right: 20px;
    text-align: left;
    width: 80px;
}
.team-porfile{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; 
  align-items: center;
}

.t-pr {
    width: 100%;
}
.t-pr .description {
    
    overflow: unset;
    margin: 0;
    height: auto;
    display: block;
    margin-top: 50px;
}
.t-img img {
object-fit: contain;
    height: 69px;
    width: 60px;
    border-radius: 100%;
}

.t-pr .readMore{display: none !important;}
.over-hide {
    overflow: hidden;
}

.about-section{
  margin-bottom: 90px;
}

.why-us{
  background: linear-gradient(45deg, #1a91f8, #3c71b8);
  padding: 90px 0;
    color: #fff;
}
.list_1 span {
    font-size: 50px;
    font-weight: 600;
    line-height: 35px;
}
.list_1 img{
  vertical-align: top;
  margin-right: 10px;
}
.why-list small{
  margin: 7px 0;
    display: block;
}

.director-section{
  padding: 100px 0;
}
.get-empanelled-section, .contact-section{padding-bottom: 100px; padding-top: 100px;}
.conatct-us-section {
        padding: 0 0 90px 0;
}
.testi-section{
background: #f5f5f5;
    padding-top: 100px;
    padding-bottom: 100px;
   
}
.banner-text .head-1 {
    color: #2979bb;
}
.addr-txt strong {
    font-size: 20px !important;
}
.heading-section{
  padding: 70px 0;
}
.section-light-gray{
  background: #F3F3F3;
}
.pd-70{padding: 70px;}
.br-10{border-radius: 10px;}
.section-white{
  background: #fff;
}

ul.site-links li a {
    color: #434343;
}
ul.site-links li {
    list-style: none;
    margin-bottom: 5px;
}
ul.site-links {
    margin: 0;
    padding: 0;
}
ul.site-links li img{margin-right: 10px;}
.animate-css{

   position: relative;
  animation: bottomTop 0.5s ease-out;
}


@keyframes bottomTop {
  0% {
    opacity: 0;
    top: 50px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
.border-box {
    border: solid 1px #F0F0F0;
    padding: 40px;
    border-radius: 3px;
}
.addr-txt a {
    font-size: 18px;
    font-weight: 300;
    color: #1a91f8;
    line-break: anywhere;
    text-decoration: underline;
}
.addr-txt a img {
    margin-left: 10px;
}
.form-input input.border-box {
    padding: 10px 15px;
    width: 100%;
}
.form-input .btn {
    width: 100%;
    font-weight: 600;
    font-size: 20px;
}

.form-input {
    margin-bottom: 20px;
}

.form-input:last-child {
    margin-bottom: 0;
}

.borer-r{
  border-right: solid 1px #f0f0f0;  
}

.pl-60{
  padding-left: 60px;
}
.contact-form{margin-top: 30px;}
.cn-div div > small {
    margin: 20px 0 10px 0;
    display: block;
    font-size: 16px;
    font-weight: 300;
}
.cn-div .head-1 {
  line-break: anywhere;
    font-weight: 600;
    font-size: 25px;
}
.cn-div img{transition: 0.3s all;}

.cn-div:hover img{
  transform: scale(1.2);
}
.cn-div a{
    color: #fff;
    transition: 0.5s all;    
    display: inline-block;
}
.cn-div a:hover {
    transform: scale(1.1);
    
}

.intro {
    font-size: 18px;
    font-weight: 400;
    color: #1a91f8;
    margin-bottom: 2px;
}

.white{color: #ffffff;}
.br-none{
  background-color: #fff;
  border: none;
}

.mt-70{margin-top: 70px;}
.p-relative{position: relative;}

.desk-action{display: block;}
.mob-action{display: none;}
span.ham-line:nth-child(2) {
    margin: 4px 0;
}
span.ham-line {
    width: 30px;
    height: 3px;
    background: #b5b5b5;
    display: block;
}
ul.mob-action .drop-down {
    position: fixed;
    right: 0;
    border-radius: 0;
    width: 280px;
    top: 46px;
}
.img-radius img{border-radius: 10px; border: 1px solid #ddd;}
.v-banner{position: relative; color: #2979bb; font-weight: 700; }
.v-banner.last{position: absolute; bottom: 0px; width: calc(100% - 30px);}
.v-banner .head-2{font-size: 35px;}
.v-banner .head-3{font-size: 28px; color: #434343; }
.playButton {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    cursor: pointer;
    transition: 0.5s all;
}
.v-banner:hover .playButton{transform: scale(1.1);}
.border-box {
    border: solid 1px var(--gray-light);
    padding: 40px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0px 12px -5px rgb(0 0 0 / 20%);
}
.p-releative{position: relative;}
.d-block{display: block !important;}
@media(max-width: 1199px){
  .head-1{font-size: 35px;}
  .banner-section-bg{background-position: center center;}
   
  }
@media(max-width: 767px){
.banner-section-bg{
  background-position: 0% 0px;      
}
  .bannerTxt1{margin-top: 20px;}
  .v-banner .head-2{font-size: 24px;}
  .v-banner .head-3{font-size: 19px; line-height: inherit;}
  .card {    
    margin-bottom: 20px;
    height: auto;
}

.v-banner.last{position: relative;}
  .desk-action{display: none;}
  .mob-action{display: block;}
  .market-outlook ul li{width: 100% !important;}
  .head-1{font-size: 28px;  text-align: center; line-height: initial; margin-top: 20px;}
  .head-2{font-size: 22px;  text-align: center; line-height: initial;}
  .market-outlook{margin-top: 0px !important;}
  .m-text-center{text-align: center;}
  .head-1.mb-50{margin-bottom: 20px !important;}
  .head-3{font-size: 20px;}
  .gr-img{display: none;}
  .head-action li{margin-right: 10px;font-size: 14px;}
  .head-action{padding-left: 0;}
  .logo{padding-right: 0;}
  .logo img {
      max-width: 100px;
  }
  ul.site-links{margin-top: 30px;}
  section.banner-section {
      margin-top: 55px;
  }
  .team-porfile {
      display: flex;
  }
  .team-porfile{width: 100%;}
  .t-img{margin: 0 auto;}
  .t-pr, .t-pr .description{margin-top: 20px;}
  .list_1 span{
    font-size: 38px;   
    line-height: 29px;
  }
  .animateTXT.coreTeam {
      width: 200px;

  }
  .animateTXT.director{
      width: 170px;
  }
  .animateTXT.trustee {
      width: 210px;
  }

  .animateTXT.contact-us {
      width: 130px;     
  }

  .logo{
      padding-right: 0;
  }
  
  .head-action{
      padding-left: 0;
  }

  .logo img {
      max-width: 80px;
  }
  .head-action li{
    margin-right: 10px;
  }
  
}

@media(max-width: 991px){
  .playButton{width: 60px;}
  .ds-close{right: -9px;
    top: -30px;}
  .border-box{padding: 25px; margin-bottom: 30px;}
  .cn-div .head-1 {
      font-size:20px;
      
  }
    .why-us .col-lg-3.col-sm-6 {
      margin-bottom: 40px;
  }
  .conatct-us-section .address{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
  }
  .border-box .borer-r{
    border-right: none;
    border-bottom: solid 1px #f0f0f0;
    padding-bottom: 30px;
  }
  .border-box .pl-60{padding-left: 0;}
  .conatct-us-section > .border-box{
    padding: 30px;
    border: none;
  }

  .banner-section{padding-bottom: 0;}
  .main-banner > .container > .row, .main-banner, .bg-section .main-banner, .bg-section > .main-banner > .container > .row{height: auto;padding: 30px 0;}
  .lg-mt-30{margin-top: 30px;}
 
  .lg-text-center{text-align: center;} 

}



/*AOF form*/


.form-box-item {
    position: relative;
    margin-bottom: 30px;
}
.form-box-item:last-child {
    margin-bottom: 0;
}
.input-area {
    position: relative;
}
.form-input.select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../../images/landing-page/drop.svg);
    background-repeat: no-repeat;
    background-position: 97.6% 18px;
    position: relative;
    z-index: 1;
}
.form-input {
    width: 100%;
    border: none;
    border: solid 1px var(--gray-light);
    transition: 0.5s all;
    font-size: 16px;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
}
.form-input + .input-label.active {
    top: -13px;
    font-size: 12px;
    z-index: 2;
    width: auto;
}
.input-label.active {
    color: var(--primary);
}
.input-label {
    font-size: 12px;
    margin: 0;
    position: absolute;
    background: #fff;
    width: 98%;
    top: 11px;
    transition: 0.3s all;
    height: 24px;
    font-size: var(--font-16);
    left: 3px;
    padding: 0 7px;
}
.check-mark {
    background: url(../../images/landing-page/check-circle-gray.svg);
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    position: absolute;
    right: -4px;
    z-index: 2;
    top: -5px;
    background-color: #fff !important;
}
.check-mark.active {
    background: url(../../images/landing-page/check-circle-sucess.svg);
    background-repeat: no-repeat;
}
.alert {
    color: red;
    font-size: 13px;
    position: relative;
    margin-top: 3px;
    display: none;
}
.alert-i {
    background: url(../../images/landing-page/alert.svg);
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    position: absolute;
    top: 2px;
}
.alert span {
    padding-left: 18px;
}
.input-area.arn-area p {
    position: absolute;
    top: 10px;
    font-size: 16px;
    font-weight: 600;
    left: 10px;
}
.input-area.arn-area p + .form-input {
    padding-left: 55px;
}
.form-input.validate-input {
    border-bottom: none;
    box-shadow: 0px 0px 0px 2px var(--danger);
}
.form-box-item .form-input{margin-bottom: 0;}
.aof-form .bannerTxt .btn{width: 100%;}
.radio-box.button {
    position: relative;
    margin-bottom: 10px;
}
.radio-box.button input {
    opacity: 0;
}
.radio-box.button label {
    margin-bottom: 0;
    margin-left: 15px;
}
.radio-box.button input:checked + label:after {
    background: url(../../images/landing-page/radioChecked.svg);
    background-repeat: no-repeat;
}
.radio-box.button label:after {
    content: "";
    background: url(../../images/landing-page/radioUncheck.svg);
    position: absolute;
    width: 21px;
    height: 21px;
    background-repeat: no-repeat;
    left: 0px;
    top: 1px;
}
.success-text {
    color: var(--success) !important;
}
.r-sent a:hover {
    text-decoration: underline;
}
.r-sent a {
    color: #434343;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
.d-none{display: none;}
.border-box p{font-size: 18px;}
.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary);
    border: solid 1px #fff;
}

.market-outlook{margin-top: 50px;}
.market-outlook ul{margin: 0px; padding: 0px; display: flex; flex-wrap: wrap;} 
.market-outlook ul li {
  list-style-type: none;
  text-align: center;
  padding: 20px;
  width: 210px;
  margin-left: 3%;
  margin-right: 3%;
  justify-content: space-between;
  
  border-radius: 10px;
  /* border: 1px dashed #fff; */
}
/* .market-outlook ul li:hover {
  background: #fdfdfd;
  border: 1px dashed #e5e5e5;
} */

.market-outlook ul li span{font-size: 18px; color: #434343;}
.market-outlook ul li:hover span{color:#212121;}

.market-outlook ul li i{width: 80px; height: 80px; border-radius: 100%; display: flex; align-items: center; justify-content: center; margin: 10px auto;}
.market-outlook ul li:nth-child(1) i{background: #FFF7EA;}
.market-outlook ul li:nth-child(2) i{background: #F8F8FF;}
.market-outlook ul li:nth-child(3) i{background: #FFF0F3;}
.market-outlook ul li:nth-child(4) i{background: #FFF8EB;}
.market-outlook ul li:nth-child(5) i{background: #FFF3EA;}
.market-outlook ul li:nth-child(6) i{background: #EDFFED;}
.market-outlook ul li:nth-child(7) i{background: #F5F5F5;}
.market-outlook ul li:nth-child(8) i{background: #EEF7FD;}
.blue-bg {background: #2F78BD;}
.blue-bg .head-1{color: #fff;}
.blue-bg h3{color: #fff; font-size: 20px; font-weight: 300;}
.card{padding: 10px;}
.cardimg{border-radius: 5px; width:100%; overflow: hidden; margin-bottom: 15px;}
.cardimg img{width:100%;}
.teamDesc .head-2 {
  font-size: 20px;
}
.timer_container {
	width: max-content;
	margin-left: auto;
	margin-right: auto;
  display: flex;
  margin-bottom: 20px;
  
}

.timer_container>div:first-child {
	margin-left: 0
}

.timer_container div div {
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
	font-weight: 500
}

.timer_container .box_round {
	font-size: 30px;
	font-weight: 700;
	text-align: center;	
	border-radius: 3px;
  background: rgb(68,68,68);
  background: linear-gradient(0deg, rgba(68,68,68,1) 48%, rgba(76,76,76,1) 50%, rgba(139,190,123,1) 503%);
  color: #fff;
  margin: 0px 5px;
  padding: 0px 10px;;
  /* min-width: 50px; */
}


.timer_container>div:first-child div:nth-of-type(2) {
	border-left: 1px solid #e8e8e8
}
.al-tetx{
  text-align: center;
  color: #434343;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}
.term-cond{ padding: 30px; border-radius: 10px; border: 1px solid #f1f1f1;}
/* background: #F1F1F1; */
.term-cond ol.list{ padding-left: 15px; margin-bottom: 0px; }
ol.list{}
ol.list li{margin-bottom: 10px; font-size: 14px;}
ol.list li .listings {margin-top: 15px; list-style: lower-latin;}
.moretext {
  display: none;
}
.table-responsive{overflow-x:auto;}
.head-action li a.active{color: #4788c8;}
.colon{ height: 45px; line-height: 45px; font-weight: 700; font-size: 30px;}
.btn-default{
  color: #434343;
    background-color:#fff;
    border-color:#fff;    
}

.emil-writing{}
.emil-writing ul{margin: 0px; padding: 0px;}
.emil-writing ul li{list-style-type: none; display: flex; align-items: center;}
.para-intilize{text-align: inherit !important;}
.drop-down.active{display: block;}
.bg-blue {background-image: linear-gradient( to top, #f5fbfc, #f0f7f8, #ebf3f4, #e7eff0, #e2ebec );}
.bannerTxt .head-1{color: #2979bb;}
.p20{padding: 20px;}




.bottom-value{display:flex;border:1px solid #bbddff;margin-top:20px;padding:20px;border-radius:10px;justify-content:space-around;background:#fff;flex-wrap:wrap;}
.bottom-value > div > span{display:block;}
.bottom-value > div > span:first-child{font-weight:700;}
.divider{border-left:1px solid #bbddff;}
@media (max-width: 767px){
.bottom-value > div{width:100%;}
.bottom-value > div{width:50%;}
.bottom-value > div:nth-child(1){margin-bottom:20px;}
.bottom-value > div.divider{display:none;}
}
.border-line{border: 1px solid #ddd;}
.table tr th{background: #4788c8; color: #fff; font-size: 14px; border-right: solid 1px #e5e5e5;}
.table tr td {
  color: var(--gray-dark);
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 400;
  border-bottom: solid 1px #e5e5e5;
  border-right: solid 1px #e5e5e5;
}
.table tr td:first-child {
  border-left: solid 1px #e5e5e5;
}


.question-item .team-porfile img{transition:0.3s all;background:#f1f1f1;width:30px;height:30px;padding:9px;border-radius:100%;}
.faq-box-list.active .question-item .team-porfile img{background:#d5eaff;}
.faq-box-list.active .team-porfile img{transform:rotate(180deg);}
.question-item.active + .answer-item{display:block;}
.question-item{cursor:pointer;}
.answer-item{display:none;margin-top:20px;}
.answer-item p{margin-bottom:0;}
.faq-box-list.active .team-porfile .font16{font-weight:700;}
.faq-box-list{background:#fff!important;padding:15px 20px;border-radius:10px;margin-bottom:10px;border:solid 1px var(--gray-light);}
.faq-box-list.active{box-shadow:2px 2px 19px rgb(0 0 0 / 8%);-moz-box-shadow:2px 2px 19px rgba(0, 0, 0, 0.08);border-color:var(--white);}
.question-item.active{border-bottom:none;}
.answer-item p,.answer-item li{margin-bottom:0;font-size:14px;}
.question-item .team-porfile img {
  transition: 0.3s all;
  background: #f1f1f1;
  width: 30px;
  height: 30px;
  padding: 9px;
  border-radius: 100%;
}
.ml-auto {
  margin-left: auto;
}
.m-auto {
  margin: auto;
}
.ml-10 {
  margin-left: 10px;
}

.img-radius img{border-radius: 10px; border: 1px solid #ddd;}

.timer-stp{position:relative;padding:20px 30px;border:1px solid #ddd;border-radius:20px;display:flex;align-self:center;justify-content:center;background:#fff;}
.timer-stp > div:last-child{padding-left:50px;}
.timer-stp h1{font-size:36px;font-weight:600;}
.timer-stp h1 span{color:#3078be;}
.timer-stp h2{font-weight:400;font-size:22px;line-height:30px;}
.timer-stp > div:last-child{padding-left:40px;}
.timer-stp img{max-width:90px;}

@media (max-width: 767px){
.banner-section-bg{background-position: center top;}
.timer-stp > div:last-child{padding-left:0px;}
.timer-stp{display:block;text-align:center;}
.timer-stp h1{font-size:22px;line-height:30px;margin-top:10px;}
.timer-stp h2{font-size:18px;line-height:26px;}
}
.font16 {
  font-size: 16px;
}

.quick-table {
  width: 100%;
}

.quick-table.table-details tr td {
  text-align: center;
}

.quick-table.table-details tr th span {
  font-weight: 300;
  font-size: 12px;
}

.quick-table.table-details tr th {
  font-size: 14px;
  text-align: center;
}

.quick-table.table-details tr td:first-child {
  font-weight: 400;
  text-align: left;
}
.quick-table.table-details tr:last-child td {
  border-bottom: none;
}
.table-box {
  display: table;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: solid 1px var(--gray-light);
  background: var(--white);
}

table.quick-table tr th {
  background: #4788c8;
  color: #ffff;
  padding: 15px;
  border-right: solid 1px var(--gray-light);
}

table.quick-table tr th:last-child {
  border-right: none;
}

table.quick-table tr td {
  color: var(--gray-dark);
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 400;
  border-bottom: solid 1px var(--gray-light);
  border-right: solid 1px var(--gray-light);
}
table.quick-table tr td:last-child {
  border-right: none;
}
.quick-table.table-details tr td span {
  color: var(--secondary);
}
.note {
  font-size: 12px !important;
  color: #969696;
}
.mt-10 {
  margin-top: 10px !important;
}