::-webkit-scrollbar {
  width: 8px;
  background-color: #aaa;
}
::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 5px;
}
::selection {
  background: #222;
  color: #fff;
}
::-moz-selection {
  background: #222;
  color: #fff;
}
::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

body {
  font-family: "Jost", sans-serif;
  color: #535353;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  background: #f6f6f6;
}
body * {
  color: inherit;
}
a,
a:hover,
input,
select,
button,
textarea,
input:focus,
select:focus,
button:focus,
textarea:focus,
*:focus {
  text-decoration: none;
  outline: none;
  color: inherit;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fontMedium {
  font-weight: 500;
}
.fontBold,
strong {
  font-weight: 700;
}
.blueColor {
  color: #004780;
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 999999;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}
.preloader:before {
  width: 50%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
}
.preloader:after {
  width: 50%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
}

.preloader.complete:before,
.preloader.complete:after {
  animation: loader 0.5s forwards;
}

.status {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 143px;
  height: 46px;
  z-index: 9;
  opacity: 1;
}
.status img {
  width: 100%;
  height: auto;
}
.preloader.complete .status {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@-webkit-keyframes loader {
  0% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}
@-moz-keyframes loader {
  0% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}
@keyframes loader {
  0% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}

.pageHeader {
  width: auto;
  min-height: 70px;
  position: fixed;
  left: 0;
  right: 0;
  background: rgb(246 246 246);
  border-bottom: 1px solid #e9e9e9;
  padding: 10px 50px;
  z-index: 1000;
  transition: all 0.5s ease;
}
.pageHeader.stick,
.pageHeader.bg-white {
  background: rgb(246 246 246);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.stickyAnchor {
  width: 100%;
  height: 0;
  position: absolute;
  top: 50px;
  left: 0;
}
.siteLogo {
  width: 166px;
  height: 45px;
}

.navig {
  margin-left: 20px;
}
.navig li {
  display: inline-block;
  margin-right: 38px;
}
.navig li:last-child {
  margin-right: 0;
}
.navig li a {
  display: block;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}
.navig li a:before {
}
.navig li a:after {
  width: 100%;
}

.menuAction li {
  margin-left: 30px;
  font-weight: 500;
}
.menuAction li:last-child {
  margin-left: 0;
}
.menuAction img {
  width: 18px;
  height: auto;
  display: block;
}

.navig li a:hover,
.navig li a.active,
.menuAction li a:hover {
  color: #ff0b28;
}
.navig li a.active {
  pointer-events: none;
}

.menuAction .dwnldIcons a {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}
.menuAction .dwnldIcons a svg {
  width: 18px;
  height: auto;
  fill: #535353;
  transition: all 0.3s ease;
  display: block;
}
.menuAction .dwnldIcons a:hover svg {
  fill: #ff0b28;
}

.menu_Btn {
  width: 25px;
  height: 30px;
  border: 0;
  position: relative;
  background: transparent;
  display: block;
  float: right;
  padding: 0;
}
.menu_Btn span {
  width: 100%;
  height: 1px;
  background: #3a3b3e;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 50rem !important;
}
.menu_Btn span:nth-child(1) {
  transform: translate3d(0, -8px, 0);
}
.menu_Btn span:nth-child(4) {
  transform: translate3d(0, 8px, 0);
}
.menu_Btn[aria-expanded="true"] span:nth-child(1),
.menu_Btn[aria-expanded="true"] span:nth-child(4) {
  transform: translate3d(0, 0, 0);
  opacity: 0;
  width: 0;
}
.menu_Btn[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(45deg);
}
.menu_Btn[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

@media (max-width: 1300px) and (min-width: 1199.98px) {
  .navig li {
    margin-right: 15px;
  }
}

@media (max-width: 1199.98px) {
  .pageHeader {
    padding: 10px 20px;
  }
  .navig {
    margin-left: 10px;
  }
  .navig li {
    margin-right: 20px;
  }
  .menuAction li {
    margin-left: 20px;
  }
}

@media (max-width: 1040.98px) {
  .navig li {
    margin-right: 15px;
  }
  .menuAction li {
    margin-left: 15px;
  }
}

@media (max-width: 1023.98px) {
  .pageHeader {
    padding: 10px 8px;
  }
}

@media (max-width: 991.98px) {
  .pageHeader {
    padding: 10px 15px;
  }
  .navigHolder {
    margin: 0;
  }
  .navigHolder > .row {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .navig {
    margin: 0;
    border-top: 1px solid #eee;
  }
  .navig li {
    display: block;
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
  .menuAction {
    margin: 20px -15px 0;
  }
  .menuAction li {
    margin-left: 0;
    font-weight: 500;
    display: block;
    text-align: center;
  }
  .loginBtn {
    background: #eee;
    font-weight: 500;
    padding: 13px 25px;
    line-height: 1.2;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
  }
}

.redButton {
  background: transparent;
  color: #fff;
  font-weight: 500;
  padding: 13px 25px;
  line-height: 1.2;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 0;
}
.redButton:before {
  content: "";
  width: 400%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -300%;
  transition: all 0.4s ease-out;
  z-index: -1;
  background: rgb(255, 11, 40);
  background: -moz-linear-gradient(
    60deg,
    rgba(255, 11, 40, 1) 1%,
    rgba(1, 88, 157, 1) 20%,
    rgba(255, 11, 40, 1) 55%
  );
  background: -webkit-linear-gradient(
    60deg,
    rgba(255, 11, 40, 1) 1%,
    rgba(1, 88, 157, 1) 20%,
    rgba(255, 11, 40, 1) 55%
  );
  background: linear-gradient(
    60deg,
    rgba(255, 11, 40, 1) 1%,
    rgba(1, 88, 157, 1) 20%,
    rgba(255, 11, 40, 1) 55%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0b28",endColorstr="#ff0b28",GradientType=1);
}
.redButton:hover,
.redButton:focus {
  color: #fff !important;
}
.redButton:hover:before {
  left: 0;
}

.ghostButton {
  background: transparent;
  color: #ff0b28;
  font-weight: 500;
  padding: 12px 25px;
  line-height: 1.2;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #ff0b28;
}
.ghostButton:before {
  content: "";
  width: 400%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -300%;
  transition: all 0.4s ease-out;
  z-index: -1;
  opacity: 0;
  background: rgb(255, 11, 40);
  background: -moz-linear-gradient(
    60deg,
    rgba(255, 11, 40, 1) 1%,
    rgba(1, 88, 157, 1) 20%,
    rgba(255, 11, 40, 1) 55%
  );
  background: -webkit-linear-gradient(
    60deg,
    rgba(255, 11, 40, 1) 1%,
    rgba(1, 88, 157, 1) 20%,
    rgba(255, 11, 40, 1) 55%
  );
  background: linear-gradient(
    60deg,
    rgba(255, 11, 40, 1) 1%,
    rgba(1, 88, 157, 1) 20%,
    rgba(255, 11, 40, 1) 55%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0b28",endColorstr="#ff0b28",GradientType=1);
}
.ghostButton:hover,
.redButton:focus {
  color: #fff !important;
}
.ghostButton:hover:before {
  left: 0;
  opacity: 1;
}

.blueButton {
  background: #004780;
  color: #fff;
  font-weight: 500;
  padding: 13px 25px;
  line-height: 1.2;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 0;
}
.blueButton:before {
  content: "";
  width: 400%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -300%;
  transition: all 0.4s ease-out;
  z-index: -1;
  opacity: 0;
  background: rgb(255, 11, 40);
  background: -moz-linear-gradient(
    60deg,
    rgba(255, 11, 40, 1) 1%,
    rgba(1, 88, 157, 1) 20%,
    rgba(255, 11, 40, 1) 55%
  );
  background: -webkit-linear-gradient(
    60deg,
    rgba(255, 11, 40, 1) 1%,
    rgba(1, 88, 157, 1) 20%,
    rgba(255, 11, 40, 1) 55%
  );
  background: linear-gradient(
    60deg,
    rgba(255, 11, 40, 1) 1%,
    rgba(1, 88, 157, 1) 20%,
    rgba(255, 11, 40, 1) 55%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0b28",endColorstr="#ff0b28",GradientType=1);
}
.blueButton:hover,
.redButton:focus {
  color: #fff !important;
}
.blueButton:hover:before {
  left: 0;
  opacity: 1;
}

.whiteButton {
  background: transparent;
  color: #fff;
  font-weight: 500;
  padding: 13px 25px;
  line-height: 1.2;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 0;
}
.whiteButton:before {
  content: "";
  width: 400%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -300%;
  transition: all 0.4s ease-out;
  z-index: -1;
  background: #fff;
  background: -moz-linear-gradient(
    60deg,
    #fff 1%,
    rgba(1, 88, 157, 1) 20%,
    #fff 55%
  );
  background: -webkit-linear-gradient(
    60deg,
    #fff 1%,
    rgba(1, 88, 157, 1) 20%,
    #fff 55%
  );
  background: linear-gradient(
    60deg,
    rgba(255, 11, 40, 1) 1%,
    rgba(1, 88, 157, 1) 20%,
    #fff 55%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0b28",endColorstr="#ff0b28",GradientType=1);
}
.whiteButton:hover,
.redButton:focus {
  color: #fff !important;
}
.whiteButton:hover:before {
  left: 0;
}

.pinkColor {
  color: #e8787d;
}
.lightpinkColor {
  color: #e9ccb6;
}

.ctaLink {
  color: #ff0b28;
  position: relative;
  transition: all 0.2s ease;
  padding: 0 2px;
}
.ctaLink:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ff0b28;
  position: absolute;
  bottom: 0;
  right: 0;
  animation: linkLineB 0.3s 0.3s ease backwards;
}
.ctaLink:after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: linkLineA 0.3s ease forwards;
  z-index: -1;
  border-radius: 2px;
  background: rgb(0, 71, 128);
  background: -moz-linear-gradient(
    90deg,
    rgba(0, 71, 128, 1) 0%,
    rgba(255, 11, 40, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(0, 71, 128, 1) 0%,
    rgba(255, 11, 40, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 71, 128, 1) 0%,
    rgba(255, 11, 40, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#004780",endColorstr="#ff0b28",GradientType=1);
}
.ctaLink:hover:before {
  animation: linkLineA 0.3s ease forwards;
}
.ctaLink:hover:after {
  animation: linkLineB 0.3s 0.3s ease forwards;
}
.ctaLink:hover {
  color: #fff;
  transition-delay: 0.2s;
  padding: 0 5px;
}

@keyframes linkLineA {
  0% {
    width: 100%;
    left: auto;
    right: 0;
  }
  70% {
    width: 0%;
    left: auto;
    right: 0;
  }
  100% {
    width: 0%;
    left: 0;
    right: auto;
  }
}
@keyframes linkLineB {
  0% {
    width: 0%;
    left: 0;
    right: auto;
  }
  70% {
    width: 100%;
    left: 0;
    right: auto;
  }
  100% {
    width: 100%;
    left: auto;
    right: 0;
  }
}

@media (max-width: 575.98px) {
  .redButton {
    padding: 13px 15px;
  }
  .ghostButton {
    padding: 12px 15px;
  }
}

.pageContainer {
  width: 100%;
  overflow: hidden;
  padding-top: 70px;
}

.heroSection {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
.heroText {
  max-width: 350px;
  width: 100%;
}
.heroText .heroTitle {
  font-size: 48px;
  line-height: 1;
}
.heroText p,
.heroText h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
}

.heroText2 {
  max-width: none;
  width: 100%;
}
.heroText2 .heroTitle {
  font-size: 44px;
  line-height: 1.3;
}
.heroText2 p,
.heroText2 h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
}

.heroSection .heroBtns a {
  width: 200px;
}

@media (min-width: 992px) {
  .heroSection {
    height: calc(100vh - 70px);
  }
  .heroText2 {
    max-width: 530px;
  }
}

.heroLinks {
  font-size: 14px;
  font-weight: 700;
}
.heroLinks a {
  display: inline-block;
  margin: 5px;
  padding: 5px 10px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e3e3e3;
  border-radius: 50rem;
  line-height: 1;
  background: #f3f3f3;
  position: relative;
}
.heroLinks a:hover {
  color: #ff0b28;
  border: 1px solid #ff0b28;
}
.heroLinks a:not([href]):not([class]):hover {
  border: 1px solid #e3e3e3;
  cursor: default;
}

.heroLinks a.new:before {
  content: "NEW";
  display: block;
  background: #004780;
  color: #fff;
  font-size: 7px;
  line-height: 1;
  padding: 3px 4px;
  border-radius: 50rem;
  position: absolute;
  top: -10px;
  left: 4px;
  box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.3);
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: blink;
  animation-name: blink;
}

@-webkit-keyframes blink {
  0% {
    background: #004780;
  }
  25% {
    background: #ff0b28;
  }
  75% {
    background: #ff0b28;
  }
  100% {
    background: #004780;
  }
}
@keyframes blink {
  0% {
    background: #004780;
  }
  25% {
    background: #ff0b28;
  }
  75% {
    background: #ff0b28;
  }
  100% {
    background: #004780;
  }
}

@media (max-width: 575.98px) {
  .heroLinks {
    font-size: 12px;
    font-weight: 700;
  }
  .heroSection .heroBtns a {
    width: 96%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 3%;
  }
}

.heroAnimation {
  width: 300px;
  height: 250px;
  margin: auto;
  position: relative;
  overflow: visible;
  background: url(../images/coinStrip.png) no-repeat center 100%;
}
.heroAnimation:after {
  content: "";
  width: 1212px;
  height: 100px;
  display: block;
  position: absolute;
  top: 90%;
  right: 50%;
  background: url(../images/heroShadow.png) no-repeat center 100%;
  transform: translateX(50%);
  z-index: -2;
}
.heroAnimation .coinHolder {
  width: 300px;
  height: 250px;
  display: block;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.heroAnimation .coin {
  width: 130px;
  height: 130px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  will-change: top transform;
}
.heroAnimation .coin:before {
  width: 60%;
  height: 60%;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(20px);
  will-change: top transform;
}
.heroAnimation .coin img {
  width: 100%;
}

.start .coin_A {
  animation: coinA 15s ease infinite;
}
.coin_B {
  animation: coinB 15s ease infinite;
}
.coin_C {
  animation: coinC 15s ease infinite;
}

.coin_B,
.coin_C {
  opacity: 0;
}
.start .coin_B,
.start .coin_C {
  opacity: 1;
}

@keyframes coinA {
  0% {
    top: 0;
  }
  5% {
    top: 10%;
  }
  10% {
    top: 0;
  }
  20% {
    top: 110%;
  }
  30% {
    top: 110%;
  }
  40% {
    top: 0;
  }
  50% {
    top: 10%;
  }
  60% {
    top: 0;
  }
  70% {
    top: 10%;
  }
  80% {
    top: 0;
  }
  90% {
    top: 10%;
  }
  100% {
    top: 0;
  }
}
@keyframes coinB {
  0% {
    top: 110%;
    transform: translateX(30px);
  }
  35% {
    top: 110%;
    transform: translateX(30px);
  }
  40% {
    top: 10%;
    transform: translateX(-50px);
  }
  50% {
    top: 0;
    transform: translateX(-50px);
  }
  60% {
    top: 10%;
    transform: translateX(-50px);
  }
  70% {
    top: 0;
    transform: translateX(-50px);
  }
  80% {
    top: 10%;
    transform: translateX(-50px);
  }
  90% {
    top: 0;
    transform: translateX(-50px);
  }
  95% {
    top: 110%;
    transform: translateX(30px);
  }
  100% {
    top: 110%;
    transform: translateX(30px);
  }
}
@keyframes coinC {
  0% {
    top: 110%;
    transform: translateX(-30px);
  }
  40% {
    top: 110%;
    transform: translateX(-30px);
  }
  48% {
    top: 15%;
    transform: translateX(50px);
  }
  56% {
    top: 25%;
    transform: translateX(50px);
  }
  64% {
    top: 15%;
    transform: translateX(50px);
  }
  72% {
    top: 25%;
    transform: translateX(50px);
  }
  80% {
    top: 15%;
    transform: translateX(50px);
  }
  88% {
    top: 25%;
    transform: translateX(50px);
  }
  95% {
    top: 15%;
    transform: translateX(50px);
  }
  98% {
    top: 110%;
    transform: translateX(-30px);
  }
  100% {
    top: 110%;
    transform: translateX(-30px);
  }
}

.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}
.icon-scroll {
  width: 25px;
  height: 40px;
  margin-left: -15px;
  bottom: 30px;
  margin-top: 0px;
  box-shadow: inset 0 0 0 1px #535353;
  border-radius: 20px;
  background: #f6f6f6;
}
.icon-scroll:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ff0b28;
  margin-left: -3px;
  top: 6px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scrollwheel;
  animation-name: scrollwheel;
}
.icon-scroll:after {
  content: "Scroll";
  font-size: 10px;
  position: absolute;
  bottom: -20px;
}
@-webkit-keyframes scrollwheel {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
  }
}
@keyframes scrollwheel {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
  }
}

.boldTitle {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}
.boldTitle small {
  font-size: 20px;
  font-weight: 500;
  display: block;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .icon-scroll {
    /*left:auto;right:15px;*/
    width: 20px;
    height: 30px;
    margin-left: -10px;
    bottom: 18px;
  }
  .icon-scroll:before {
    width: 4px;
    height: 4px;
    margin-left: -2px;
    top: 4px;
  }
  .icon-scroll:after {
    margin-left: -3px;
  }
  .heroText .heroTitle,
  .boldTitle {
    font-size: 36px;
  }
  .boldTitle small {
    font-size: 18px;
  }
}

.emboseBox {
  width: 100%;
  min-height: 45px;
  border-radius: 22px;
  padding: 10px 25px 10px 50px;
  box-shadow: 8px 8px 5px rgba(242, 242, 242, 1),
    -4px -4px 5px rgba(250, 250, 250, 1);
  background: url(../images/redtick.png) no-repeat 18px 15px;
}

.aboutSection {
  width: 100%;
}
.abSecContent {
  margin-bottom: 80px;
}

.aboutStatistics li {
  margin-bottom: 30px;
  line-height: 1.5;
}
.aboutStatistics li strong {
  font-size: 22px;
  vertical-align: baseline;
  line-height: 1;
}

.abSecMedia {
  margin-bottom: 100px;
}
.abSecMedia .absmTitle {
  font-size: 14px;
  color: #999;
}
.abSecMedia img {
  opacity: 0.65;
  filter: grayscale(100);
  display: block;
  transition: all 0.3s ease;
  margin-right: 10px;
}
.abSecMedia img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.appwebSection {
  background: #e6eff8;
  padding-top: 100px;
  padding-bottom: 0px;
}

.stickParent {
  position: relative;
}
.stickTriggerContainer {
  height: 100vh;
  width: 100%;
}
.stickCanvasColumn {
  width: 100%;
  height: 100%;
  display: block; /*position:absolute;top:0;left:0;right:0;bottom:0;*/
  margin: auto;
}
.stickCanvas {
  width: auto;
  height: calc(100vh - 100px);
  top: 0;
}

.stickScrollBtns .stickBtn {
  width: 80px;
  height: 35px;
  border: 1px solid #dce8f3;
  padding: 0;
  box-shadow: inset 1px 2px 5px #b3c9df;
  background: transparent;
  margin: 0 8px;
  font-size: 14px;
  color: #aaa;
}
.stickScrollBtns .stickBtn.active {
  background: #e4ecf4;
  border: 1px solid #e4ecf4;
  box-shadow: 6px 6px 4px rgba(218, 229, 239, 1),
    -4px -4px 5px rgba(238, 244, 249, 1);
  color: #535353;
}

.appDetails {
  margin-top: -100px;
}
.appDetails img {
  margin-bottom: 15px;
}
.appDetails h2 {
  font-size: 24px;
  font-weight: 700;
}
.appDetails .appDwnldBtns,
.appDetails .appLogo {
  transition: all 0.3s ease;
  opacity: 0.45;
  filter: grayscale(100%);
}

.appDetails.active h2 {
  color: #004780;
}
.appDetails.active .appDwnldBtns,
.appDetails.active .appLogo {
  opacity: 1;
  filter: grayscale(0%);
}
.appDwnldBtns .appDwnldBtn img {
  display: block;
  transition: all 0.4s ease;
  transform: scale(1);
  will-change: transform;
}
.appDwnldBtns .appDwnldBtn:hover img {
  transform: scale(1.1);
}

.mobScreenHolder {
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  text-align: center;
  position: relative;
}
.mobScreenHolder .appScreenImg {
  width: 90%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  transition: all 0.3s ease;
  will-change: opacity;
}
.mobScreenHolder .appScreenImg.active {
  opacity: 1;
}

.mobScreenHolder .mobScreenCircle {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.4s ease;
  will-change: transform;
}
.mobScreenHolder .mobScreenCircle:before {
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  background: #ff0b28;
  border-radius: 50%;
  border: 5px solid #fff;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.3);
}
.mobScreenHolder .mobScreenCircle.tradeX {
  transform: rotateZ(-63deg);
}
.mobScreenHolder .mobScreenCircle.investX {
  transform: rotateZ(63deg);
}

.webscreenWrapper {
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: 0;
}
.appscreenWrapper {
  z-index: 1;
  position: relative;
}
.webscreenWrapper.in-view {
  z-index: 2;
}

@media (max-width: 991.98px) {
  .stickCanvasColumn {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .stickCanvas {
    width: auto;
    height: auto;
  }
  .webscreenWrapper {
    position: relative;
    top: 0;
    opacity: 1;
    z-index: 0;
  }
  .appWebScreen,
  .appDetails .appDwnldBtns,
  .appDetails .appLogo {
    opacity: 1 !important;
    filter: grayscale(0%);
  }
  .appDetails {
    margin-top: 0;
  }
  .appDetails h2 {
    color: #004780;
  }
}

@media (max-width: 767.98px) {
  .appDetails {
    margin-bottom: 70px;
  }
  .appDetails .appDwnldBtns {
    max-width: 350px;
  }
}

.featureSection {
  padding-top: 100px;
}

.featureHolder {
  margin-top: 50px;
  margin-bottom: 100px;
}
.featureBrief .featureTitle {
  font-size: 40px;
}

.featureList {
  font-size: 14px;
}
.featureList li {
  margin-bottom: 20px;
}

.scrollMobile {
  width: 350px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.featureInMobile {
  width: 315px;
  height: auto;
  display: block;
  margin: auto 0 auto auto;
  position: relative;
}
.mobileMask {
  position: relative;
  z-index: 5;
}
.appScreenHolder {
  width: 66.66%;
  height: 79%;
  display: block;
  position: absolute;
  top: 5.65%;
  left: 8.6%;
  background: #fff;
}
.appScreenHolder img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.inMob_screenHolder {
  width: 80%;
  max-width: 315px;
  height: auto;
  display: block;
  margin: auto;
  position: relative;
}
.mobileMask {
  position: relative;
  z-index: 5;
  width: 100%;
}
.inMob_screenHolder .appScreenHolder {
  width: 66.66%;
  height: 79%;
  display: block;
  position: absolute;
  top: 5.65%;
  left: 8.6%;
  background: #fff;
}

@media (max-width: 991.98px) {
  .scrollMobile {
    right: auto;
    margin-left: -50px;
  }
}

@media (max-width: 767.98px) {
  .featureSection {
    padding-bottom: 30px;
    padding-top: 70px;
  }
  .featureBrief .featureTitle {
    font-size: 24px;
  }
  .featureHolder {
    margin-top: 0px;
    margin-bottom: 50px;
  }
  .inMob_screenHolder {
    width: 60%;
    min-width: 230px;
    right: -5%;
  }
}

@media (max-width: 575.98px) {
  .inMob_screenHolder {
    width: 40%;
    min-width: 230px;
    right: -5%;
  }
}

.partnerSection {
  /*background:#bae0ff;*/
  padding-bottom: 70px;
  padding-top: 70px;
}
.partnerImg {
  width: 150px;
  height: 100px;
  object-position: center bottom;
  object-fit: contain;
}

.edgeSection {
  padding: 100px 0;
  background: #fff3f3;
}

.researchContent {
  margin-bottom: 100px;
}
.ecbTitle {
  font-size: 36px;
}

.edgeSubContainer {
  margin-bottom: 150px;
}
.edgeSubContent {
  height: 100%;
}
.escTitle {
  font-size: 18px;
}

.edgesubDivider {
  width: 1px;
  height: 100%;
  background: #ddd;
}

.winnerList {
  padding-left: 30px;
}
.winnerList li {
  position: relative;
}
.winnerList li:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background: #ff0b28;
  position: absolute;
  left: -20px;
  top: 7px;
  border-radius: 50%;
}

@media (max-width: 767.98px) {
  .ecbTitle {
    font-size: 24px;
  }
  .edgesubDivider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 20px auto;
  }
  .researchContent {
    margin-bottom: 40px;
  }
  .edgeSubContainer {
    padding-left: 30px;
    margin-bottom: 70px;
  }
  .edgeSubContent:before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    background: #ff0b28;
    position: absolute;
    left: -20px;
    top: 7px;
    border-radius: 50%;
  }
}

.ctaSection {
  background: #bae0ff;
  padding-bottom: 70px;
  padding-top: 70px;
}
.ssBox {
  position: relative;
  background: #333;
  overflow: hidden;
}
.ssBox .ssBtn {
  height: 45px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
.ssBox:hover .ssBtn {
  opacity: 1;
}
.ssBox img {
  opacity: 1;
  transition: all 0.3s ease;
}
.ssBox:hover img {
  opacity: 0.3;
}

.needIcons {
  width: 40px;
  height: 40px;
  background: #fff;
  padding: 5px;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 28px;
  transition: all 0.2s ease-in-out;
  will-change: transform;
  transform: scale(1);
}
.needIcons img {
  width: 25px;
  height: auto;
}
.needList li:hover .needIcons {
  transform: scale(1.4);
}

.ctaSecBtn {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px #b0cce2;
}

.arrowMotion {
  position: relative;
  -webkit-animation: pop 1s infinite ease-in-out;
  -moz-animation: pop 1s infinite ease-in-out;
  animation: pop 1s infinite ease-in-out;
}
@-webkit-keyframes pop {
  0% {
    right: 0px;
  }
  50% {
    right: -15px;
  }
  100% {
    right: 0px;
  }
}
@-moz-keyframes pop {
  0% {
    right: 0px;
  }
  50% {
    right: -15px;
  }
  100% {
    right: 0px;
  }
}
@keyframes pop {
  0% {
    right: 0px;
  }
  50% {
    right: -15px;
  }
  100% {
    right: 0px;
  }
}

@media (max-width: 767.98px) {
  .ssBox .ssBtn {
    height: 30px;
    opacity: 1;
  }
  .ssBox img {
    opacity: 0.8;
  }
}

.insightSection {
  padding: 100px 0;
}

.insightContainer {
  width: 100%;
  overflow: visible;
}
.insightItem {
  width: 100%;
}
.insightItem .insightImg {
  width: 100%;
  padding-bottom: 56%;
  display: block;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.insightItem .insightImg img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition: all 0.3s ease;
}
.insightItem:hover .insightImg img {
  transform: scale(1.2);
}
.insightItem .insightDetails {
  padding: 20px 20px 0;
}
.insightItem .insightTitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  display: block;
}
.insightItem .ctaLink {
  opacity: 0;
  transition: all 0.3s ease;
  left: -10px;
  position: relative;
}
.insightItem:hover .ctaLink {
  opacity: 1;
  left: 0;
}

@media (max-width: 1199.98px) {
  .insightContainer .swiper-slide {
    width: 45%;
  }
}
@media (max-width: 767.98px) {
  .insightContainer .swiper-slide {
    width: 70%;
  }
}
@media (max-width: 575.98px) {
  .insightContainer .swiper-slide {
    width: 90%;
  }
}

.pageFooter {
  background: #fff;
  padding: 70px 0;
  text-align: center;
}

.footLinks li {
  display: inline-block;
  margin-bottom: 5px;
  position: relative;
}
.footLinks li:after {
  content: "";
  width: 1px;
  height: 15px;
  background: #535353;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footLinks li:last-child:after {
  display: none;
}
.footLinks li a {
  display: block;
  margin: 0 20px;
  transition: all 0.3s ease;
}
.footLinks li a:hover {
  color: #ff0b28;
}

.footLinks .dropdown:hover .dropdown-menu {
  display: block;
  z-index: 1000;
}
.footLinks .dropdown-menu {
  margin: 0;
}
.footLinks .dropdown-menu a {
  margin: 0;
  padding: 5px 15px;
  font-size: 14px;
}

.socialLinks li {
  display: inline-block;
  margin: 0 3px;
}
.socialLinks li a {
  display: block;
  width: 30px;
  height: 30px;
  background: #111;
  padding: 8px;
  transition: all 0.3s ease;
}
.socialLinks li a:hover {
  background: #ff0b28;
}
.socialLinks li a img {
  width: 14px;
  height: 14px;
  display: block;
}

.footContent {
  font-size: 12px;
  color: #888;
}
.footContent a:hover {
  text-decoration: underline;
  color: #ff0b28;
}
.copyright {
  font-size: 14px;
}
.copyright a {
  color: #999;
}
.copyright a:hover {
  color: #ff0b28;
}

.enquiryFormContainer {
  padding: 15px 20px 5px;
  background: #003c7a;
  border: 1px solid #aaa;
}
.enquiryFormContainer .form-control {
  height: 45px;
}
.enquiryFormContainer .form-group label.error {
  background: #ec2024;
  font-size: 11px;
  color: #fff;
  padding: 3px 0.75rem;
  margin: 0;
  line-height: 1.2;
  border-radius: 0 0 5px 5px;
  display: block;
  text-align: left;
}
.enquiryFormContainer .form-control.error {
  background: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #ec2024;
}

.contactFixed {
  width: auto;
  height: auto;
  position: fixed;
  bottom: 40px;
  right: 50px;
  z-index: 50;
}
.contactFixed img {
  width: 35px;
  height: auto;
  margin: 6px;
  transition: all 0.2s ease-in-out;
}
.contactFixed a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
}

@media (min-width: 992px) {
  .form-control.messagetxtBox {
    height: 45px;
    min-height: 45px;
  }
  .form-control.messagetxtBox:focus {
    height: 100px;
  }
}
@media (max-width: 575.98px) {
  .footLinks li a {
    margin: 0 10px;
  }
  .contactFixed {
    bottom: 20px;
    right: 20px;
  }
}

.animateThis {
  position: relative;
  will-change: opacity transform;
}
.slide-left {
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -moz-transform: translate3d(50px, 0px, 0px);
  -webkit-transform: translate3d(50px, 0px, 0px);
  -o-transform: translate(50px, 0px, 0px);
  -ms-transform: translate(50px, 0px, 0px);
  transform: translate3d(50px, 0px, 0px);
}
.slide-left.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px, 0px);
  -ms-transform: translate(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.slide-right {
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -moz-transform: translate3d(-50px, 0px, 0px);
  -webkit-transform: translate3d(-50px, 0px, 0px);
  -o-transform: translate(-50px, 0px, 0px);
  -ms-transform: translate(-50px, 0px, 0px);
  transform: translate3d(-50px, 0px, 0px);
}
.slide-right.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px, 0px);
  -ms-transform: translate(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.slide-top {
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -moz-transform: translate3d(0px, 50px, 0px);
  -webkit-transform: translate3d(0px, 50px, 0px);
  -o-transform: translate(0px, 50px, 0px);
  -ms-transform: translate(0px, 50px, 0px);
  transform: translate3d(0px, 50px, 0px);
}
.slide-top.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px, 0px);
  -ms-transform: translate(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.fade-grow {
  opacity: 0;
  -moz-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}
.fade-grow.in-view {
  opacity: 1;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.fade-in {
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.fade-in.in-view {
  opacity: 1;
}
.fade-out {
  opacity: 1;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.fade-out.in-view {
  opacity: 0;
}

.animDelay250 {
  -moz-transition-delay: 250ms;
  -webkit-transition-delay: 250ms;
  -o-transition-delay: 250ms;
  transition-delay: 250ms !important;
}
.animDelay500 {
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms !important;
}
.animDelay750 {
  -moz-transition-delay: 750ms;
  -webkit-transition-delay: 750ms;
  -o-transition-delay: 750ms;
  transition-delay: 750ms !important;
}
.animDelay1000 {
  -moz-transition-delay: 1000ms;
  -webkit-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms !important;
}
.animDelay1250 {
  -moz-transition-delay: 1250ms;
  -webkit-transition-delay: 1250ms;
  -o-transition-delay: 1250ms;
  transition-delay: 1250ms !important;
}
.animDelay1500 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms !important;
}
.animDelay1750 {
  -moz-transition-delay: 1750ms;
  -webkit-transition-delay: 1750ms;
  -o-transition-delay: 1750ms;
  transition-delay: 1750ms !important;
}
.animDelay2000 {
  -moz-transition-delay: 2000ms;
  -webkit-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms !important;
}
.animDelay2250 {
  -moz-transition-delay: 2250ms;
  -webkit-transition-delay: 2250ms;
  -o-transition-delay: 2250ms;
  transition-delay: 2250ms !important;
}
.animDelay2500 {
  -moz-transition-delay: 2500ms;
  -webkit-transition-delay: 2500ms;
  -o-transition-delay: 2500ms;
  transition-delay: 2500ms !important;
}
.animDelay2750 {
  -moz-transition-delay: 2750ms;
  -webkit-transition-delay: 2750ms;
  -o-transition-delay: 2750ms;
  transition-delay: 2750ms !important;
}
.animDelay3000 {
  -moz-transition-delay: 3000ms;
  -webkit-transition-delay: 3000ms;
  -o-transition-delay: 3000ms;
  transition-delay: 3000ms !important;
}
.animDelay3250 {
  -moz-transition-delay: 3250ms;
  -webkit-transition-delay: 3250ms;
  -o-transition-delay: 3250ms;
  transition-delay: 3250ms !important;
}
.animDelay3500 {
  -moz-transition-delay: 3500ms;
  -webkit-transition-delay: 3500ms;
  -o-transition-delay: 3500ms;
  transition-delay: 3500ms !important;
}
.animDelay3750 {
  -moz-transition-delay: 3750ms;
  -webkit-transition-delay: 3750ms;
  -o-transition-delay: 3750ms;
  transition-delay: 3750ms !important;
}
.animDelay4000 {
  -moz-transition-delay: 4000ms;
  -webkit-transition-delay: 4000ms;
  -o-transition-delay: 4000ms;
  transition-delay: 4000ms !important;
}
.animDelay4250 {
  -moz-transition-delay: 4250ms;
  -webkit-transition-delay: 4250ms;
  -o-transition-delay: 4250ms;
  transition-delay: 4250ms !important;
}
.animDelay4500 {
  -moz-transition-delay: 4500ms;
  -webkit-transition-delay: 4500ms;
  -o-transition-delay: 4500ms;
  transition-delay: 4500ms !important;
}
.animDelay4750 {
  -moz-transition-delay: 4750ms;
  -webkit-transition-delay: 4750ms;
  -o-transition-delay: 4750ms;
  transition-delay: 4750ms !important;
}
.animDelay5000 {
  -moz-transition-delay: 5000ms;
  -webkit-transition-delay: 5000ms;
  -o-transition-delay: 5000ms;
  transition-delay: 5000ms !important;
}

.aboutHeroSection {
  width: 100%;
  height: calc(100vh - 70px);
  min-height: 500px;
  background: url(../images/skyline.jpg) center bottom repeat-x;
  background-size: 100% auto;
}
.aboutHeroSection .boldTitle {
  line-height: 1.5;
}
.aboutHeroSection .boldTitle small {
  padding-top: 20px;
}

@media (max-width: 575.98px) {
  .aboutHeroSection {
    background-size: 200% auto;
  }
}

.clientSection {
  background: #fff;
  padding-bottom: 70px;
}
.clientSection .clientHead {
  font-size: 18px;
}
.clientScroll {
  padding-bottom: 30px;
}
.clientScroll .clientBox {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  position: relative;
}
.clientScroll .clientBox img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  transition: all 0.3s ease;
}

.clientScroll .swiper-slide:nth-child(2) .clientBox {
  transition-delay: 0.1s;
}
.clientScroll .swiper-slide:nth-child(3) .clientBox {
  transition-delay: 0.2s;
}
.clientScroll .swiper-slide:nth-child(4) .clientBox {
  transition-delay: 0.3s;
}
.clientScroll .swiper-slide:nth-child(5) .clientBox {
  transition-delay: 0.4s;
}
.clientScroll .swiper-slide:nth-child(6) .clientBox {
  transition-delay: 0.5s;
}
.clientScroll .swiper-slide:nth-child(7) .clientBox {
  transition-delay: 0.6s;
}
.clientScroll .swiper-slide:nth-child(8) .clientBox {
  transition-delay: 0.7s;
}

@media (min-width: 991px) {
  .clientScroll .clientBox img {
    filter: grayscale(100%);
    opacity: 0.65;
  }
  .clientScroll .clientBox:hover img {
    opacity: 1;
    filter: grayscale(0);
  }
}

.subheadTitle {
  font-size: 40px;
}
@media (max-width: 767.98px) {
  .subheadTitle {
    font-size: 24px;
  }
}

.howbeganSection {
  padding-bottom: 70px;
  padding-top: 70px;
}

.wherenowSection {
  background: #fff3f3;
  padding-bottom: 70px;
  padding-top: 70px;
}
.serviceInfo {
  padding-left: 30px;
  position: relative;
  z-index: 1;
}
.serialNo {
  font-size: 20px;
  color: #ff0b28;
  line-height: 1;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: -1;
}

.visionSection {
  background: #bae0ff;
  padding-bottom: 70px;
  padding-top: 70px;
}

.activityList li {
  position: relative;
  padding-left: 50px;
  padding-right: 30px;
  margin-bottom: 30px;
  display: block;
  font-weight: 500;
}
.activityList img {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  left: 0;
}

.partnerHeroSection {
  width: 100%;
  height: calc(100vh - 70px);
  min-height: 600px;
  background: url(../images/dnaStrand.png) center bottom repeat-x;
  background-size: 100% auto;
}
.partnerHeroSection .boldTitle {
  line-height: 1.4;
}

.partnerHerotxt {
  border-left: 2px solid #ff0b28;
  overflow: hidden;
}

.offeringSection {
  background: #fff3f3;
  padding-bottom: 70px;
  padding-top: 70px;
}

.offeringList li {
  margin-bottom: 20px;
}

.offerBox {
  height: 100%;
  padding: 15px;
  transition: all 0.3s ease;
  border-radius: 5px;
  background: transparent;
}
.offerBox:hover {
  background: #004780;
  color: #fff;
}
.offerNo {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50px;
  font-size: 20px;
  line-height: 1.2;
  color: #ff0b28;
  font-weight: 700;
}
.offerNo img,
.offerNo svg {
  width: 35px;
  height: auto;
  fill: #333333;
  transition: fill 0.3s ease;
}
.offerBox:hover .offerNo svg {
  fill: #fff;
}

@media (min-width: 1200px) {
  .offeringList li:nth-child(3n + 2) {
    transition-delay: 0.1s;
  }
  .offeringList li:nth-child(3n + 3) {
    transition-delay: 0.2s;
  }
}

@media (min-width: 991px) {
  .offeringList li:nth-child(2n + 2) {
    transition-delay: 0.1s;
  }
}

@media (max-width: 991.98px) {
  .partnerHeroSection {
    height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767.98px) {
  .offerBox {
    padding: 15px;
  }
}

.acpopClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  z-index: 10;
}
.acpopTC {
  font-size: 14px;
}
.acpopTC ul {
  margin-top: 10px;
}
.acpopTC ul li {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}
.acpopTC ul li:before {
  width: 5px;
  height: 5px;
  background: #ff0b28;
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  border-radius: 50%;
}
.acpopTC a {
  color: #ff0b28;
}
.acpopTC a:hover {
  text-decoration: underline;
}

.popTCArrow {
  width: 8px;
  height: 8px;
  display: inline-block;
}
[aria-expanded="true"] .popTCArrow {
  transform: rotate(90deg);
}

.pricingSection {
  margin-top: 100px;
}
.pricingTableHolder {
  position: relative;
  padding: 15px;
}

.pricingTable {
  z-index: 1;
  position: relative;
}
.planOptionName {
  font-size: 24px;
}
.planImg {
  width: 100px;
  height: auto;
  display: block;
  margin: -80px auto 20px;
}

.ultra {
  background: #003c7a;
  color: #fff;
  border: 1px solid #024386;
}
.regular {
  background: #444444;
  color: #fff;
  border: 1px solid #ddd;
}

.pricingTable {
}
.pricingTable .particularDetails {
  border-bottom-width: 0;
  border-top-width: 0;
}
.pricingTable .row {
  z-index: 1;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.pricingTable .row:first-child .particularDetails {
  border-radius: 10px 10px 0 0;
  border-top-width: 1px;
}
.pricingTable .row:last-child .particularDetails {
  border-radius: 0 0 10px 10px;
  border-bottom-width: 1px;
}

.particular {
  height: 100%;
  padding: 25px 15px;
  width: 100%;
  display: inline-block;
  font-weight: 500;
  text-align: right;
}
.particularDetails {
  padding: 25px 15px;
  height: 100%;
  position: relative;
}
.intableHead {
  color: #fff;
  background: #ff0b28;
  padding: 3px;
}

.decimalList {
  margin-left: 20px;
}
.decimalList li {
  list-style-type: decimal;
  margin-bottom: 15px;
}
.decimalList a {
  color: #ff0b28;
  text-decoration: none;
}
.decimalList a:hover {
  text-decoration: underline;
}

@media (min-width: 992px) {
  .pricingTable .row:not(:first-child):hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    border-radius: 10px;
  }
  .pricingTable .row:hover .particular {
    color: #ff0b28;
  }

  .particularDetails:before {
    width: auto;
    height: 1px;
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    content: "";
    display: block;
  }
  .pricingTable .row:first-child .particularDetails:before {
    display: none;
  }
  .particularDetails.ultra:before {
    background: #024386;
  }
  .particularDetails.regular:before {
    background: #4a4a4a;
  }
}

@media (max-width: 991.98px) {
  .pricingTableHolder {
    padding: 15px 0;
  }
  .particular {
    height: 100%;
    padding: 6px 15px;
    width: 100%;
    display: block;
    font-weight: 500;
    text-align: center;
    background: #ddd;
    color: #ff0b28;
    font-size: 14px;
    box-shadow: 0 3px 4px -1px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 767.98px) {
  .pricingTable .row > div {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575.98px) {
  .pricingTable .row > div {
    padding-left: 0;
    padding-right: 0;
  }
  .planOptionName {
    font-size: 20px;
  }
  .pricingTable .particularDetails {
    font-size: 14px;
  }
  .planImg {
    width: 80px;
    height: auto;
    display: block;
    margin: -60px auto 20px;
  }
}

.tutorialVideo {
  border: 3px solid #333;
  background: #f6f6f6;
}
.tvIframeHolder {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.tvIframeHolder .tvIframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tutorialBacklink:hover {
  color: #ff0b28;
}
