html {
  box-sizing: border-box;
}

body {
  color: #6e7c81;
  background: #fff;
  font: 16px/1.25 "Open Sans", Arial, Helvetica, sans-serif;
  min-width: 270px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: scrollbar;
  -webkit-user-drag: none;
  margin: 0;
  z-index: 1;
}

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

a {
  text-decoration: none;
}

p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

.mask {
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7882352941);
  z-index: 9999999;
  top: 0;
  left: 0;
}

.mask__showbox {
  position: absolute;
  top: 45%;
  bottom: 0;
  left: 0;
  right: 0;
}

.mask__loader {
  position: relative;
  margin: 0 auto;
  width: 60px;
}

.mask__loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.mask .circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.mask .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: #35f;
}

.mask__caption {
  /* background-image: url("/images/edge-pre-leader.png");
   background-size: contain;
   background-repeat: no-repeat;
   width: 22px;
   position: absolute;
   left: 50%;
   height: 22px;
   top: 50%;
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);*/
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.riq-ms-fr-cta {
  padding: 0.3em 1em;
  border-radius: 50px;
  line-height: 1;
  background-color: rgb(255, 135, 0);
  border: 2px solid rgb(255, 135, 0);
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-align: center;
  margin-top: 4px;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 6px 14px 0px;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background-image: none;
  display: inline-block;
}

/* header style */
.riq-ms-header {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: #f2f2f2;
}
.riq-ms-header--enable-sticky {
  transition: all 0.3s ease;
}
.riq-ms-header--enable-sticky.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  animation: slideDown 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.riq-ms-header__container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  position: relative;
  max-width: 1600px;
  width: 100%;
  margin: auto;
}
@media (min-width: 1200px) {
  .riq-ms-header__container {
    padding: 12px 25px 14px;
  }
}
@media (min-width: 1600px) {
  .riq-ms-header__container {
    padding: 15px 15px;
  }
}
.riq-ms-header--sticky {
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.5);
}
.riq-ms-header--sticky .riq-ms-header__logo {
  top: 0;
}
@media (min-width: 1440px) {
  .riq-ms-header--sticky .riq-ms-header__container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.riq-ms-header--sticky .riq-ms-header__navigation > li.active {
  color: #2bcb7a;
}
.riq-ms-header--sticky .riq-ms-header__navigation > li.active > a {
  color: #2bcb7a;
}
@media (min-width: 1024px) {
  .riq-ms-header--sticky .riq-ms-header__navigation > li > a {
    color: #051c2c;
  }
  .riq-ms-header--sticky .riq-ms-header__navigation > li > a:hover {
    color: #2bcb7a;
  }
}
.riq-ms-header {
  /* logo styles */
}
.riq-ms-header__logo {
  position: relative;
  display: block;
  width: 120px;
  top: 3px;
  transition: all 0.4s ease;
}
@media (min-width: 576px) {
  .riq-ms-header__logo {
    width: 140px;
  }
}
@media (min-width: 992px) {
  .riq-ms-header__logo {
    top: 0;
  }
}
@media (min-width: 1200px) {
  .riq-ms-header__logo {
    width: 160px;
  }
}
@media (min-width: 1280px) {
  .riq-ms-header__logo {
    width: 184px;
    top: 3px;
  }
}
.riq-ms-header__logo a {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.riq-ms-header__logo img {
  transition: all 0.4s ease;
  display: block;
  max-width: 100%;
  max-height: 49px;
  object-fit: contain;
  margin: 0 auto;
}
.riq-ms-header__main-nav {
  position: relative;
}
@media (min-width: 450px) {
  .riq-ms-header__main-nav {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
}
.riq-ms-header__main-nav:before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 1025px) {
  .riq-ms-header__main-nav:before {
    display: none;
  }
}
.nav-active .riq-ms-header__main-nav:before {
  opacity: 1;
  visibility: visible;
}
.riq-ms-header__main-nav .riq-ms-header__nav-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-right: 0;
  padding-top: 15px;
}
.riq-ms-header__main-nav .riq-ms-header__nav-cta .riq-ms-btn {
  max-width: 300px;
  width: 100%;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .riq-ms-header__main-nav .riq-ms-header__nav-cta {
    display: none;
  }
}
.riq-ms-header__main-nav {
  /* navigation alignment modifiers */
}
@media (min-width: 1024px) {
  .riq-ms-header__main-nav--left, .riq-ms-header__main-nav--center, .riq-ms-header__main-nav--right {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .riq-ms-header__main-nav--left .riq-ms-header__navigation {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .riq-ms-header__main-nav--center .riq-ms-header__navigation {
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .riq-ms-header__main-nav--right .riq-ms-header__navigation {
    justify-content: flex-end;
  }
}
.riq-ms-header__main-drop {
  background: #1d2237;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  transition: all 0.3s ease;
  padding: 23px 0;
  width: 100%;
  transform: translateY(-100%);
  z-index: 9;
}
@media (min-width: 1024px) {
  .riq-ms-header__main-drop {
    background: none;
    border: none;
    padding: 0;
    position: static;
    margin: 0 7px 0 0;
    overflow: visible;
    transition: none;
    transform: none;
    width: 100%;
  }
}
.nav-active .riq-ms-header__main-drop {
  margin: 0;
  box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .nav-active .riq-ms-header__main-drop {
    box-shadow: none;
  }
}
.resize-active .riq-ms-header__main-drop {
  transition: none !important;
  animation: none !important;
}
.riq-ms-header__navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
@media (min-width: 600px) {
  .riq-ms-header__navigation {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .riq-ms-header__navigation {
    font-size: 15px;
    font-weight: normal;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0;
  }
}
@media (min-width: 1280px) {
  .riq-ms-header__navigation {
    font-size: 16px;
  }
}
.riq-ms-header__navigation > li {
  text-align: center;
  border-bottom: 1px solid #323743;
}
@media (min-width: 1024px) {
  .riq-ms-header__navigation > li {
    border: none;
    padding: 15px 0;
    margin: 0 5px;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .riq-ms-header__navigation > li {
    margin: 0 9px;
  }
}
@media (min-width: 1440px) {
  .riq-ms-header__navigation > li {
    margin: 0 12px;
  }
}
.riq-ms-header__navigation > li.active {
  color: #2bcb7a;
}
.riq-ms-header__navigation > li.active > a {
  color: #2bcb7a;
}
@media (min-width: 992px) {
  .riq-ms-header__navigation > li:hover > a {
    color: #2bcb7a;
  }
}
@media (min-width: 1024px) {
  .riq-ms-header__navigation > li:hover .riq-ms-header__menu-dropdown {
    display: block;
  }
}
.riq-ms-header__navigation > li > a {
  display: block;
  color: #999;
  outline: none;
  padding: 24px 14px;
  text-align: center;
}
@media (min-width: 1024px) {
  .riq-ms-header__navigation > li > a {
    padding: 0;
    text-align: left;
  }
}
.riq-ms-header__navigation > li > a:hover {
  color: #2bcb7a;
}
.riq-ms-header {
  /* dropdown styles */
}
.riq-ms-header__menu-dropdown {
  position: relative;
  display: none;
  z-index: 5;
  min-width: 220px;
}
@media (min-width: 1024px) {
  .riq-ms-header__menu-dropdown {
    transform: translateX(-50%);
    position: absolute;
    top: 50px;
    left: 50%;
    width: 180px;
    padding: 0;
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.15);
  }
}
.riq-ms-header__dropdown-wrap {
  position: relative;
  background: #1d2237;
}
@media (min-width: 1024px) {
  .riq-ms-header__dropdown-wrap {
    background: #fff;
  }
}
.riq-ms-header__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  background: #1d2237;
  border-radius: 4px;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 8px;
  z-index: 3;
}
@media (min-width: 576px) {
  .riq-ms-header__dropdown-list {
    padding: 0 15px;
  }
}
@media (min-width: 1024px) {
  .riq-ms-header__dropdown-list {
    background: #fff;
    text-align: left;
    margin-bottom: 0;
  }
}
.riq-ms-header__dropdown-list li {
  position: relative;
  margin: 0;
}
.riq-ms-header__dropdown-list li:last-child {
  margin-bottom: 0;
}
.riq-ms-header__dropdown-list li a {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  padding: 0 0 22px;
  position: relative;
  color: #fff;
  display: block;
}
@media (min-width: 600px) {
  .riq-ms-header__dropdown-list li a {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .riq-ms-header__dropdown-list li a {
    font-size: 14px;
    color: #051c2c;
    padding: 10px 0;
  }
}
@media (min-width: 1200px) {
  .riq-ms-header__dropdown-list li a {
    font-size: 15px;
  }
}
.riq-ms-header__dropdown-list li a:hover {
  color: #25cad2;
}
.riq-ms-header {
  /* CTA buttons */
}
.riq-ms-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.riq-ms-header__right .riq-ms-header__nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 45px;
}
@media (min-width: 1024px) {
  .riq-ms-header__right .riq-ms-header__nav-cta {
    padding-right: 0;
  }
}
.riq-ms-header__right .riq-ms-header__nav-cta a:nth-child(2) {
  display: none;
}
@media (min-width: 576px) {
  .riq-ms-header__right .riq-ms-header__nav-cta a:nth-child(2) {
    display: inline-flex;
  }
}
.riq-ms-header {
  /* nav opener (hamburger) */
}
.riq-ms-header__nav-opener {
  width: 22px;
  height: 20px;
  border-top: 2px solid #2bcb7a;
  transition: all 0.3s ease;
  position: absolute;
  outline: none;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .riq-ms-header__nav-opener {
    display: none;
  }
}
.nav-active .riq-ms-header__nav-opener {
  border-color: #fff;
  border-top: none;
  right: 30px;
  top: 30px;
}
.riq-ms-header__nav-opener:before, .riq-ms-header__nav-opener:after {
  width: 22px;
  height: 2px;
  transition: all 0.4s ease;
  background: #2bcb7a;
  position: absolute;
  content: "";
  left: 0;
  top: 16px;
}
.nav-active .riq-ms-header__nav-opener:before, .nav-active .riq-ms-header__nav-opener:after {
  background: #fff;
  top: 9px;
  transform: rotate(45deg);
}
.riq-ms-header__nav-opener:after {
  top: 7px;
}
.nav-active .riq-ms-header__nav-opener:after {
  width: 22px;
  top: 9px;
  transform: rotate(-45deg);
}
.riq-ms-header__nav-opener:hover {
  border-top-color: #397ef4;
}
.riq-ms-header__nav-opener:hover:before, .riq-ms-header__nav-opener:hover:after {
  background: #397ef4;
}
.nav-active .riq-ms-header__nav-opener:hover:before, .nav-active .riq-ms-header__nav-opener:hover:after {
  background: #fff;
}

@media (max-width: 1023px) {
  body.nav-active {
    overflow: hidden !important;
  }
}
/* button styles */
.riq-ms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 15px;
  border-radius: 4px;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  outline: none;
}
@media (min-width: 768px) {
  .riq-ms-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}
@media (min-width: 1200px) {
  .riq-ms-btn {
    font-size: 15px;
    padding: 11px 24px;
  }
}
.riq-ms-btn--primary {
  background-color: #2bcb7a;
  border-color: #2bcb7a;
  color: #fff;
}
.riq-ms-btn--primary:hover {
  background-color: transparent;
  color: #2bcb7a;
}
.riq-ms-btn--secondary {
  background-color: transparent;
  border-color: #397ef4;
  color: #397ef4;
}
.riq-ms-btn--secondary:hover {
  background-color: #397ef4;
  color: #fff;
}

/* sticky header animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* contact tooltip panel*/
.riq-ms-header__contact-dropdown {
  position: relative;
  display: inline-block;
}
.riq-ms-header__contact-dropdown:hover .riq-ms-header__contact-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.riq-ms-header__contact-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease;
}
.riq-ms-header__contact-toggle i {
  color: #333;
  font-size: 16px;
}
.riq-ms-header__contact-toggle:hover {
  background: #f5f5f5;
}
.riq-ms-header__contact-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 16px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.riq-ms-header__contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
}
.riq-ms-header__contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.riq-ms-header__contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.riq-ms-header__contact-name {
  font-size: 15px;
  font-weight: 600;
  color: #051c2c;
  margin: 0;
}
.riq-ms-header__contact-title {
  font-size: 12px;
  color: #999;
  margin: 0;
  line-height: 1.4;
}
.riq-ms-header__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 4px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.riq-ms-header__contact-link i {
  color: #555;
  font-size: 14px;
  width: 16px;
  text-align: center;
}
.riq-ms-header__contact-link:hover {
  background: #f9f9f9;
  color: #000;
}
.riq-ms-header__contact-link:last-child {
  padding-bottom: 0;
}