@import url(https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap);

:root {
  --rt-blue: #4475ba;
  --rt-dark-blue: #274268;
  --rt-light-blue: #d2deee;
  --rt-lighter-gray: #f2f2f2;
  --rt-grey: #555555;
  --rt-yellow: #f5ea3b;
  --rt-dark-yellow: #eeb61e;
  --rt-gunmetal: #0d303e;
  --white: #fff;
  --text-dark: #1f1f1f;
  --text-rt-light-grey: #6d6b83;
  --body-bg: #fbfbfc;
  --font-barlow: "Barlow", sans-serif;
  --font-DM-Sans: "DM Sans", sans-serif;
  --section-spacing-top: 3.75rem;
  --section-spacing-bottom: 3.75rem;
  --Angular-gradient: linear-gradient(90deg, #a722fe 0%, #fa0233 92.04%);
  --Vue-gradient: linear-gradient(115deg, #40cc8a 7.94%, #5680ed 30.26%);
  --rt-errors: #c02b0a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none !important;
}

body {
  background-color: var(--body-bg) !important;
  font-family: var(--font-barlow) !important;
  color: var(--text-dark) !important;
  font-size: 16px;
  line-height: normal;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a,
a:focus,
a:hover,
a:visited,
span {
  display: inline-block;
}

a,
a:focus,
a:hover,
a:visited {
  color: inherit !important;
  text-decoration: none;
  cursor: pointer;
  outline: 0 !important;
  box-shadow: none;
}

.font-DM-Sans,
.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-DM-Sans);
}

.font-Barlow,
body {
  font-family: var(--font-barlow);
}

.h1,
h1 {
  font-size: 2rem !important;
}

.h2,
h2 {
  font-size: 1.75rem !important;
}

.h3,
h3 {
  font-size: 1.5rem !important;
}

.h4,
h4 {
  font-size: 1.25rem !important;
}

.h5,
h5 {
  font-size: 1.125rem !important;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
  font-weight: 700 !important;
}

.h2,
.h3,
h2,
h3 {
  line-height: 2.875rem;
}

.h4,
.h5,
h4,
h5 {
  font-weight: 600 !important;
  line-height: normal;
}

.text-14 {
  font-size: 14px;
}

.text-18 {
  font-size: 1.125rem;
}

.fw-600 {
  font-weight: 600;
}

.section-heading-description {
  font-size: 1.125rem;
  font-weight: 500;
}

.text-gunmetal {
  color: var(--rt-gunmetal);
}

p {
  margin-bottom: 0;
}

.custom-container,
.custom-container-sm {
  margin-left: auto;
  margin-right: auto;
  padding-inline: 15px;
}

.custom-container {
  max-width: 1122px;
}

.custom-container-sm {
  max-width: 1052px !important;
}

.padding-top,
.section-padding {
  padding-top: var(--section-spacing-top);
}

.padding-bottom,
.section-padding {
  padding-bottom: var(--section-spacing-bottom);
}

.margin-top {
  margin-top: var(--section-spacing-top);
}

.margin-bottom {
  margin-bottom: var(--section-spacing-bottom);
}

.rt-btn {
  border-radius: 10px !important;
  padding: 12px 23px !important;
  font-size: 16px !important;
  font-family: var(--font-DM-Sans) !important;
  font-weight: 500 !important;
  line-height: 24px !important;
  text-decoration: none !important;
  min-width: fit-content;
  transition: all 0.3s ease-in-out;
}

.rt-btn-primary,
a.rt-btn-primary {
  background-color: var(--rt-dark-blue) !important;
  color: var(--white) !important;
  border: 1px solid var(--rt-dark-blue) !important;
}

.rt-btn-primary:hover,
a.rt-btn-primary:hover {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(39, 66, 104, 0.4);
  -moz-box-shadow: 0px 0px 10px 2px rgba(39, 66, 104, 0.4);
  box-shadow: 0px 0px 10px 2px rgba(39, 66, 104, 0.4);
}

.rt-btn-secondary,
a.rt-btn-secondary {
  background-color: transparent !important;
  color: var(--rt-dark-blue) !important;
  border: 1px solid var(--rt-dark-blue) !important;
}

.rt-btn-secondary:hover,
a.rt-btn-secondary:hover {
  background-color: var(--rt-dark-blue) !important;
  color: var(--white) !important;
  border: 1px solid var(--rt-dark-blue) !important;
}

.rt-btn-yellow,
a.rt-btn-yellow {
  background-color: var(--rt-dark-yellow) !important;
  color: var(--rt-gunmetal) !important;
  border: 1px solid var(--rt-dark-yellow) !important;
}

.rt-btn-yellow:hover,
a.rt-btn-yellow:hover {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(238, 182, 30, 0.4);
  -moz-box-shadow: 0px 0px 10px 2px rgba(238, 182, 30, 0.4);
  box-shadow: 0px 0px 10px 2px rgba(238, 182, 30, 0.4);
}

.dark-bg {
  background-color: #0d1623;
}

.dark-bg,
.dark-bg h1,
.dark-bg h2,
.dark-bg h3 {
  color: var(--white);
}

.bg-img,
.o-contain,
.o-cover {
  width: 100%;
  height: 100%;
}

.bg-img {
  position: absolute;
  inset: 0;
}

.bg-img,
.o-cover {
  object-fit: cover;
}

.o-contain {
  object-fit: contain;
}

.gradient1 {
  background: linear-gradient(
    90deg,
    #dee2e8 -14.85%,
    #fff 49.2%,
    #e3e9f3 116.04%
  );
}

.gradient2 {
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(251, 251, 252, 0.2) 100%
    ),
    linear-gradient(
      143deg,
      rgba(224, 232, 240, 0.5) 8.16%,
      rgba(234, 245, 245, 0.6) 26.06%,
      #fbfbfc 61.9%
    );
}

.gradient3 {
  background: linear-gradient(
    90deg,
    #e9eef5 -11.98%,
    #fbfbfc 54.34%,
    #e8eff1 115.56%
  );
}

.text-rt-blue {
  color: var(--rt-blue);
}

.text-rt-dark-blue {
  color: var(--rt-dark-blue);
}

.text-rt-dark-yellow {
  color: var(--rt-dark-yellow);
}

.text-rt-light-grey {
  color: var(--text-rt-light-grey);
}

.text-rt-error {
  color: var(--rt-errors);
}

.card-icon-blue {
  background: linear-gradient(180deg, #4475ba 0%, #274268 100%);
}

.card-icon-green {
  background: linear-gradient(180deg, #237c82 0.15%, #92b8ba 129.67%);
}

.card-icon-yellow {
  background: linear-gradient(180deg, #eeb61e 0.09%, #a4bab7 218.21%);
}

.slick-slide {
  height: unset !important;
}

@media (min-width: 992px) {
  .h1,
  h1 {
    font-size: 3rem !important;
  }

  .h2,
  h2 {
    font-size: 2.375rem !important;
  }

  .h3,
  h3 {
    font-size: 2rem !important;
  }

  .h4,
  h4 {
    font-size: 1.75rem !important;
  }

  .h5,
  h5 {
    font-size: 1.375rem !important;
  }

  h6 {
    font-size: 1rem !important;
  }
}

/*-- header-start --*/
body.navbar-open {
  overflow: hidden;
}

header {
  background: rgba(255, 255, 255, 0.8);
  color: var(--rt-grey);
  font-family: var(--font-DM-Sans);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-size: 18px;
  backdrop-filter: blur(3px);
}

body.admin-bar header {
  top: 30px;
}

body.admin-bar header nav {
  padding: 19px 0;
}

header ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

header a {
  text-decoration: none;
}

header .logo img {
  width: 120px;
}

header .rt-navbar-toggler {
  background: transparent;
  border: none;
  width: 50px;
  height: 50px;
  display: inline-block;
  position: relative;
}

header .rt-navbar-toggler span {
  position: absolute;
  display: block;
  height: 2px;
  background: var(--rt-dark-blue);
  width: 30px;
  left: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

header .rt-navbar-toggler span:nth-child(1) {
  top: 16px;
}

header .rt-navbar-toggler span:nth-child(2) {
  top: 24px;
}

header .rt-navbar-toggler span:nth-child(3) {
  top: 32px;
}

header .rt-navbar-toggler.open span:nth-child(1) {
  top: 25px;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

header .rt-navbar-toggler.open span:nth-child(2) {
  background: transparent;
}

header .rt-navbar-toggler.open span:nth-child(3) {
  top: 25px;
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

header .menu-header-menu-container {
  width: 100%;
}

header .menu .menu-item:not(.sub-menu .menu-item):not(.rt-btn) > a::after {
  content: "\2193";
  color: inherit;
  position: relative;
  margin-inline: 4px;
  vertical-align: middle;
  font-size: 14px;
}

header .menu-item {
  position: relative;
}

header .menu-item .sub-menu {
  height: 0;
  overflow: hidden;
}

header .menu-item a.sub-menu-open + .sub-menu {
  height: auto;
}

@media (min-width: 992px) {
  header .rt-navbar-toggler {
    display: none;
  }

  header .menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header .navbar-menu {
    display: block;
  }

  header .navbar-menu {
    width: 100%;
  }

  header .menu .menu-item:not(.sub-menu .menu-item):not(.rt-btn):hover {
    color: var(--rt-blue) !important;
  }

  header .menu .menu-item:not(.sub-menu .menu-item):first-of-type {
    margin-left: auto;
  }

  header .menu .menu-item:not(.sub-menu .menu-item):not(:last-of-type) {
    margin-right: 20px;
  }

  header .menu-item .sub-menu {
    position: absolute;
    width: 270px;
    background: rgba(13, 48, 62, 0.9);
    color: var(--white);
    padding: 12px 23px;
    top: -500%;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5 all ease-in-out;
    border-radius: 10px;
    max-height: 400px;
    overflow: auto;
    visibility: none;
  }

  header .menu-item .sub-menu a {
    width: 100%;
    padding: 5px;
  }

  header .menu-item .sub-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }

  header .menu-item a.sub-menu-open + .sub-menu,
  header .menu-item:hover .sub-menu,
  header .sub-menu:hover {
    top: 100%;
    -webkit-box-shadow: 1px 0px 22px 1px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 1px 0px 22px 1px rgba(255, 255, 255, 0.2);
    box-shadow: 1px 0px 22px 1px rgba(255, 255, 255, 0.2);
  }

  header .menu-item:hover .sub-menu,
  header .sub-menu:hover {
    height: auto;
    visibility: visible;
  }
}

@media (min-width: 1200px) {
  header .menu .menu-item:not(.sub-menu .menu-item):not(:last-of-type) {
    margin-right: 45px;
  }
}

@media (max-width: 992px) {
  .navbar-menu {
    position: absolute;
    padding: 12px 23px;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100dvh - 100px);
    overflow: auto;
    background: rgba(13, 48, 62, 0.9);
    color: var(--white);
    transition: 1s all ease-in-out;
    transform: translateY(-150%);
  }

  header.navbar-open .navbar-menu {
    transform: translateY(0);
  }

  header .menu .menu-item:not(.rt-btn) {
    width: 100%;
  }

  header .menu .menu-item {
    padding: 10px 20px;
  }

  header .menu .menu-item.rt-btn {
    margin-top: 12px;
    width: fit-content;
  }

  header .menu .menu-item:not(:last-of-type, .rt-btn) {
    border-bottom: 1px solid #fff;
  }
}

/*-- header-end --*/
/*-- footer-start --*/

footer {
  padding-top: 47px;
  padding-bottom: 34px;
  font-size: 14px;
  color: #1f1f1f;
  font-weight: 500;
}
footer .footer-logo {
  max-height: 22px;
  object-fit: contain;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: var(--rt-blue) !important;
}

footer .social-media-wrapper li:not(:last-of-type) {
  margin-right: 10px;
}

footer .social-media-wrapper li a img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

footer address span {
  font-size: 16px;
  font-weight: 700;
}

footer address span a.text-rt-blue {
  color: var(--rt-blue) !important;
}
/*-- footer-end --*/

/*-- hero-banner-start --*/

.hero-banner-section.home-page {
  border-radius: 30px;
  overflow: hidden;
  margin: 0 20px;
  border: 1px solid #eff2f7;
}

.hero-banner-section.home-page .content {
  margin-inline: auto;
  position: relative;
  z-index: 3;
}

.hero-banner-section.home-page .content {
  max-width: 540px;
}

.hero-banner-section.home-page h1 {
  margin-bottom: 3rem;
}

.hero-banner-section.home-page h1 span {
  line-height: inherit;
}

.hero-banner-section.home-page .slick-list {
  overflow: visible;
}

.hero-banner-section.home-page .slick-track {
  width: fit-content !important;
  display: inline-block;
}

.hero-banner-section.home-page .slick-slide {
  display: inline;
}

.hero-banner-section.home-page .slick-slide:not(.slick-active) {
  display: none;
}

.hero-banner-section.home-page .slick-slide.slick-active {
  animation: fadeIn 1000ms;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-banner-section.home-page {
  background-color: rgba(68, 117, 186, 0.1);
}

@media (min-width: 767px) {
  .hero-banner-section.home-page {
    margin: 0 20px;
  }

  .hero-banner-section.home-page .content {
    margin-bottom: 400px;
  }
}

/*-- hero-banner-end --*/
/*-- rt-counter-section-start --*/

.rt-counter-section .rt-counter-wrapper,
.dark-bg-block-section .block-wrapper {
  background-color: #0d1623;
  color: var(--white);
  padding: 60px 30px;
  border-radius: 20px;
}

.rt-counter-section .counter-content {
  position: relative;
  z-index: 2;
  font-weight: 400;
}

.rt-counter-wrapper .counter-content .h2 {
  line-height: 34px;
  margin-bottom: 7px;
}

.rt-counter-section .counter-content p {
  margin-bottom: 0;
}

/*-- rt-counter-section-end --*/
/*-- client-logo-section-start --*/

.client-logo-section h2 {
  max-width: 531px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.client-logo-section .logo-wrapper img {
  filter: grayscale(1) contrast(0.1);
  transition: 0.3s;
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  max-height: 30px;
}

.client-logo-section .logo-wrapper img:hover {
  filter: none;
}

/*-- client-logo-section-end --*/
/*-- top-icon-card-section-start --*/
.top-icon-card-section {
  background: linear-gradient(
    90deg,
    #dee2e8 -14.85%,
    #fff 49.2%,
    #e3e9f3 116.04%
  );
}

.top-icon-card-section h2 {
  margin-bottom: 44px;
  margin-inline: auto;
}

.top-icon-card-section .card-wrapper {
  margin-bottom: 50px;
}

.top-icon-card-section .icon-card,
.top-icon-card-section p {
  font-weight: 500;
}

.top-icon-card-section .icon-card {
  border-radius: 23px;
  border: 1.32px solid #f3f3f3;
  background-color: var(--white);
  box-shadow: 0 17px 40px 4px rgba(112, 114, 176, 0.11);
  color: var(--rt-gunmetal);
  padding: 0 30px 30px;
  margin-top: 45px;
  text-align: center;
  height: calc(100% - 45px);
}

.top-icon-card-section .icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  margin-bottom: -20px;
  border: 4px solid #fff;
  filter: drop-shadow(0px 20.695px 28.742px rgba(113, 116, 152, 0.05));
}

.top-icon-card-section .rt-btn {
  margin-top: 48px;
}

/*-- top-icon-card-section-end --*/
/*-- side-tab-content-section-start --*/

.side-tab-content-wrapper .nav-link {
  color: rgba(255, 255, 255, 1) !important;
  position: relative;
  padding: 0 0 0 50px;
  margin: 0;
  text-align: left;
  line-height: 25px;
}

.side-tab-content-wrapper .nav-link:not(.active) {
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

.side-tab-content-wrapper .nav-link:not(:last-of-type) {
  margin-bottom: 38px;
}

.side-tab-content-wrapper .nav-link::before {
  content: " ";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #6e838b;
  display: inline-block;
  vertical-align: middle;
  left: 0;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.side-tab-content-wrapper .nav-link.active::before {
  background-color: #fff;
}

.side-tab-content-wrapper .nav-link.active::before {
  transform: translateX(-50%) translateY(-50%) scale(1.45);
}

.side-tab-content-wrapper .nav-link::after {
  content: " ";
  position: absolute;
  border-left: 1px dotted rgba(255, 255, 255, 0.4);
  height: calc(100% + 38px);
  display: inline-block;
  left: 0;
  transform: translateX(-50%);
  top: 50%;
}

.side-tab-content-wrapper .nav-link:last-of-type::after {
  display: none;
}

.side-tab-content-wrapper .nav-link:first-of-type {
  vertical-align: baseline;
}

.rt-side-image-wrapper .side-image-wrapper h3,
.side-tab-content-wrapper .tab-pane .h1 {
  line-height: normal;
}

.side-tab-content-wrapper .tab-pane .h1 {
  font-weight: 600 !important;
}

.side-tab-content-wrapper .tab-content img {
  max-height: 400px;
}

@media (min-width: 992px) {
  .side-tab-content-wrapper .tab-content img {
    max-width: 350px;
    max-height: 320px;
  }

  /* .side-tab-content-wrapper .tab-content  {
    min-height: 350px;
  } */
}

@media (max-width: 992px) {
  .side-tab-content-wrapper .tab-content img {
    margin-block: 30px;
    max-height: 200px;
  }
}

/*-- side-tab-content-section-end --*/
/*-- rt-tech-logo-slider-section-start --*/
.rt-tech-logo-slider-section h2 {
  margin-bottom: 12px;
}

.rt-tech-logo-slider {
  height: auto;
}

.rt-tech-logo-slider .slick-slide {
  margin-inline: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 30px;
  height: 100% !important;
  max-width: 100px;
}

.rt-tech-logo-slider .slick-slide div {
  max-height: 30px;
  margin-block: auto;
}

.rt-tech-logo-slider .slick-slide img {
  transition: 0.3s;
  max-height: 30px;
}

.rt-tech-logo-slider-section .rt-btn {
  margin-top: 50px;
}

.rt-tech-logo-slider-section .rt-btn i {
  font-size: 10px;
  vertical-align: middle;
  margin-left: 8px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .rt-tech-logo-slider .slick-slide {
    margin-inline: 60px;
  }
}

/*-- rt-tech-logo-slider-section-end --*/
/*-- rt-icon-card-wrapper-start --*/

.rt-icon-card-wrapper .icon-card {
  background: var(--white) !important;
  border-radius: 16px;
  padding: 28px 32px;
}

.rt-icon-card-wrapper .icon {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 21px;
}

.rt-icon-card-wrapper .sub-title,
.rt-icon-card-wrapper .title {
  font-family: var(--font-DM-Sans);
}

.rt-icon-card-wrapper .title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.rt-icon-card-wrapper .sub-title {
  font-weight: 300;
  margin-bottom: 4px;
}

/*-- rt-icon-card-wrapper-end --*/
/*-- rt-side-image-wrapper-start --*/
.rt-side-image-wrapper {
  border-radius: 20px;
  padding: 30px;
}

.rt-side-image-wrapper .side-image-wrapper:not(:last-of-type) {
  margin-bottom: 60px;
}

.rt-side-image-wrapper .side-image-wrapper p {
  line-height: 30px;
}

.rt-side-image-wrapper .side-image-wrapper .image-wrapper img {
  max-height: 400px;
  display: block;
  margin: auto;
  max-width: 300px;
  object-fit: contain !important;
}

@media (min-width: 768px) {
  .rt-side-image-wrapper {
    padding: 60px 80px;
  }
}

@media (min-width: 992px) {
  .rt-side-image-wrapper .side-image-wrapper:nth-of-type(2n) {
    flex-direction: row-reverse;
    text-align: end;
  }
}

@media (max-width: 992px) {
  .rt-side-image-wrapper .side-image-wrapper {
    flex-direction: column-reverse;
  }
}

/*-- rt-side-image-wrapper-end --*/
/*-- client-project-slider-wrapper-start --*/
.client-project-slider-wrapper .slick-list {
  border-radius: 20px;
  overflow: hidden;
}

.client-project-slider-wrapper .slick-track {
  background: rgba(68, 117, 186, 0.1);
}

.client-project-slider-wrapper .slide {
  width: 100%;
}

.client-project-slider-wrapper button.slick-next,
.client-project-slider-wrapper button.slick-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid rgba(31, 31, 31, 0.1);
  background-color: transparent;
  cursor: pointer;
}

.client-project-slider-wrapper button.slick-next {
  right: 10px;
}

.client-project-slider-wrapper button.slick-prev {
  left: 10px;
}

.client-project-slider-wrapper .slick-dots {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  position: absolute;
  align-items: center;
  bottom: 20px;
  left: 40px;
  gap: 5px;
  z-index: 2;
}

.client-project-slider-wrapper .slick-dots li {
  display: inline-block;
}

.client-project-slider-wrapper .slick-dots button {
  padding: 0;
  margin: 0;
  background-color: var(--rt-dark-blue);
  width: 12px;
  height: 4px;
  border: none;
  color: transparent;
  overflow: hidden;
  border-radius: 30px;
  display: inline-block;
  opacity: 0.6;
}

.client-project-slider-wrapper .slick-dots .slick-active button {
  width: 18px;
  opacity: 1;
}

.client-project-slider-wrapper .featured-card {
  border-radius: 20px;
  padding: 15px;
}

.client-project-slider-wrapper .featured-card p {
  color: var(--rt-dark-blue);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.client-project-slider-wrapper .featured-card .title {
  color: var(--rt-gunmetal);
  font-family: var(--font-DM-Sans);
  font-size: 34px;
  font-weight: 700;
}

.client-project-slider-wrapper .featured-card:not(:last-of-type) {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .client-project-slider-wrapper .featured-card:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .client-project-slider-wrapper .featured-card:last-of-type {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .client-project-slider-wrapper .slick-dots {
    bottom: 30px;
  }
}

@media (max-width: 767px) {
  .client-project-slider-wrapper .slide {
    padding-bottom: 40px !important;
  }
}

/*-- client-project-slider-wrapper-end --*/
/*-- rt-number-card-wrapper-start --*/
.rt-number-card-wrapper {
  counter-reset: card_number;
}

.rt-number-card-wrapper .number-card {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    309deg,
    #fafbfb -48.09%,
    #6d91c3 46.89%,
    #fff 172.24%
  );
  display: flex;
}

.rt-number-card-wrapper .number-card .content {
  background-color: #fff;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  height: 100%;
  padding: 40px 38px;
  overflow: hidden;
}

.rt-number-card-wrapper .number-card .content p {
  margin-bottom: 0;
}

.rt-number-card-wrapper .number-card .content::before {
  content: " ";
  inset: 0;
  position: relative;
  background: radial-gradient(
    151.92% 127.02% at 15.32% 21.04%,
    rgba(159, 197, 255, 0.1) 0,
    rgba(110, 191, 244, 0.02) 77.08%,
    rgba(70, 144, 212, 0) 100%
  );
  position: absolute;
  z-index: 2;
}

.rt-number-card-wrapper .number-card .content::after {
  counter-increment: card_number;
  content: counter(card_number);
  color: var(--rt-blue);
  opacity: 0.06;
  font-family: var(--font-DM-Sans);
  font-size: 300px;
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transform: translateY(52%);
  line-height: 0;
  z-index: 1;
}

/*-- rt-number-card-wrapper-end --*/
/*-- CTO-download-wrapper-start --*/

.CTO-download-wrapper .h1 {
  font-weight: 400 !important;
}

.CTO-download-wrapper {
  background: linear-gradient(#0d303e, #237c82);
  border-radius: 30px;
  overflow: hidden;
}

.CTO-download-wrapper .content {
  max-width: 615px;
  margin-inline: auto;
  padding: 68px 0;
  z-index: 2;
  position: relative;
}

.CTO-download-wrapper .content h3 {
  margin-top: 20px;
  margin-bottom: 48px;
}

.CTO-download-wrapper .gform_footer button {
  margin: 30px auto 10px auto !important;
}

.CTO-download-wrapper .gform_wrapper button span,
.CTO-download-wrapper a.rt-btn {
  position: relative;
}

.CTO-download-wrapper .gform_wrapper button span::after,
.CTO-download-wrapper a.rt-btn::after {
  content: "";
  position: relative;
  width: 6px;
  height: 6px;
  border-left: 2px solid var(--rt-dark-blue);
  border-top: 2px solid var(--rt-dark-blue);
  display: inline-block;
  transform: rotate(140deg);
  vertical-align: middle;
  margin-left: 8px;
}

/*-- CTO-download-wrapper-end --*/
/*-- hom-page-css --*/
.top-icon-card-section.home-page h2 {
  max-width: 872px;
}

.side-tab-content-section.home-page h2 {
  max-width: 771px;
  margin-inline: auto;
}
.note-wrapper {
  border-radius: 8px;
  border: 1px solid #ababab;
  background: rgba(242, 242, 242, 0.5);
  padding: 20px;
  line-height: normal;
  color: #000;
}
.note-wrapper .note-icon {
  margin-top: 2px;
}
.note-wrapper .content p:not(:first-of-type,:last-of-type)
{
  margin-bottom: 40px;
}
@media (min-width:767px)
{
  .note-wrapper
  {
    font-size: 18px;
  }
}