@charset "utf-8";
/* CSS Document */

#page {
  overflow: hidden;
}
.ratio .full-img {
  min-width: initial;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  flex: 0 0 auto;
  display: flex;
}
.ratio .full-img img {
  flex: 1 1 auto;
  align-self: center;
  justify-self: center;
  object-fit: cover;
  height: 100%;
  min-width: 100%;
  width: auto;
}
.image-fit {
  min-width: initial;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  display: flex;
}
.image-fit img {
  flex: 1 1 auto;
  align-self: center;
  justify-self: center;
  object-fit: cover;
  height: 100%;
  min-width: 100%;
  width: auto;
}
.image-bg {
  min-width: initial;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  flex: 0 0 auto;
  display: flex;
  z-index: 10;
}
.image-bg img {
  flex: 1 1 auto;
  align-self: center;
  justify-self: center;
  object-fit: cover;
  height: 100%;
  min-width: 100%;
  width: auto;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.color-fff {
  color: var(--bs-white);
}
.color-000 {
  color: var(--bs-black);
}
.ui-datepicker.ui-widget {
  font-size: 14px !important;
}

ul.polygon-ul,
ul.checkmark-ul,
ul.checkmark-ul-primary {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
  gap: 15px;
}
ul.polygon-ul li,
ul.checkmark-ul li,
ul.checkmark-ul-primary li {
  line-height: 24px;
  position: relative;
  padding-left: 30px;
}
ul.polygon-ul li:before,
ul.checkmark-ul li:before,
ul.checkmark-ul-primary li:before {
  position: absolute;
  left: 0;
  top: 0;
}
ul.polygon-ul li:before {
  background-image: url(../images/theme-img/polygon-bullet.svg);
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  height: 24px;
  width: 15px;
}
ul.checkmark-ul li:before {
  content: "\e2e6";
  font-family: "Material Symbols Sharp";
  font-size: 24px;
}
ul.checkmark-ul-primary li:before {
  content: "\e2e6";
  font-family: "Material Symbols Sharp";
  font-size: 24px;
  color: var(--bs-primary);
}

.link-dark {
  color: var(--bs-black);
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-dark:hover {
  color: var(--bs-black);
  text-decoration: none;
}
.link-white {
  color: var(--bs-white);
  text-decoration: underline;
}
.link-white:hover {
  color: var(--bs-white);
  text-decoration: none;
}
.link-green {
  color: var(--bs-primary);
  text-decoration: underline;
}
.link-green:hover {
  color: var(--bs-primary);
  text-decoration: none;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid #d3d3d3;
  background: linear-gradient(0deg, var(--bs-white) 0%, var(--bs-white) 100%),
    rgba(27, 27, 27, 0.5);
  backdrop-filter: blur(20px);
}
.header .container-fluid {
  height: 118px;
  padding: 0 12px;
}
.header .logo img {
  width: 170px;
  height: auto;
}
.header .header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.header .header-right form {
  width: 150px;
}
.header .header-right form .form-control,
.header-right form .form-control:focus {
  border: none;
  border-radius: 40px;
  padding: 0 24px;
  font-size: 18px;
  height: 50px;
  color: var(--bs-black);
  background-color: var(--bs-light-2);
  font-weight: 600;
}
.header .header-right form .form-control::-moz-placeholder {
  color: var(--bs-black);
  opacity: 1;
}
.header .header-right form .form-control::placeholder {
  color: var(--bs-black);
  opacity: 1;
}
.header .header-right .btn {
  height: 50px;
  padding: 0 24px;
  font-size: 18px;
  white-space: nowrap;
}
.header .header-right .btn-link {
  text-decoration: none;
  color: var(--bs-black);
  text-transform: capitalize;
  font-weight: 600;
}
.header .header-right .btn-link:hover,
.header-right .btn-link:focus,
.header-right .btn-link:active {
  color: var(--bs-primary);
}
.header .header-right .btn-primary {
  margin-left: 16px;
}

.section {
  position: relative;
  padding: 100px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-dark {
  background-color: var(--bs-dark);
  color: var(--bs-white);
}
.container-fluid {
  position: relative;
  z-index: 100;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100%;
  width: 100%;
}
.section-sm {
  padding: 48px 0;
}
.section-lt {
  background: var(--bs-light);
}
.section-lt-2 {
  background: var(--bs-light-2);
}
.section-sky {
  background: var(--bs-sky);
}
.section-grad-lt {
  background: linear-gradient(0deg, #fff 0%, #fff 100%), var(--bs-light-2);
}
.container-fluid {
  padding: 0 12px;
  position: relative;
  z-index: 100;
}

.home-wrapper {
  background-color: var(--bs-dark);
  color: var(--bs-white);
  padding-top: 118px;
}
.home-section {
  padding: 100px 0;
}
.home-section-pb {
  padding-bottom: 200px;
}
.home-intro .content {
  border-radius: 1px;
  border-left: 2px solid var(--bs-primary);
  padding: 16px 24px;
}
.home-banner .container-fluid {
  height: 600px;
}
/*.home-banner .image-bg::before{ position:absolute; top: 0; right: 0; bottom: 0; left: 0; content: ''; opacity: 0.5; background: var(--bs-blue);}*/
.home-banner .play-btn {
  position: absolute;
  bottom: 6.75%;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  height: 100px;
  width: 100px;
  background-image: url(../images/theme-img/play.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 200;
  border-radius: 50%;
  overflow: hidden;
}

.latest-announcement {
  padding-bottom: 100px;
}
.announcement {
  padding: 32px 48px 0;
}
.announcement .icon {
  width: 48px;
  text-align: center;
  margin-right: 12px;
}

.counter-section .counter-content {
  border-radius: 1px;
  border-left: 2px solid var(--bs-primary);
  padding: 0 24px;
}

.PartnerSlider .logo-item {
  padding: 10px;
  height: 180px;
}
.PartnerSlider .logo-item img {
  max-height: 160px;
  width: auto;
}
.Slick-Slider {
  margin-left: -12px;
  margin-right: -12px;
}
.Slick-Slider .item {
  padding-left: 12px;
  padding-right: 12px;
}
.Control-Bottom .slick-dots {
  height: 70px;
  margin-top: 24px;
}
.Control-Bottom .slick-prev,
.Control-Bottom .slick-next {
  height: 70px;
  width: 70px;
  top: auto;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  bottom: 0;
}
.Control-Bottom .slick-prev {
  left: 30%;
}
.Control-Bottom .slick-next {
  right: 30%;
}
.Control-White .slick-prev,
.Control-White .slick-next {
  background: none;
  color: var(--bs-white);
  border-radius: 0;
}
.Control-White .slick-prev:hover,
.Control-White .slick-next:hover,
.Control-White .slick-prev:focus,
.Control-White .slick-next:focus {
  color: var(--bs-primary);
}
.Control-White .slick-dots li button,
.Control-White .slick-dots li.slick-active button {
  background-color: var(--bs-white);
}

.home-w3 .image-content .image-fit {
  height: 500px;
}
.home-w3 .image-content .image-fit::before,
.home-w3 .image-content .full-img::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  height: 70%;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(2, 13, 43, 0) 0%,
    rgba(2, 13, 43, 0.8) 100%
  );
}
.home-w3 .image-content .content {
  background-image: url(../images/theme-img/arrows-image-2.svg);
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 14%;
  padding-right: 24%;
  padding-left: 24px;
  padding-bottom: 0;
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 100;
}
.home-w3 .links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-w3 .links li + li {
  margin-top: 32px;
}
.home-w3 .links li a {
  color: var(--bs-white);
  text-decoration: none;
  padding: 10px 0 10px 24px;
  border-radius: 1px;
  border-left: 2px solid var(--bs-primary);
}
.home-w3 .links li a strong {
  white-space: nowrap;
  margin-left: 16px;
}
.home-w3 .links li a strong span {
  text-decoration: underline;
}
.home-w3 .links li a:hover strong {
  color: var(--bs-primary);
}

.home-w4 .nav-tabs {
  margin-bottom: 24px;
  border-bottom: 1px solid #5f5f5f;
  display: flex;
  flex-wrap: wrap;
}
.home-w4 .nav-tabs .nav-link {
  color: #c1c1c1;
  border-radius: 0;
  padding: 0;
  border: none;
  border-bottom: 2px solid transparent;
  font-weight: 400;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  width: 100%;
}
.home-w4 .nav-tabs .nav-link.active {
  color: var(--bs-primary);
  border-bottom: 2px solid var(--bs-primary);
  font-weight: 700;
  background: none;
}
.home-w4 .content {
  font-weight: 300;
  padding-bottom: 186px;
  background-image: url(../images/theme-img/arrows-image-2.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
}

.solutions-section {
  color: var(--bs-white);
}
.solutions-section .image-bg::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/theme-img/img-bg-ovelay-full.svg) no-repeat center;
  background-size: cover;
}
.solutions-section .title-400 {
  margin-bottom: 140px;
  text-align: center;
}
.solutions-section .item {
  display: flex;
  flex-direction: column;
  color: var(--bs-white);
  text-decoration: none;
  margin-top: 48px;
}
.solutions-section .item h3 {
  margin: 0;
  border-radius: 1px;
  border-left: 2px solid var(--bs-primary);
  padding-left: 24px;
}
.solutions-section .item .content {
  padding-left: 24px;
  padding-bottom: 48px;
  padding-top: 24px;
  position: relative;
  background-image: url(../images/theme-img/arrow_outward.svg);
  background-position: 24px bottom;
  background-repeat: no-repeat;
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}
.solutions-section .item .content:before {
  background-color: var(--bs-primary);
  width: 2px;
  left: 0;
  top: 0;
  height: 0;
  position: absolute;
  content: "";
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.solutions-section .item:hover .content {
  opacity: 1;
}
.solutions-section .item:hover .content:before {
  height: 100%;
}

.testimonial-section {
  color: var(--bs-white);
  background-color: var(--bs-dark);
}
.testimonial-section-lt {
  color: var(--bs-black);
  background-color: var(--bs-white);
}
.quote-item {
  position: relative;
  padding-top: 15px;
}
.quote-item:before {
  background-image: url(../images/theme-img/quote.svg);
  height: 30px;
  width: 35px;
  position: absolute;
  top: 0;
  left: 30px;
  content: "";
  z-index: 10;
}
.quote-item .content {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(50px);
  padding: 30px;
}
.quote-item .content .pb-4 {
  font-weight: 400;
}
.quote-item .content cite {
  font-style: normal;
  display: block;
}
.testimonial-section-lt .quote-item .content {
  background-color: var(--bs-light-2);
}
.testimonial-section-lt .quote-item .content .add-read-more .read-more,
.testimonial-section-lt .quote-item .content .add-read-more .read-less {
  color: var(--bs-black);
}

.testimonial-section-lt .Control-White .slick-prev,
.testimonial-section-lt .Control-White .slick-next {
  color: var(--bs-black);
}
.testimonial-section-lt .Control-White .slick-prev:hover,
.testimonial-section-lt .Control-White .slick-next:hover,
.testimonial-section-lt .Control-White .slick-prev:focus,
.testimonial-section-lt .Control-White .slick-next:focus {
  color: var(--bs-primary);
}
.testimonial-section-lt .Control-White .slick-dots li button,
.testimonial-section-lt .Control-White .slick-dots li.slick-active button {
  background-color: var(--bs-black);
}

.feature-highlight {
  color: var(--bs-white);
  background-color: var(--bs-dark);
}
.feature-highlight .post-item {
  color: var(--bs-white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.feature-highlight .post-item strong {
  white-space: nowrap;
}
.feature-highlight .post-item strong span {
  text-decoration: underline;
}
.feature-highlight .post-item:hover strong {
  color: var(--bs-primary);
}
.feature-highlight-lt {
  color: var(--bs-black);
  background-color: var(--bs-white);
}
.feature-highlight-lt .post-item {
  color: var(--bs-black);
}
.feature-highlight-lt .post-item:hover strong {
  color: var(--bs-primary);
}

.feature-highlight-lt .Control-White .slick-prev,
.feature-highlight-lt .Control-White .slick-next {
  background: none;
  color: var(--bs-vlack);
  border-radius: 0;
}
.feature-highlight-lt .Control-White .slick-prev:hover,
.feature-highlight-lt .Control-White .slick-next:hover,
.Control-White .slick-prev:focus,
.Control-White .slick-next:focus {
  color: var(--bs-primary);
}
.feature-highlight-lt .Control-White .slick-dots li button,
.feature-highlight-lt .Control-White .slick-dots li.slick-active button {
  background-color: var(--bs-black);
}

.latest-resources .nav-tabs {
  margin-bottom: 24px;
  border-bottom: 1px solid #5f5f5f;
  display: flex;
  flex-wrap: wrap;
}
.latest-resources .nav-tabs .nav-item {
  flex: 0 0 auto;
  width: 50%;
}
.latest-resources .nav-tabs .nav-link {
  color: #c1c1c1;
  border-radius: 0;
  padding: 0;
  border: none;
  border-bottom: 2px solid transparent;
  font-weight: 400;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  width: 100%;
}
.latest-resources .nav-tabs .nav-link.active {
  color: var(--bs-primary);
  border-bottom: 2px solid var(--bs-primary);
  font-weight: 700;
  background: none;
}

.cta-section .image-bg::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  opacity: 0.5;
  background: var(--bs-blue);
}
.cta-section .container-fluid {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.footer {
  background-color: var(--bs-dark);
  color: var(--bs-white);
  font-weight: 400;
}
.footer a {
  color: var(--bs-white);
  text-decoration: none;
}
.footer a:hover {
  color: var(--bs-primary);
  text-decoration: none;
}
.footer-top {
  padding: 72px 0 24px;
}
.footer-top h5 {
  margin-bottom: 24px;
  font-size: 22px;
  text-transform: uppercase;
}
.footer-top [class*="col-"] + [class*="col-"] {
  margin-top: 72px;
}
.footer-logo img {
  width: 220px;
}
.footer-top .second-level-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-top .second-level-menu .menu > li > a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 700;
}
.footer-top .second-level-menu .menu > li > a:hover {
  color: var(--bs-primary);
}
.footer-top .second-level-menu .menu > li + li {
  margin-top: 32px;
}
.footer-top .second-level-menu .menu > li ul {
  margin-top: 16px;
}
.footer-top .second-level-menu .menu > li ul li + li {
  margin-top: 6px;
}
.footer-top .single-menu {
  display: inline-flex;
  border-top: 1px solid #595959;
  min-width: 175px;
}
.footer-top .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-top .menu ul li + li {
  margin-top: 6px;
}
.footer-top .resourse-menu {
  margin-top: 100px;
}
.footer-top .footer-info {
  line-height: 1.35;
}
.footer-top .footer-info strong,
.footer-top .footer-info a {
  font-size: 18px;
}
.footer-top .footer-info a strong {
  font-weight: 500;
}
.footer-top .footer-info h6 {
  text-transform: uppercase;
  font-size: 18px;
}
.footer-bottom {
  border-top: 1px solid #595959;
  padding: 24px 0;
  font-weight: 400;
}
.footer-bottom .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-bottom .menu li + li:before {
  content: "|";
  margin: 0 8px;
  float: left;
}
.footer-bottom .social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-bottom .social a + a {
  margin-left: 24px;
}

.page-wrapper {
  padding-top: 118px;
}
.page-banner .content {
  padding: 32px 0;
}
.page-banner .play {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../images/theme-img/play.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.featured-asset-cta {
  padding-top: 80px;
  padding-bottom: 80px;
  color: var(--bs-white);
}
.featured-asset-cta .image-bg::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 17.32%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 23.52%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.8) 21.48%, rgba(0, 0, 0, 0) 70.96%);
}

.cost-tab-section .nav-tabs {
  margin-bottom: 24px;
  border-bottom: 1px solid #5f5f5f;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cost-tab-section .nav-tabs .nav-link {
  color: #c1c1c1;
  border-radius: 0;
  padding: 0;
  border: none;
  border-bottom: 2px solid transparent;
  font-weight: 400;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  width: 100%;
}
.cost-tab-section .nav-tabs .nav-link.active {
  color: var(--bs-primary);
  border-bottom: 2px solid var(--bs-primary);
  font-weight: 700;
  background: none;
}

.cost-tab-section .image-item .play {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../images/theme-img/play.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.cost-tab-section .number-content {
  border-left: 2px solid var(--bs-primary);
  padding-left: 32px;
}
.cost-tab-section .number-content + .bottom-content {
  padding-left: 32px;
}
.cost-tab-section .image-item .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
}
.cost-tab-section .image-item .content h2 {
  line-height: 1;
}

.tech-logo-section {
  background-image: url(../images/theme-img/counter-section-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/*.tech-logo-section .container{ max-width: 1208px;}*/
.tech-logo-section .logo-img {
  border-radius: 16px;
  background: var(--bs-white);
  padding: 10px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ecf9f4;
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.tech-logo-section .logo-img:hover {
  border-color: var(--bs-primary);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.container-content {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1516px;
  padding-left: 20px;
  padding-right: 20px;
}
.cta-sm {
  text-align: center;
}
.cta-sm .image-bg::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  opacity: 0.5;
  background: var(--bs-blue);
}
.cta-sm-no-overlay .image-bg::before {
  display: none;
}
.two-col-img-content {
  background: var(--bs-light);
}
.two-col-img-content [class*="col-"] + [class*="col-"] {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 35px;
}

.app-logos .logo-img {
  border-radius: 16px;
  border: 1px solid var(--bs-sky);
  background: var(--bs-white);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-tab-section .title,
.why-tab-section .tab-list {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.why-tab-section .nav-tabs {
  max-width: 900px;
  border: none;
  display: flex;
  flex-direction: column;
}
.why-tab-section .nav-tabs .nav-link {
  width: 100%;
  padding: 30px;
  border: none;
  border-left: 5px solid transparent;
  text-align: left;
  background: none;
  color: var(--bs-white);
  border-radius: 0;
}
.why-tab-section .nav-tabs .nav-link.active {
  border-left: 5px solid var(--bs-primary);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  color: var(--bs-white);
}
.why-tab-section .nav-tabs .nav-link p {
  height: 0;
  opacity: 0;
  pointer-events: none;
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.why-tab-section .nav-tabs .nav-link h4 {
  margin: 0;
  padding: 0;
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.why-tab-section .nav-tabs .nav-link.active p {
  height: auto;
  opacity: 1;
  pointer-events: auto;
}
.why-tab-section .nav-tabs .nav-link.active h4 {
  padding-bottom: 6px;
}
.why-tab-section .tab-content {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.why-tab-section .tab-content .image-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.why-tab-section .tab-content .image-bg:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 17.06%,
      rgba(0, 0, 0, 0) 70.96%
    ),
    linear-gradient(180deg, var(--bs-black) 7.68%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.newsletter div.tnp-subscription,
.newsletter form.tnp-subscription,
.newsletter form.tnp-profile {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 570px;
}
.newsletter form {
  display: flex;
  flex-direction: column;
}
.newsletter form .tnp-field-email {
  flex-grow: 1;
}
.newsletter form .tnp-field-button {
  flex-shrink: 0;
  margin-left: 0;
  text-align: center !important;
}
.newsletter .tnp-subscription input[type="email"] {
  border-radius: 0;
  border: 2px solid #c5c5c5;
  background: var(--bs-white);
  color: #020d2b;
  width: 100%;
  display: block;
  outline: 0;
  color: #020d2b;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 20px 32px;
}
.newsletter .tnp-field input[type="submit"] {
  background: var(--bs-primary);
  color: #020d2b;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: inline-flex;
  padding: 24px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  background: var(--bs-primary);
  width: 100%;
  max-width: 180px;
}

.why-hr-tab .nav-tabs {
  border: none;
  flex-direction: column;
  gap: 19px;
}
.why-hr-tab .nav-tabs .nav-link {
  border: none;
  border-top: 5px solid transparent;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  padding: 30px;
  width: 100%;
  color: var(--bs-white);
  margin: 0;
  font-weight: 700;
  text-align: left;
  line-height: 140%;
  border-radius: 0;
}
.why-hr-tab .nav-tabs .nav-link.active,
.why-hr-tab .nav-tabs .nav-link:hover {
  border: none;
  border-top: 5px solid var(--bs-primary);
}
.why-hr-tab .content {
  position: relative;
  z-index: 100;
}

.section-light .why-hr-tab .nav-tabs .nav-link {
  border: none;
  border-top: 5px solid transparent;
  background: var(--bs-light-2);
  backdrop-filter: blur(15px);
  padding: 29px 30px;
  width: 100%;
  color: var(--bs-black);
  margin: 0;
  font-weight: 700;
  text-align: left;
  line-height: 140%;
  border-radius: 0;
}
.section-light .why-hr-tab .nav-tabs .nav-link.active,
.why-hr-tab .nav-tabs .nav-link:hover {
  border: none;
  border-top: 5px solid var(--bs-primary);
}

.home-w4-5tab .box-content {
  border-left: 4px solid var(--bs-primary);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.home-w4-5tab .box-content h4 {
  margin: 0;
  font-weight: 500;
}

.quick-links-section .content {
  display: flex;
  flex-direction: column;
}
.quick-links-section .content ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.quick-links-section .content ul li {
  padding: 0 12px;
  flex: 0 0 auto;
  width: 100%;
  margin-top: 16px;
  font-weight: 700;
}
.quick-links-section .content ul li a {
  display: inline-flex;
  text-decoration: none;
  color: var(--bs-black);
  gap: 10px;
}
.quick-links-section .content ul li a:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.page-form small {
  font-size: 75%;
}

/*.contact-wrapper .contact-info-col{}
.contact-wrapper .contact-form-col, .form-dark  {background: #1B1B1B; color: var(--bs-white);}*/
.contact-form-col {
  padding: 48px;
}
.contact-info-col {
  padding: 48px 86px 48px 0;
}
.contact-wrapper .contact-info-col address {
  margin: 0;
  font-size: 16px;
  border-left: 2px solid var(--bs-primary);
  padding-left: 16px;
  line-height: normal;
}
.contact-wrapper .contact-info-col a.link {
  color: var(--bs-black);
  text-decoration: none;
}
.contact-wrapper .contact-info-col a.link:hover {
  color: var(--bs-black);
  text-decoration: underline;
}
.contact-wrapper .contact-info-col .white-box {
  padding: 24px;
  background-color: #f5f5f5;
}
.contact-wrapper .contact-info-col .white-box h4 {
  margin-bottom: 6px;
}
.contact-wrapper > .row {
  margin-left: 0;
  margin-right: 0;
}
.contact-wrapper .contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-wrapper .contact-info-content .social {
  display: flex;
  gap: 16px;
}
.contact-wrapper .contact-info-content .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 30px;
  font-size: 10px;
  color: #fff;
  background: var(--bs-primary);
  text-decoration: none;
}
.contact-wrapper .contact-info-content .social a:hover {
  background: var(--bs-dark);
}
.location-name {
  border-left: 2px solid #51d87d;
  padding-left: 18px;
}
.location-name strong {
  margin-bottom: 8px;
  display: block;
}

.form-dark .form-control,
.form-dark input[type="color"],
.form-dark input[type="date"],
.form-dark input[type="datetime-local"],
.form-dark input[type="email"],
.form-dark input[type="file"],
.form-dark input[type="month"],
.form-dark input[type="number"],
.form-dark input[type="password"],
.form-dark input[type="search"],
.form-dark input[type="tel"],
.form-dark input[type="text"],
.form-dark input[type="time"],
.form-dark input[type="url"],
.form-dark input[type="week"],
.form-dark textarea,
.form-dark .form-control:focus,
.form-dark input[type="color"]:focus,
.form-dark input[type="date"]:focus,
.form-dark input[type="datetime-local"]:focus,
.form-dark input[type="email"]:focus,
.form-dark input[type="file"]:focus,
.form-dark input[type="month"]:focus,
.form-dark input[type="number"]:focus,
.form-dark input[type="password"]:focus,
.form-dark input[type="search"]:focus,
.form-dark input[type="tel"]:focus,
.form-dark input[type="text"]:focus,
.form-dark input[type="time"]:focus,
.form-dark input[type="url"]:focus,
.form-dark input[type="week"]:focus,
.form-dark textarea:focus .form-dark .form-select,
.form-dark .form-select:focus,
.form-dark select,
.form-dark select:focus {
  color: var(--bs-white);
  border: 2px solid #535353;
  background-color: #1b1b1b;
}

.form-dark .form-select,
.form-dark select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-dark .form-control::-moz-placeholder,
.form-dark input[type="color"]::-moz-placeholder,
.form-dark input[type="date"]::-moz-placeholder,
.form-dark input[type="datetime-local"]::-moz-placeholder,
.form-dark input[type="email"]::-moz-placeholder,
.form-dark input[type="file"]::-moz-placeholder,
.form-dark input[type="month"]::-moz-placeholder,
.form-dark input[type="number"]::-moz-placeholder,
.form-dark input[type="password"]::-moz-placeholder,
.form-dark input[type="search"]::-moz-placeholder,
.form-dark input[type="tel"]::-moz-placeholder,
.form-dark input[type="text"]::-moz-placeholder,
.form-dark input[type="time"]::-moz-placeholder,
.form-dark input[type="url"]::-moz-placeholder,
.form-dark input[type="week"]::-moz-placeholder,
.form-dark textarea::-moz-placeholder {
  color: var(--bs-white);
}
.form-dark .form-control::placeholder::placeholder,
.form-dark input[type="color"]::placeholder,
.form-dark input[type="date"]::placeholder,
.form-dark input[type="datetime-local"]::placeholder,
.form-dark input[type="email"]::placeholder,
.form-dark input[type="file"]::placeholder,
.form-dark input[type="month"]::placeholder,
.form-dark input[type="number"]::placeholder,
.form-dark input[type="password"]::placeholder,
.form-dark input[type="reset"]::placeholder,
.form-dark input[type="search"]::placeholder,
.form-dark input[type="tel"]::placeholder,
.form-dark input[type="text"]::placeholder,
.form-dark input[type="time"]::placeholder,
.form-dark input[type="url"]::placeholder,
.form-dark input[type="week"]::placeholder,
.form-dark textarea::placeholder {
  color: var(--bs-white);
}

.map {
  height: 400px;
  position: relative;
  width: 100%;
}
.map .map-inner {
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.map .map-inner iframe {
  height: 100%;
  width: 100%;
}

.why-hr-tab-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
}
.fun-fact-section {
  background: linear-gradient(0deg, var(--bs-sky) 0%, var(--bs-sky) 100%);
}

.featured-asset-cta ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 9px;
  flex-direction: column;
}
.featured-asset-cta ul li {
  background-image: url(../images/theme-img/check.svg);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 34px;
  font-weight: 400;
}

.about-chequred-content .item + .item {
  margin-top: 48px;
}
.about-chequred-content .item .content {
  border-left: 4px solid var(--bs-primary);
  background: var(--bs-light-2);
  display: flex;
  flex-direction: column;
}
.about-chequred-content .item:nth-child(odd) .row:nth-child(1) {
  flex-direction: row-reverse;
}
.about-chequred-content .item:nth-child(odd) .row:nth-child(1) .col-lg-5 {
  margin-left: auto;
}
.about-chequred-content .item:nth-child(even) .row:nth-child(1) .col-lg-7 {
  margin-left: auto;
}

.left-right-image-content .item + .item,
.left-right-image-content .bottom-content {
  margin-top: 48px;
}
.left-right-image-content .item:nth-child(even) .row {
  flex-direction: row-reverse;
}

.left-right-image-content-reverse .item:nth-child(even) .row {
  flex-direction: inherit;
}
.left-right-image-content-reverse .item:nth-child(odd) .row {
  flex-direction: row-reverse;
}

.member-item .full-img {
  overflow: hidden;
}
/*.member-item .full-img:before{background: var(--bs-black); mix-blend-mode: color; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 5; content: ''; -moz-transition:all 1s ease; */
/* -webkit-transition:all 1s ease; -o-transition:all 1s ease; transition:all 1s ease; opacity: 1;} */
.member-item:hover .full-img:before {
  opacity: 0;
}
.member-item:hover .full-img img {
  -webkit-transform: -webkit-scale(1.1) -webkit-rotate(0);
  transform: scale(1.1) rotate(0);
}

.full-content .col-lg-12 + .col-lg-12 {
  margin-top: 16px;
}

.image-hover-item {
  color: var(--bs-white);
  text-decoration: none;
  overflow: hidden;
}
.image-hover-item .full-img {
  overflow: hidden;
}
.image-hover-item .full-img:before {
  background: linear-gradient(
    180deg,
    rgba(2, 13, 43, 0) 0%,
    rgba(2, 13, 43, 0.8) 100%
  );
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  content: "";
}
.image-hover-item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
.image-hover-item:hover .content {
  bottom: 0;
}
.image-hover-item .content p,
.image-hover-item .content .btn {
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 1s ease;
  -webkit-transition: all 01s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.image-hover-item:hover .content p,
.image-hover-item:hover .content .btn {
  opacity: 1;
  visibility: visible;
}
.image-hover-item .content h3 {
  margin-bottom: 0;
}
.image-hover-item .hover-content {
  max-height: 0;
  -webkit-transition: max-height 1s;
  -moz-transition: max-height 1s;
  -ms-transition: max-height 1s;
  -o-transition: max-height 1s;
  transition: max-height 1s;
}
.image-hover-item:hover .hover-content {
  max-height: 700px;
}
.image-hover-item:hover .full-img img {
  -webkit-transform: -webkit-scale(1.1) -webkit-rotate(0);
  transform: scale(1.1) rotate(0);
}

.solutions-section-new.solutions-section .item .content {
  background: none;
  padding-bottom: 0;
}

.resourse-list-title {
  display: flex;
  align-items: center;
}
.resourse-cat-menu ul {
  overflow: hidden;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  text-align: center;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  display: block;
  max-width: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #5f5f5f;
}
.resourse-cat-menu ul li {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  max-width: inherit;
  width: auto;
  position: relative;
}
.resourse-cat-menu ul li a {
  color: var(--bs-black);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  padding: 24px 42px;
  display: block;
}
.resourse-cat-menu ul li a:hover,
.resourse-cat-menu ul li a.active {
  color: var(--bs-black);
  border-bottom: 2px solid var(--bs-primary);
}

.resource-content a {
  color: var(--bs-black);
  font-weight: 700;
}
.resource-content a:hover {
  text-decoration: none;
}
.resourse-list [class*="col-"] {
  margin-bottom: 32px;
}
.resource-item {
  color: var(--bs-black);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.resource-item ul,
.resource-item h5,
.resource-item p {
  margin-bottom: 0;
}
.resource-item a.link {
  display: inline-flex;
  text-decoration: none;
  color: var(--bs-white);
  gap: 10px;
  font-weight: 700;
}
.resource-item a.link:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.resource-item a.link:hover {
  color: var(--bs-primary);
}
.resource-item ul,
.post-categories {
  list-style: none;
  display: flex;
  /*gap: 6px;*/
  padding: 0;
  flex-wrap: wrap;
}
.resource-item ul li a,
.post-categories a,
.post-categories span {
  color: var(--bs-black);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 4px;
}
.resource-item ul li a + a:before,
.post-categories a + a:before,
.post-categories span + span:before{
  content: ",";
  float: left;
  margin: 0 5px 0 0;
}
.resource-item ul li a:hover,
.post-categories a:hover {
  color: var(--bs-black);
}
.resource-item .ratio {
  overflow: hidden;
  border-radius: 10px;
}

.resource-intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.resource-cat-names {
  list-style: none;
  display: flex;
  gap: 5px;
  padding: 0;
  flex-wrap: wrap;
  font-size: 14px;
}
.resource-cat-names a {
  color: var(--bs-black);
  text-decoration: none;
}
.resource-cat-names a + a:before {
  content: ",";
  margin-right: 5px;
}
.resource-cat-names a:hover {
  color: var(--bs-black);
  text-decoration: underline;
}

.resource-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.resource-meta .author-info {
  display: flex;
}
.resource-meta .author-info .block {
  border-radius: 10px;
  background: var(--bs-light-2);
  padding: 16px;
  font-weight: 500;
  font-size: 14px;
  font-style: italic;
}
.resource-meta .author-info .block span {
  font-style: normal;
}
.resource-meta .post-share {
  display: flex;
  gap: 5px;
  padding: 0;
  flex-wrap: wrap;
  font-size: 14px;
  align-items: center;
}

.resource-item-cta {
  border-radius: 16px;
  background: #252525;
  overflow: hidden;
  display: flex;
  color: var(--bs-white);
  gap: 48px;
  padding-right: 48px;
}
.resource-item-cta.flex-row-reverse {
  padding-right: 0;
  padding-left: 48px;
  text-align: right;
}
.resource-item-cta .content {
  padding: 48px 0;
  display: flex;
  align-items: center;
  gap: 48px;
}
.resource-item-cta .content h2 {
  color: var(--bs-primary);
}
.resource-item-cta .content .btn {
  white-space: nowrap;
}
.resource-details-section {
  padding: 48px 0 0 0;
}
.resource-intro-section [class*="col-"] {
  padding-top: 32px;
  padding-bottom: 32px;
}
.resource-intro-section p a {
  color: #000;
  font-weight: 700;
}
.resource-intro-section p a:hover {
  text-decoration: none;
}

.post-item.related-post-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--bs-black);
}
.post-item.related-post-item .ratio {
  overflow: hidden;
  border-radius: 10px;
}
.post-item.related-post-item nav {
  display: flex;
  gap: 6px;
  padding: 0;
  flex-wrap: wrap;
}
.post-item.related-post-item nav span {
  color: var(--bs-black);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  line-height: 1;
}
.post-item.related-post-item h5 {
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-item.resource-item-content a {
  color: var(--bs-black);
  font-weight: 700;
}
.post-item.resource-item-content a:hover {
  color: var(--bs-black);
  text-decoration: none;
}

.portal-item {
  color: var(--bs-black);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.portal-item .ratio {
  overflow: hidden;
  border-radius: 10px;
}
.portal-item .link {
  display: inline-flex;
  text-decoration: none;
  color: var(--bs-white);
  gap: 10px;
  font-weight: 700;
  color: var(--bs-black);
}
.portal-item .link:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.portal-item .link:hover {
  color: var(--bs-primary);
}

.page-template-banner.page-banner .content h1 {
  font-weight: 700;
}

.dwld-page-btn-div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-dwld-block {
  background: var(--bs-white);
  border-radius: 16px;
  padding: 32px;
}
.product-dwld-block ul {
  margin: 0;
  padding: 20px 0 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-dwld-block ul li a {
  display: inline-flex;
  text-decoration: none;
  color: var(--bs-white);
  gap: 10px;
  font-weight: 700;
  color: var(--bs-black);
}
.product-dwld-block ul li a:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.product-dwld-block ul li a:hover {
  color: var(--bs-primary);
}

.product-dwld-section .section-sm {
  padding: 32px 0;
}
.product-dwld-section .section-sm ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-dwld-section .section-sm ul li {
  display: flex;
  gap: 5px;
}
.product-dwld-section .section-sm ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--bs-primary);
}

.button-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-banner-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 200;
}
.page-banner-video iframe,
.page-banner-video video {
  height: 100%;
  width: 100%;
}

.section-light .tab-content {
  position: relative;
}
.section-light .tab-content .why-hr-tab-content {
  background: none;
  backdrop-filter: blur(0px);
  padding: 110px;
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.section-light .tab-content .why-hr-tab-content p {
  width: 100%;
  max-width: 626px;
}
.section-light .tab-content .full-img {
  min-width: initial;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  flex: 0 0 auto;
  display: flex;
  z-index: 1;
}
.section-light .tab-content .full-img img {
  flex: 1 1 auto;
  align-self: center;
  justify-self: center;
  object-fit: cover;
  height: 100%;
  min-width: 100%;
  width: auto;
}

.chequred-row .item {
  padding: 0;
  margin-top: 32px;
}
.chequred-row .item h4 {
  font-weight: 500;
}
.chequred-row .item:nth-child(odd) .row {
  flex-direction: row-reverse;
}

.list-content-lt {
  background: var(--bs-light-2);
}
.list-content-lt ul {
  display: flex;
  margin: 0 -10px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.list-content-lt ul li {
  padding: 0 10px;
  width: 100%;
  flex: 0 0 0 auto;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.1;
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 140%;
}
.list-content-lt ul li a {
  color: var(--bs-black);
  text-decoration: none;
}
.list-content-lt ul li a:hover {
  text-decoration: none;
  color: var(--bs-primary);
}
/*.list-content-lt ul li:after{font-family:'Font Awesome 6 Free'; font-weight:900; content:'\f105'; font-size: 70%;}*/
.list-content-lt a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: var(--bs-primary);
}
.list-content-lt a:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  font-size: 70%;
}

.icon-box {
  background-color: var(--bs-white);
  display: flex; /*align-items: center;*/
  gap: 24px;
  flex-direction: column;
  text-align: center;
}
.icon-box .icon {
  border-radius: 50%;
  background: linear-gradient(90deg, #51d87d 0%, #afedc3 100%), #fff;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-icon-item {
  background-color: var(--bs-white);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
  text-align: center;
}
.slide-icon-item .icon {
  border-radius: 50%;
  background: linear-gradient(90deg, #51d87d 0%, #afedc3 100%), #fff;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide-icon-item h4,
.slide-icon-item p {
  margin-bottom: 1rem;
}
.slide-icon-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--bs-black);
  font-weight: 700;
  text-decoration: none;
}
.slide-icon-item a span {
  text-decoration: underline;
}
.slide-icon-item a:hover {
  color: var(--bs-primary);
}

.image-block .image-fit {
  height: 420px;
}
.image-block .image-fit:after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.image-block .content {
  text-align: center;
  color: var(--bs-white);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.image-block .content > * {
  margin-bottom: 0;
}

.post-item-single > * {
  margin-bottom: 0;
}
.post-item-single {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/*.post-item-single p{ font-size: 16px;}*/
.post-item-single ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.post-item-single ul li {
  padding: 0;
  font-size: 14px;
  font-weight: 700;
}
.post-item-single ul li:after {
  content: "|";
  color: #d9d9d9;
  margin: 0 10px;
}
.post-item-single ul li:last-child:after {
  display: none;
}
.post-item-single a {
  font-weight: 700;
  color: #000;
  display: flex;
  gap: 10px;
  text-decoration: none;
}
.post-item-single a span {
  text-decoration: underline;
}
.post-item-single a:hover {
  color: var(--bs-primary);
}
.post-items-section .row [class*="col-"] {
  margin-top: 32px;
}
.post-item-single h4 {
  overflow: hidden;
  text-overflow: ellipsis; /* Adds "..." at the end if truncated */
  display: -webkit-box; /* Required for -webkit-line-clamp */
  -webkit-line-clamp: 1; /* Specifies the maximum number of lines */
  -webkit-box-orient: vertical; /* Arranges content vertically within the box */
}
/*.post-item-single a.full-img{ overflow: hidden; position: relative; width: 100%; min-width:initial; overflow:hidden; flex:0 0 auto; display:flex;}
.post-item-single a.full-img::before {display: block; padding-top: 75%;content: "";}
.post-item-single a.full-img img{ flex:1 1 auto; align-self:center; justify-self:center; object-fit:cover; height:100%; min-width:100%; width:auto;}*/

.check-list-row [class*="col-"] {
  margin-top: 32px;
}

.blockquote-content {
  position: relative;
  padding: 48px 24px 24px;
  border-radius: 10px;
  background: #ecf9f4;
  backdrop-filter: blur(50px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.blockquote-content:before {
  background-image: url(../images/theme-img/quote.svg);
  width: 35px;
  height: 30px;
  position: absolute;
  left: 24px;
  top: -15px;
  content: "";
  z-index: 1;
}
.blockquote-content blockquote {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 1.2;
}
.blockquote-content cite {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  font-style: normal;
}

.form-content-shadow {
  background-color: var(--bs-white);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.form-content-shadow a {
  font-weight: 700;
  color: #000;
  text-decoration: underline;
}
.form-content-no-shadow .form-content-shadow {
  box-shadow: none;
  background-color: transparent;
}
.form-content-no-shadow .form-content-shadow[class*="p-"] {
  padding: 0 !important;
}
.form-content-shadow a:hover {
  color: #000;
  text-decoration: none;
}

.research-library-content .container {
  padding-top: 24px;
  position: relative;
}
.research-library-content .container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bs-primary);
  height: 3px;
  width: 70px;
  left: 12px;
}
.research-library-content .container-no-line:before {
  display: none;
}

.single-resouce-items {
  position: relative;
}
.single-resouce-items:after {
  border: 2px solid #e3e3e3;
  border-radius: 10px;
  border-left: 10px solid var(--bs-primary);
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--bs-gutter-x) * 0.5);
  right: calc(var(--bs-gutter-x) * 0.5);
  z-index: 1;
  content: "";
}
.single-resouce-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 32px 24px 42px;
  position: relative;
  z-index: 2;
}
.single-resouce-item h5,
.single-resouce-item p {
  margin-bottom: 0;
}
.single-resouce-item .image-fit {
  height: 286px;
  border-radius: 10px;
}

.resource-listing {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.resource-listing .item {
  color: #000;
  text-decoration: none;
  gap: 12px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border-left: 4px solid var(--bs-primary);
  background: #fff;
  padding: 32px;
}
.resource-listing .item h6,
.resource-listing .item p {
  margin-bottom: 0;
}
.resource-listing .item strong {
  gap: 5px;
}
.resource-listing .item strong span:nth-child(1) {
  text-decoration: underline;
}
.resource-listing .item:hover strong {
  color: var(--bs-primary);
}

.post-cat-item {
  color: var(--bs-white);
  text-decoration: none;
  position: relative;
}
.post-cat-item .full-img:before {
  background: linear-gradient(
    180deg,
    rgba(2, 13, 43, 0) 0%,
    rgba(2, 13, 43, 0.9) 100%
  );
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  z-index: 10;
}
.post-cat-item .content {
  position: absolute;
  display: flex;
  padding: 24px 24px 28px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 20;
  left: 0;
  right: 0;
  bottom: 0;
}
.post-cat-item .content h3 {
  margin-bottom: 0;
}
.post-cat-item .content strong {
  gap: 5px;
}
.post-cat-item .content strong span:nth-child(1) {
  text-decoration: underline;
}
.post-cat-item .ratio-4x3 {
  --bs-aspect-ratio: 112%;
}

.play-btn-img:before {
  background-image: url(../images/theme-img/play.svg);
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 200;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.video-cat-content {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.video-cat-content a {
  gap: 5px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.video-cat-content a span:nth-child(1) {
  text-decoration: underline;
}
.video-cat-content a:hover {
  color: var(--bs-primary);
}
.video-cat-content p,
.video-cat-content h3 {
  margin-bottom: 0;
}
.video-cat-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-post .wp-block-post-excerpt {
  display: none !important;
}
.SlideItem-4_1 .slick-next,
.SlideItem-4_1 .slick-prev {
  height: 48px;
  width: 48px;
  background-color: var(--bs-white);
}
.SlideItem-4_1 .slick-next:before,
.SlideItem-4_1 .slick-prev:before {
  font-size: 18px;
}

.filter-form {
  padding-left: 94px;
  position: relative;
  padding-right: 232px;
}
.filter-form .label {
  position: absolute;
  top: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
}
.filter-form .form-control {
  position: absolute;
  top: 0;
  right: 0;
  width: 210px;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  border-radius: 50px;
  box-shadow: none;
}
.filter-form .form-control:hover {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  border-radius: 50px;
  box-shadow: none;
}
/*.filter-form select{ text-transform: uppercase; color: #000; font-weight: 700; --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2351D87D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); background-size: 18px; line-height: normal;}*/

.filter-form select,
.filter-form input[name="dates"] {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2351d87d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-image: var(--bs-form-select-bg-img),
    var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 20px;
}

.filter-form .select2-container .select2-search--inline .select2-search__field {
  min-height: inherit !important;
  margin: 0;
  padding: 0 1rem;
  height: 71px;
  line-height: 71px;
  width: 100%;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2351d87d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-image: var(--bs-form-select-bg-img),
    var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 20px;
  width: 100% !important;
}
.filter-form .select2-container--default .select2-selection--multiple {
  padding: 0;
}
.filter-form
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background: var(--bs-primary);
  font-size: 12px;
  color: #000;
}
.filter-form
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove,
.filter-form
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:hover {
  color: #000;
  background: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-form
  .select2-container--default.select2-container--focus
  .select2-selection--multiple,
.filter-form .select2-container--default .select2-selection--multiple {
  border: 2px solid #f5f5f5;
  border-radius: 0;
}

.filter-form
  .select2-container
  .select2-selection--multiple
  .select2-selection__rendered {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
}
.filter-form
  .select2-container
  .select2-selection--multiple
  .select2-selection__rendered
  li {
  margin-bottom: 3px;
}
.filter-form .select2-container--default .select2-selection--multiple {
  display: flex; /*flex-direction: column;*/
}

.select2-results__option {
  font-size: 16px !important;
  padding: 3px 6px !important;
  line-height: 1.1 !important;
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  color: #000;
  background: var(--bs-primary);
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination-wrapper span,
.pagination-wrapper a {
  border: 2px solid #f5f5f5;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}
.pagination-wrapper span.current,
.pagination-wrapper span:hover,
.pagination-wrapper a:hover {
  background: var(--bs-primary);
  color: #000;
  border: 2px solid var(--bs-primary);
}

.faq-author {
  border-radius: 10px;
  background: #f5f5f5;
  padding: 24px;
  font-size: 500;
  font-style: italic;
}

.icon-grid-section .title {
  margin-bottom: 24px;
}
.icon-grid-section .icon-box-content {
  background-color: var(--bs-white);
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.icon-grid-section .icon-box-content .icon {
  border-radius: 50%;
  background: linear-gradient(90deg, #51d87d 0%, #afedc3 100%), #fff;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-left: auto;
  margin-right: auto;
}
.icon-grid-section .icon-box-content ul {
  text-align: left;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.video-frame {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.people-quote {
  background: var(--bs-white);
}
.people-quote .content [class*="col-"] + [class*="col-"] {
  padding: 24px;
  align-content: center;
}
.people-quote .content {
  padding: 24px;
  margin: 0 auto;
  width: 100%;
}
.people-quote .content blockquote {
  background-image: url(../images/theme-img/quote.svg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 30px 35px;
  padding-top: 45px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 30px;
}
.people-quote .content cite {
  padding-left: 24px;
  border-left: 4px solid var(--bs-primary);
  font-weight: 500;
  display: block;
  font-style: normal;
}

.industry-item {
  color: #fff;
  text-decoration: none;
  display: flex;
}
.industry-item .title {
  padding: 32px 32px 0 32px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.industry-item .content {
  padding: 32px 102px 32px 32px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 60px;
  display: flex;
  align-items: center;
  -webkit-appearance: button;
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}
.industry-item .content:after {
  background: var(--bs-primary);
  height: 60px;
  width: 60px;
  color: #000;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webit-transform: translateY(-50%);
  right: 32px;
}
.industry-item .ratio-1x1 {
  --bs-aspect-ratio: 117%;
}
.industry-item .ratio .full-img:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50%;
  z-index: 6;
  background: linear-gradient(
    180deg,
    rgba(2, 13, 43, 0.8) 0%,
    rgba(2, 13, 43, 0) 100%
  );
}
.industry-item .ratio .full-img:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 80%;
  z-index: 6;
  background: linear-gradient(
    180deg,
    rgba(2, 13, 43, 0) 0%,
    rgba(2, 13, 43, 1) 100%
  );
  -ms-transform: translateY(-50%);
  -webkit-appearance: button;
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}
.industry-item:hover .ratio .full-img:after,
.industry-item:hover .content {
  opacity: 1;
}

.success-story-item {
  display: flex;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  flex-direction: column;
}
.success-story-item:hover {
  color: #fff;
}
.success-story-item h5 {
  margin-bottom: 0;
}
.success-story-item span.cat-name {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}
.success-story-item span.cat-name strong {
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  padding: 8px 16px;
}
.success-story-item .link-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.success-story-item .link-text span {
  text-decoration: underline;
}
.success-story-item .ratio {
  border-radius: 10px;
  overflow: hidden;
}

.compare-section:after {
  background: var(--bs-dark);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 70px;
}
.compare-content {
  background: #fff;
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.compare-content h5 {
  padding: 0 24px;
  height: 70px;
  margin: 0;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}
.compare-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.compare-content ul li {
  display: flex;
  height: 70px;
  padding: 0 20px;
  align-items: center;
  border-top: 2px solid #f5f5f5;
  justify-content: center;
  text-align: center;
}
.compare-content ul li img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.compare-content.popular {
  background-color: var(--bs-primary);
}
.compare-content.popular ul li {
  border-top: 2px solid rgba(239, 239, 239, 0.2);
}
.compare-section .label-row .compare-content ul li,
.compare-section .label-row .compare-content h5 {
  justify-content: flex-start;
  text-align: left;
}
.compare-content .yes-img,
.compare-content .no-img {
  display: block;
  height: 38px;
  width: 38px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.compare-content .yes-img {
  background-image: url(../images/theme-img/check-green.svg);
}
.compare-content .no-img {
  background-image: url(../images/theme-img/close.svg);
}
.compare-content.popular .yes-img {
  background-image: url(../images/theme-img/check-dark.svg);
}

.download-content-box {
  background: #fff;
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.download-content-box .card-header {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px;
  background: #f5f5f5;
}
.download-content-box .card-header select {
  width: 200px;
}
.download-content-box .card-body {
  padding: 24px 24px 8px;
}
.download-content-box .card-body .title {
  display: flex;
  align-items: center;
  gap: 15px;
}
.download-content-box .card-body .title .icon {
  height: 48px;
  width: 48px;
  border-radius: 48px;
  background-color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-content-box .card-body .btn,
.download-content-box .card-body .btn-sma {
  padding: 0 16px;
  height: 48px;
  font-size: 13px;
}
.download-content-box .card-body .item-list + .item-list {
  margin-top: 24px;
}

.step-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.step-box .title {
  display: flex;
  align-items: center;
  gap: 24px;
}
.step-box h4 {
  margin-bottom: 0;
}
.step-box .title span {
  height: 60px;
  width: 60px;
  background: var(--bs-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  border-radius: 60px;
}
.step-box .title:after {
  border-radius: 10px;
  background: #e1e1e1;
  height: 4px;
  content: "";
  flex-grow: 1;
}

.icon-row-list {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.icon-row-list .item {
  background: #fff;
  padding: 24px;
  display: flex;
  gap: 48px;
}
.icon-row-list .item:nth-child(even) {
  flex-direction: row-reverse;
}

.additional-sol-item .ratio {
  color: #fff;
  text-decoration: none;
  color: #fff;
  background: var(--bs-dark);
  display: block;
}
.additional-sol-item .ratio .content {
  position: absolute;
  padding: 24px 48px 24px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}

.download-box {
  background: #fff;
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #d8d8d8;
}
.download-box .head {
  background: #f5f5f5;
  padding: 20px;
  border-bottom: 1px solid #d8d8d8;
}
.download-box .head h4 {
  margin-bottom: 2px;
}
.download-box .row {
  margin-left: -5px;
  margin-right: -5px;
}
.download-box .row [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.download-box .content {
  padding: 20px;
}

.download-box .content .title {
  position: relative;
  padding: 0 0 0 58px;
  height: 48px;
  display: flex;
  align-items: center;
}
.download-box .content .title span.icon {
  width: 30px;
  width: 48px;
  background: #51d87d;
  color: #fff;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
  margin-right: 12px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
}
.download-box .content .row + .row {
  margin-top: 20px;
}
.download-box .btn-sm {
  height: 50px;
  padding: 0 16px;
  font-size: 14px;
}

.meet-team-intro .link {
  text-decoration: none;
  color: #000;
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.meet-team-intro .link strong {
  text-decoration: underline;
}

.account-page-header {
  color: #fff;
  background-color: #020d2b;
}
.account-page-content .WishListMember_LoginMergeCode a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.account-page-content .WishListMember_LoginMergeCode a:hover {
  color: #51d87d;
}

.member-item .member-info {
  /*padding-right: 40px;*/
  position: relative;
}
/*.member-item:hover .member-info:after {
  color: #51d87d;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}*/

.more-words,
.read-less {
  display: none;
}

.read-more,
.read-less {
  color: var(--bs-white);
  cursor: pointer;
  font-weight: bold;
}

.testimonial-section-lt .read-more,
.testimonial-section-lt .read-less {
  color: var(--bs-white);
  cursor: pointer;
  font-weight: bold;
}

@media (min-width: 992px) {
  .solutions-tiles {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
  }
}
.solutions-tiles > * {
  width: 100%;
  min-height: 200px;
  text-decoration: none;
}
@media (min-width: 992px) {
  .solutions-tiles > * {
    width: calc(100% / 2);
    min-height: 200px;
  }
}
@media (min-width: 1200px) {
  .solutions-tiles > * {
    width: calc(100% / 3);
    min-height: 200px;
  }
}
.solutions-tiles__tile {
  display: flex;
  align-items: flex-end;
  background: #16213f;
  position: relative;
  border-bottom: 1px solid #020d2b;
  border-right: 1px solid #020d2b;
  padding: 30px 40px 24px 24px;
  color: #fff;
  transition: background 0.4s ease;
}
.solutions-tiles__tile h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.solutions-tiles__tile span {
  display: block;
  font-size: 16px;
  color: #fff;
}
@media (min-width: 1200px) {
  .solutions-tiles__tile span {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }
}
.solutions-tiles__tile svg {
  position: absolute;
  bottom: 24px;
  right: 12px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (min-width: 1200px) {
  .solutions-tiles__tile svg {
    opacity: 0;
    transform: translate3d(-4px, 0, 0);
  }
}
.solutions-tiles__tile:hover {
  background: #51d87d;
}
.solutions-tiles__tile:hover svg {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.solutions-tiles__tile:hover span,
.solutions-tiles__tile:hover h3 {
  color: var(--bs-blue);
}
@media (min-width: 1200px) {
  .solutions-tiles__tile:hover span {
    max-height: 90px;
  }
}
.solutions-tiles__tile.solutions-tiles__tile--show {
  padding: 50px 40px 50px 24px;
}
.solutions-tiles__tile.solutions-tiles__tile--show svg {
  opacity: 1;
  bottom: auto;
  top: 48px;
}
.solutions-tiles__tile.solutions-tiles__tile--show span {
  opacity: 1;
}
@media (min-width: 1200px) {
  .solutions-tiles__tile.solutions-tiles__tile--show span {
    max-height: 100% !important;
  }
}
@media (min-width: 1200px) {
  .solutions-tiles__tile.solutions-tiles__tile--show:hover span {
    max-height: 100%;
  }
}
.solutions-tiles__tile span p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.resource-intro-section .full-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-intro-section .full-img img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.campaign-center-content .ratio {
  max-width: 795px;
  margin-left: auto;
  margin-right: auto;
}
.like-item {
  color: #000;
  text-decoration: none;
  display: block;
}

.campaign-cta {
  display: flex;
  align-items: center;
  color: #fff;
}
.campaign-cta .image {
  width: 100%;
  text-align: center;
}
.campaign-cta .flex-grow-1 {
  padding: 72px 24px 24px;
  background-color: #191919;
}
.campaign-cta .flex-shrink-0 {
  width: 100%;
}

.QuoteSlider .item {
  padding-top: 15px;
}
.QuoteSlider .item .blockquote-content {
  border-radius: 10px;
  background: #f5f5f5;
  backdrop-filter: blur(50px);
}

.blockquote-content-lt {
  background-color: #f5f5f5;
}

.map-new {
  height: 400px;
  position: relative;
  width: 100%;
}
.map-new .map-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.map-new .map-inner iframe {
  height: 100%;
  width: 100%;
}

.app-colection-section .title {
  margin-bottom: 24px;
}
.app-colection-section .item [class*="col-"] {
  margin-top: 40px;
}
.app-colection-section ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.app-colection-section ul li {
  width: 100%;
  flex: 0 0 auto;
  font-weight: 700;
  margin-top: 11px;
  display: flex;
  gap: 6px;
}
.app-colection-section ul li:before {
  content: "\e2e6";
  font-family: "Material Symbols Sharp";
  font-size: 30px;
  font-weight: 400;
  color: var(--bs-primary);
  line-height: 30px;
}

.anchor:before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
}
.event-meta {
  padding: 0;
  list-style: none;
  display: flex;
  font-weight: 700;
}
.event-meta li + li:before {
  content: "|";
  margin: 0 8px;
  margin: 0 8px;
}
.event-meta li {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.event-item ul li {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
}
.event-item .ratio-16x9 {
  --bs-aspect-ratio: 42%;
}

details.readmore {
  cursor: text;
  position: relative;
}
details.readmore summary {
  display: -webkit-box;
  pointer-events: none;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
details.readmore summary:after {
  top: 100%;
  margin-top: 1rem;
  display: block;
  cursor: pointer;
  position: absolute;
  pointer-events: initial;
  text-decoration: underline;
  color: var(--bs-white);
  font-weight: 700;
}
details.readmore:not([open]) summary:after {
  content: attr(data-more);
}
details.readmore[open] summary {
  -webkit-line-clamp: unset;
}
details.readmore[open] summary:after {
  content: attr(data-less);
}

.testimonial-section-lt .quote-item details.readmore summary:after {
  color: #000;
}

@media (min-width: 576px) {
  .newsletter form {
    flex-direction: row;
  }
  .newsletter form .tnp-field-button {
    flex-shrink: 0;
    margin-left: 24px;
  }
  .button-column {
    flex-direction: row;
    gap: 24px;
    margin-top: 24px;
  }
}

@media (min-width: 768px) {
  .container-fluid/*, .why-tab-section .title, .why-tab-section .tab-list*/ {
    padding-left: 24px;
    padding-right: 24px;
  }
  .home-w3 .image-content .content {
    padding-right: 33.33333%;
    padding-left: 32px;
    bottom: 32px;
  }
  .home-w4 .nav-tabs .nav-item {
    width: 33.3333333%;
  }
  .latest-resources .nav-tabs .nav-item {
    width: 25%;
  }
  .cta-section .container-fluid {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .page-banner .content {
    padding: 32px 0;
  }
  .page-banner .content-lg {
    padding: 48px 0;
  }
  .featured-asset-cta {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .two-col-img-content [class*="col-"] + [class*="col-"] {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 50px;
  }
  .quick-links-section .content ul li {
    width: 50%;
  }
  .map {
    height: 500px;
  }
  .resourse-list [class*="col-"] {
    margin-bottom: 48px;
  }
  .dwld-page-btn-div {
    flex-direction: row;
  }
  .product-dwld-section .section-sm {
    padding: 48px 0;
  }
  .resource-item-cta .cta-image {
    width: 24.34881087202718%;
    min-height: 360px;
  }
  .resource-item-cta .full-img {
    min-width: initial;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /*.resource-item-cta .full-img img{flex:1 1 auto; align-self:center; justify-self:center; object-fit:cover; height:100%; min-width:100%; width:auto;}*/
  .container-fluid {
    padding: 0 32px;
  }
  .list-content-lt ul li {
    width: 50%;
  }
  .header .container-fluid {
    padding: 0 24px;
  }
  .image-block .image-fit {
    height: 450px;
  }
  .image-block .content {
    padding: 24px;
  }
  .blockquote-content {
    padding: 48px;
  }
  .blockquote-content:before {
    left: 48px;
  }
  .Slick-Slider-Lg {
    margin-left: -24px;
    margin-right: -24px;
  }
  .Slick-Slider-Lg .item {
    padding-left: 24px;
    padding-right: 24px;
  }
  .icon-row-list .item {
    padding: 32px;
  }
  .campaign-cta .flex-grow-1 {
    padding: 32px;
  }
  .campaign-cta .flex-shrink-0 {
    width: 32%;
  }
  .campaign-cta .image img {
    width: 100%;
    height: auto;
  }
  .anchor:before {
    height: 100px;
    margin-top: -100px;
  }
  .app-colection-section .title {
    margin-bottom: 40px;
  }
  .app-colection-section .item [class*="col-"] {
    margin-top: 66px;
  }
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
  .home-w3 .image-content .image-fit {
    height: 700px;
  }
  .home-w3 .image-content .content {
    padding-right: 33.33333%;
    padding-left: 32px;
    bottom: 32px;
    background-position: right 48px center;
  }
  .home-w4 .nav-tabs .nav-item {
    width: 33.3333333%;
  }
  .cta-section .container-fluid {
    height: 572px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .page-banner .content {
    padding: 48px 0;
  }
  .page-banner .content-lg {
    padding: 60px 0;
  }
  .page-banner .full-img {
    min-width: initial;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    flex: 0 0 auto;
    display: flex;
    width: 50%;
  }
  .page-banner .full-img img {
    flex: 1 1 auto;
    align-self: center;
    justify-self: center;
    object-fit: cover;
    height: 100%;
    min-width: 100%;
    width: auto;
  }
  .featured-asset-cta {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .cost-tab-section .nav-tabs .nav-item {
    /*width: 20%;*/
    flex: 1 1 auto;
  }
  .two-col-img-content [class*="col-"] + [class*="col-"] {
    padding: 32px;
  }
  .why-hr-tab .img-full {
    min-width: initial;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    right: 12px;
    overflow: hidden;
    flex: 0 0 auto;
    display: flex;
  }
  .why-hr-tab .img-full img {
    flex: 1 1 auto;
    align-self: center;
    justify-self: center;
    object-fit: cover;
    height: 100%;
    min-width: 100%;
    width: auto;
  }
  .home-w4.home-w4-5tab .nav-tabs .nav-item,
  .cost-tab-section.five-tabs .nav-tabs .nav-item {
    width: 20%;
  }
  .home-w4.home-w4-4tab .nav-tabs .nav-item,
  .cost-tab-section.four-tabs .nav-tabs .nav-item {
    width: 25%;
  }
  .quick-links-section .content ul li {
    width: 100%;
  }
  .map {
    height: 600px;
  }
  .solutions-section-new .title {
    margin-bottom: 152px;
  }
  .solutions-section-new.solutions-section .item {
    min-height: 152px;
  }
  .resourse-list [class*="col-"]:nth-child(1) {
    width: 100%;
  }
  .resourse-list [class*="col-"] {
    margin-bottom: 60px;
  }
  .container-fluid {
    padding: 0 48px;
  }
  .chequred-row .item {
    padding: 48px 0;
    margin-top: 0;
  }
  .list-content-lt ul li {
    width: 100%;
  }
  .header .container-fluid {
    padding: 0 24px;
  }
  .about-chequred-content .item + .item,
  .left-right-image-content .item + .item,
  .left-right-image-content .bottom-content {
    margin-top: 60px;
  }
  .image-block .image-fit {
    height: 500px;
  }
  .image-block .content {
    padding: 32px;
  }
  .post-items-section .row {
    margin-left: -32px;
    margin-right: -32px;
  }
  .post-items-section .row [class*="col-"] {
    margin-top: 64px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .post-items-section .row [class*="col-"]:nth-child(1),
  .post-items-section .row [class*="col-"]:nth-child(2),
  .post-items-section .row [class*="col-"]:nth-child(3) {
    margin-top: 32px;
  }
  .check-list-row [class*="col-"] {
    margin-top: 80px;
  }
  .check-list-row [class*="col-"]:nth-child(1),
  .check-list-row [class*="col-"]:nth-child(2) {
    margin-top: 48px;
  }
  .icon-grid-section .title {
    margin-bottom: 60px;
  }
  .icon-grid-section .icon-box-content {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
  .icon-grid-section .icon-box-content ul {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
  /*.row-col-center .row [class*=col-]{ width: 90%;}*/
  .people-quote .content blockquote {
    background-size: 60px 52px;
    padding-top: 62px;
  }
  .people-quote .content {
    max-width: 650px;
  }
  .icon-row-list .item {
    padding: 48px 80px;
  }
  .campaign-cta .flex-grow-1 {
    padding: 32px;
  }
  .campaign-cta .flex-shrink-0 {
    width: 28%;
  }
  .anchor:before {
    height: 100px;
    margin-top: -100px;
  }
  .app-colection-section .title {
    margin-bottom: 70px;
  }
  .app-colection-section .item [class*="col-"] {
    margin-top: 96px;
  }
  .app-colection-section ul li {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .container-fluid/*, .why-tab-section .title, .why-tab-section .tab-list*/ {
    padding-left: 2.5%;
    padding-right: 2.5%;
  }
  .Slick-Slider {
    margin-left: -12px;
    margin-right: -12px;
  }
  .Slick-Slider .item {
    padding-left: 12px;
    padding-right: 12px;
  }
  .contact-wrapper {
    padding-left: 2.5%;
  }
  .home-w3 .image-content .image-fit {
    height: 800px;
  }
  .home-w3 .image-content .content {
    padding-right: 37%;
    padding-left: 48px;
    bottom: 48px;
  }
  .home-w4 .nav-tabs .nav-item {
    width: 16.66666667%;
  }
  .cta-section .container-fluid {
    height: 672px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .page-banner .content {
    padding: 48px 0 64px; /*width: 100%; max-width: 746px;*/
  }
  .page-banner .content-lg {
    padding: 90px 0;
  }
  .two-col-img-content [class*="col-"] + [class*="col-"] {
    padding: 2.5%;
  }
  .home-w4-5tab .nav-tabs .nav-item {
    width: 20%;
  }
  .quick-links-section .content ul li {
    width: 50%;
  }
  .contact-wrapper .contact-info-col .white-box {
    padding: 32px;
  }
  .map {
    height: 700px;
  }
  .resourse-list [class*="col-"] {
    margin-bottom: 96px;
  }
  .resource-intro-section .full-img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    width: 50%;
  }
  /*.resource-intro-section .full-img img{flex:1 1 auto; align-self:center; justify-self:center; object-fit:cover; height:100%; min-width:100%; width:auto;}*/
  .resource-intro-section [class*="col-"] {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .resource-banner-video {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
  }
  .resource-banner-video iframe,
  .page-banner-video video {
    height: 100%;
    width: 100%;
  }
  .resource-intro-section .full-img-l,
  .resource-banner-video-l {
    left: 0;
    right: auto;
  }
  .page-banner .full-img,
  .page-banner-video {
    width: 50%;
  }
  .list-content-lt ul li {
    width: 50%;
  }
  .container-fluid {
    padding: 0 4%;
  }
  .icon-box {
    flex-direction: row;
    text-align: left;
  }
  .header .container-fluid {
    padding: 0 32px;
  }
  .about-chequred-content .item + .item,
  .left-right-image-content .item + .item,
  .left-right-image-content .bottom-content {
    margin-top: 96px;
  }
  .image-block .image-fit {
    height: 580px;
  }
  .post-items-section .row {
    margin-left: -40px;
    margin-right: -40px;
  }
  .post-items-section .row [class*="col-"] {
    margin-top: 80px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .post-items-section .row [class*="col-"]:nth-child(1),
  .post-items-section .row [class*="col-"]:nth-child(2),
  .post-items-section .row [class*="col-"]:nth-child(3) {
    margin-top: 40px;
  }
  .large-gutter .row {
    margin-left: -32px;
    margin-right: -32px;
  }
  .large-gutter .row [class*="col-"] {
    padding-left: 32px;
    padding-right: 32px;
  }
  .icon-grid-section .title {
    margin-bottom: 60px;
  }
  .row-col-center .row [class*="col-"] {
    width: 83.33333333%;
  }
  .campaign-cta .flex-grow-1 {
    padding: 5%;
  }
  .campaign-cta .flex-shrink-0 {
    width: 25%;
  }
  .small-img-col [class*="col-"] + [class*="col-"] {
    width: 58.33333333%;
  }
  .small-img-col [class*="col-"] {
    width: 41.66666667%;
  }
  .anchor:before {
    height: 118px;
    margin-top: -118px;
  }
  .small-img-column .row .col-lg-6:nth-child(1) {
    width: 41.66666667%;
  }
  .small-img-column .row .col-lg-6:nth-child(2) {
    width: 58.33333333%;
  }
  .small-img-column:nth-child(even) .row .col-lg-6:nth-child(2) {
    padding-left: 70px;
  }
  .small-img-column:nth-child(odd) .row .col-lg-6:nth-child(2) {
    padding-right: 70px;
  }
  .row-icon-box [class*="col-"] {
    width: 20%;
  }
}

@media (min-width: 1400px) {
  .home-w3 .image-content .image-fit {
    height: 900px;
  }
  .home-w4 .content {
    width: 100%;
    max-width: 600px;
  }
  .home-w4 .content p {
    max-width: 500px;
  }
  .map {
    height: 800px;
  }
  .resource-intro-section .full-img,
  .resource-banner-video,
  .page-banner .full-img,
  .page-banner-video {
    width: 41.354166666666664%;
  }
  .container-fluid {
    padding: 0 4.5%;
  }
  .contact-wrapper {
    padding-left: 4.5%;
  }
  .header .container-fluid {
    padding: 0 48px;
  }
  /*.about-chequred-content .item:nth-child(odd) .row [class*=col-]:nth-child(1){ padding-left: 60px;}
.about-chequred-content .item:nth-child(even) .row [class*=col-]:nth-child(1){ padding-right: 60px;}*/
  .post-items-section .row {
    margin-left: -66px;
    margin-right: -66px;
  }
  .post-items-section .row [class*="col-"] {
    margin-top: 132px;
    padding-left: 66px;
    padding-right: 66px;
  }
  .post-items-section .row [class*="col-"]:nth-child(1),
  .post-items-section .row [class*="col-"]:nth-child(2),
  .post-items-section .row [class*="col-"]:nth-child(3) {
    margin-top: 66px;
  }
  .page-banner .content-lg {
    padding: 128px 0;
  }
  .form-content-no-shadow .row {
    margin-left: 0;
    margin-right: 0;
  }
  .form-content-no-shadow .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
  }
  .form-content-no-shadow .col-lg-6:first-child {
    width: 58.33333333%;
  }
  .form-content-no-shadow .col-lg-6:last-child {
    margin-left: auto;
    width: 41.66666667%;
    padding-left: 6.470588235294119%;
  }
  .large-gutter .row {
    margin-left: -40px;
    margin-right: -40px;
  }
  .large-gutter .row [class*="col-"] {
    padding-left: 40px;
    padding-right: 40px;
  }
  .icon-grid-section .title {
    margin-bottom: 80px;
  }
  /*.row-col-center .row [class*=col-]{ width: 90%}*/
  .about-chequred-content .item .row {
    margin-left: -55px;
    margin-right: -55px;
  }
  .about-chequred-content .item .row [class*="col-"] {
    padding-left: 55px;
    padding-right: 55px;
  }
  .campaign-cta .flex-grow-1 {
    padding: 7%;
  }
  .campaign-cta .flex-shrink-0 {
    width: 22.058823529411764%;
  }
  .Control-Bottom .slick-prev {
    left: 35%;
  }
  .Control-Bottom .slick-next {
    right: 35%;
  }
  /*.anchor:before{ height:118px; margin-top:118px}*/
  .chequred-row .item .gx-xl-5 {
    --bs-gutter-x: 6rem;
  }
}

@media (min-width: 1600px) {
  .container-fluid {
    padding: 0 5.729166666666666%;
  }
  .contact-wrapper {
    padding-left: 5.729166666666666%;
  }
  /*.about-chequred-content .item:nth-child(odd) .row [class*=col-]:nth-child(1){ padding-left: 94px;}
.about-chequred-content .item:nth-child(even) .row [class*=col-]:nth-child(1){ padding-right: 94px;}*/
  .large-gutter .row {
    margin-left: -55px;
    margin-right: -55px;
  }
  .large-gutter .row [class*="col-"] {
    padding-left: 55px;
    padding-right: 55px;
  }
  .row-col-center .row [class*="col-"] {
    width: 90%;
  }
}

h6:last-child,
h5:last-child,
h4:last-child,
h3:last-child,
h2:last-child,
h1:last-child,
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}
/*.testimonial-section-lt .read-more,
.testimonial-section-lt .read-less {
  display: block;
  color: #000 !important;
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  text-decoration: none;
  font-size: 18px;
}*/

.testimonial-section-lt .read-more,
.testimonial-section-lt .read-less {
  color: #000 !important;
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  text-decoration: none;
  font-size: 18px;
}