/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
  font-family: "Poppins-Regular";
  src: url('../fonts/Poppins-Regular.ttf');
}

@font-face {
  font-family: "Poppins-Medium";
  src: url('../fonts/Poppins-Medium.ttf');
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url('../fonts/Poppins-SemiBold.ttf');
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body{
  font-family: "Poppins-Regular"; 
  color: #444444;
}

p {
  font-family: "Poppins-Regular"; 
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins-Regular";
  font-weight: 600;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #106eea;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.top-info-bar {
  background-color: #28426D;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  height: 50px;
}

.top-info-bar .item {
  padding: 10px 0;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 20px;
}

.top-info-bar  a{
 text-decoration: none;
 color: #fff;
} 
.top-info-bar .btn-close {
  padding-left: 15px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 80px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 40px;
}

/* .scrolled-offset {
  margin-top: 70px;
} */

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 16px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 20%;
}

.navbar .active>a,
.navbar li a:hover {
  color: #28426D;
  font-weight: 600;
}

.navbar .menu-item-has-children ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .menu-item-has-children ul li {
  min-width: 200px;
}

.navbar .menu-item-has-children ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .menu-item-has-children ul a i {
  font-size: 12px;
}

.navbar .menu-item-has-children:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .menu-item-has-children .menu-item-has-children ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .menu-item-has-children .menu-item-has-children:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

a.contact {
  background: #28426D;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
}
li#menu-item-816 {
  display: none;
}
@media (max-width: 1366px) {
  .navbar .menu-item-has-children .menu-item-has-children ul {
    left: -90%;
  }

  .navbar .menu-item-has-children .menu-item-has-children:hover>ul {
    left: -100%;
  }
}

/**
    * Mobile Navigation 
    */
.mobile-nav-toggle {
  color: #333333;
  font-size: 28px;
  cursor: pointer;
  display: none !important;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #333333;
}

@media (max-width: 1199.98px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  .navbar ul {
    display: none;
  }

}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333 !important;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .menu-item-has-children ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .menu-item-has-children ul li {
  min-width: 200px;
}

.navbar-mobile .menu-item-has-children ul a {
  padding: 10px 20px;
}

.navbar-mobile .menu-item-has-children ul a i {
  font-size: 12px;
}

.navbar-mobile .menu-item-has-children ul a:hover,
.navbar-mobile .menu-item-has-children ul .active:hover,
.navbar-mobile .menu-item-has-children ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .menu-item-has-children>.drop-ul {
  display: none;
}

.navbar-mobile .menu-item-has-children:hover .drop-ul {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero .container {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.hero {
  position: relative;
  padding-top: 0;
}
.inner-hero {
  position: relative;
  padding-top: 0;
}
.hero h2 {
  color: #fff;
  margin: 5px 0 20px 0;
  font-size: 50px;
  font-family: 'Poppins-SemiBold';
  line-height: 60px;
}

#hero p {
  font-size: 18px;
  color: #fff;
}

#hero .readmore-btn {
  margin-top: 30px;
}

#hero .readmore-btn a {
  border-radius: 5px;
  color: #fff;
  padding: 11px;
  background: #48C0EB;
  color: #28426D;
  font-weight: 500;
  font-family: 'Poppins-Medium';
}

#hero .btn-get-started:hover {
  background: #247cf0;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-video-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    border-radius: 5px;
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 44px;
  margin: 0;
  color: #28426D;
  font-family: 'Poppins-SemiBold';
}
.section-title h3{
  margin: 0;
  color: #28426D;
  font-family: 'Poppins-SemiBold';
}


@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}


/*--------------------------------------------------------------
# Framework
--------------------------------------------------------------*/
.frameworks {
  overflow: visible;
  position: relative;
}

.frameworks .section-title h2 {
  margin: 0 auto;
  font-family: Poppins-Medium;
  font-weight: 600;
  font-size: 35px;
}

.frameworks .frame-main {
  padding: 40px 28px 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-top: -230px;
  background: #F6F6F6;
  position: relative;
  /* Positions the element in relation to its parent */
  z-index: 2;
  border-radius: 15px;
}

.frameworks .frameworks-details {
  display: flex;
  justify-content: space-evenly;
}

.frame-img img {
    transition: transform 0.3sease;
    width: 100%;
    max-width: 75%;
}

.frame-img {
    text-align: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
}

.frame-img img:hover {
  transform: scale(1.1);
  /* Zoom in slightly on hover */
}

.frame-img p {
    margin-bottom: 0;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 2px solid #e2e2e2;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    font-family: 'Poppins-Medium';
}

/*--------------------------------------------------------------
# Task
--------------------------------------------------------------*/
.task .task-title {
  border-right: 4px solid #48C0EB;
}

.task .section-title h2 {
  text-align: left;
  font-weight: 600;
  width: 96%;
}

.task .section-title {
  padding-bottom: 0;
}

.task .contnet p {
  font-size: 20px;
  /* padding: 0; */
  margin: 0;
}

.task .slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.task .image-slider,
.card-slider {
  width: 50%;
  box-sizing: border-box;
  padding: 10px;
}

.task .card.slick-slide.slick-current.slick-active {
  background: #48C0EB;
  color: #fff;
}

.task .image-slider img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}


.task .card {
  position: relative;
  padding: 20px;
  background: #F2F2F2;
  border: none;
  /* border: 1px solid #ddd; */
  border-radius: 10px;
  /* background: #f9f9f9; */
  margin: 0 10px 20px;
}
.task .card h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 10px;
    font-family: 'Poppins-SemiBold';
}
.task .card:hover {
    cursor: pointer;
}
.task .slick-slide {
  outline: none;
}
.task {
    overflow: visible;
}
.task .card.active {
    background-color: #05DCF7;
}
.task .left-side {
    position: sticky;
    top: 25%;
    align-self: flex-start; /* Ensures it aligns to the top */
}

.task .right-side {
    display: flex;
    flex-direction: column;
}

/* Make sure parent elements allow sticky positioning */
.task .container, .task .row {
    overflow: visible !important; /* Ensure no hidden overflow */
}

/* Optional: Ensure right side has enough height */
.task .right-side {
    min-height: 100vh; /* Adjust as needed */
}


p.number:before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  background: #28426D;
  border-radius: 50%;
  right: -12px;
  top: -7px;
  z-index: -999;
}

.task .card-slider h3 {
  text-align: left;
  font-size: 21px;
  width: 100%;
  font-weight: 600;
  color: #020727;
}

.task .card-slider p {
  text-align: left;
  font-size: 15px;
}

.task .card-slider .number {
  text-align: right;
  font-size: 22px;
  position: relative;
  z-index: 999;
  display: flex;
  color: #fff;
  justify-content: end;
  align-items: center;
}

.task .card p {
    margin-bottom: 0;
    line-height: 30px;
    text-align: justify;
    font-size: 18px;
    color: #333333;
}
.section-para p {
    line-height: 30px;
    font-size: 18px;
    color: #111;
    margin-bottom: 0;
}
.section-para {
    border-left: 4px solid #48C0EB;
    padding-left: 20px;
}
.task .img-list {
  padding: 50px;
}

.card .slick-slide .slick-current .slick-active {
  background-color: blue;
  /* Blue background when active */
  color: white;
  /* Change text color to white for contrast */
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
#hassle {
  padding: 0 0 60px;
}

#cards {
  background: #020727;
  padding: 40px;
  border-radius: 20px;
}

#cards .section-title {
  position: relative;
}

#cards .section-title::before {
  content: '';
  background-image: url(../img/Vector_4.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 35%;
  left: 5%;
  animation: rotate360 10s linear infinite;
}

/* Define keyframes for continuous rotation */
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    /* Rotates forward continuously */
  }
}


#cards .section-title h2 {
  color: #fff;
  text-align: left;
}

#cards .col {
  flex: 1;
}

#cards .col-6 {
  flex: 0 0 50%;
}

#cards .card {
  background-color: #16213E;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  color: white;
  height: 100%;
  position: relative;
  perspective: 1000px;
  min-height: 400px;
}

#cards .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}

#cards .card:hover .card-inner {
  transform: rotateY(180deg);
}

#cards .card-front,
#cards .card-back {
  position: absolute;
  width: 100%;
  height: 90%;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* align-items: center; */
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: #16213E;
}

#cards .card-front {
  color: white;
  z-index: 2;
}

#cards .card-back {
  color: white;
  transform: rotateY(180deg);
}

#cards .card-img-wrapper {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
  border-radius: 50%;
  /* background-color: #fff; */
  z-index: 1;
}

#cards .card-img-wrapper img {
  max-width: 50px;
  max-height: 50px;
  object-fit: cover;
  z-index: 2;
  padding: 5px;
}

#cards .card-img-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 5px;
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  z-index: 0;
  border: 2px solid #fff;
}

#cards .card .description {
  display: none;
  /* Hide the description by default */
  color: white;
  margin-top: 10px;
}

#cards .card:hover .description {
  display: block;
  /* Show the description on hover */
}

#cards .card h4 {
  color: white;
  /* text-align: center; */
  margin-bottom: 10px;
  font-size: 30px;
}

#cards .card-back p {
  padding: 10px;
  font-size: 20px;
}

#cards .card-img-wrapper img {
  transition: transform 0.4s ease;
}

#cards .card:hover .card-img-wrapper img {
  transform: scale(1.1);
  /* Slight zoom effect on image hover */
}

#cards .card::before {
  content: '';
  background-image: url('../img/Arrow.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 25px;
  right: 15px;
  width: 30px;
  height: 30px;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

#cards .card:hover::before {
  opacity: 0;
  /* Hide the arrow */
  visibility: hidden;
  /* Prevent interaction */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
/*--------------------------------------------------------------
# solutions
--------------------------------------------------------------*/
#solutions .list-main {
  position: relative;
}

#solutions .list-main::before {
  content: '';
  background-image: url(../img/Vector_4.png);
  background-repeat: no-repeat;
  background-size: unset;
  position: absolute;
  background-position: left center;
  width: 100%;
  height: 100%;
  z-index: -1 !important;
  top: 24%;
  left: -43%;
}

.sol-main ul{
  list-style-type: none;
}

.sol-main ul li {
    position: relative;
    margin-bottom: 5px;
    font-size: 18px;
}

.sol-main ul li:before{
  content: "";
  position: absolute;
  left: -32px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: url(../img/list-before.png) no-repeat center center;
  background-size: contain;
}

#solutions .section-title {
  position: relative;
}

#solutions .section-title h2 {
  margin-bottom: 15px;
}

#solutions .section-title p {
  width: 100%;
  font-size: 18px;
}

#solutions .list-content {
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 25px;
  border: 1px solid #48C0EB;
  border-radius: 10px;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#solutions .list-content:hover {
  transform: scale(1.05);
  /* Zoom in slightly */
}

#solutions .list-img {
  margin: 0 auto;
  padding: 20px;
  background: rgb(40, 66, 109);
  background: -moz-linear-gradient(90deg, rgba(40, 66, 109, 1) 0%, rgba(72, 192, 235, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(40, 66, 109, 1) 0%, rgba(72, 192, 235, 1) 100%);
  background: linear-gradient(90deg, rgba(40, 66, 109, 1) 0%, rgba(72, 192, 235, 1) 100%);
  border-radius: 50%;
  /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#28426d",endColorstr="#48c0eb",GradientType=1); */
  width: fit-content;
  margin-bottom: 15px;
}

#solutions .list-img img {
  width: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#solutions .list-title h2 {
  font-size: 21px;
  color: #28426D;
      font-family: 'Poppins-SemiBold';
}

#solutions .list-des p {
  color: #333333;
  font-size: 18px;
}
/*--------------------------------------------------------------
# Blog Listing
--------------------------------------------------------------*/
section#blog-listing .nav-tabs .nav-link.active,
section#case-study-listing  .nav-tabs .nav-link.active{
    background-color: #111;
    color: #fff;
    border-radius: 8px;
    border: 1px solid #111;
}
.search-bar-inside {
    width: 40%;
}
input#tabSearch {
    background-color: #F1F1F1;
}
section#blog-listing .nav-tabs,
section#case-study-listing .nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-bottom: 0;
}
section#blog-listing li.nav-item,
section#case-study-listing li.nav-item {
    border: 1px solid #E4E4E4;
    border-radius: 10px;
}
section#blog-listing .nav-tabs .nav-link,
section#case-study-listing  .nav-tabs .nav-link{
    color: #111;
}
section#blog-listing .form-control:focus,
section#case-study-listing .form-control:focus{
    color: unset;
    background-color: unset;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}
.video-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
.video-modal-content {
    background: #fff;
    padding: 40px 50px 40px;
    max-width: 800px;
    width: 90%;
    position: relative;
    border-radius: 10px;
}
div#contactForm input {
    border: 1px solid #E3E3E3;
    font-size: 16px;
    font-weight: 400;
    color: #696974;
    margin: 10px 0px;
    background-color: #F9F9F9;
    padding: 10px;
    border-radius: 10px;
}
.form-control:focus {
    color: unset;
    background-color: #fff !important;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}
div#contactForm .wpcf7-submit {
    background: #006699;
    color: #fff !important;
    border-radius: 10px;
    padding: 12px 40px;
    margin-top: 20px;
    border: none;
    margin: 30px auto 0;
}
.video-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	cursor: pointer;
}
.highlight-box {
    background-color: #F5F7F8;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.highlight-title {
    display: flex
;
    align-items: center;
    margin-bottom: 10px;
    gap:10px;
}
.compliance-featured-img img {
    width: 100%;
    border-radius: 10px;
}
h1.compliance-title {
    font-size: 32px;
    color: #28426D;
    line-height: 54px;
}
p.highlight-content {
    font-family: 'Poppins-SemiBold';
    color: #111;
    line-height: 26px;
}
.highlight-box p {
    margin-bottom: 0;
    color: #111;
}
section#case-study-banner {
    padding-bottom: 0;
}
h1.case-study-title {
    line-height: 48px;
    color: #28426D;
    font-size: 38px;
}
.case-study-date span {
    color: #0071BC;
    font-size: 23px;
}
.case-study-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px #99999942;
}
.case-study-form .wpcf7-submit {
    background: #006699;
    color: #fff !important;
    border-radius: 10px;
    padding: 8px 40px;
    margin-top: 20px;
    border: none;
}
section#single-case-study {
    padding-bottom: 0;
}
.case-study-form input {
    border: 1px solid #E3E3E3;
    font-size: 16px;
    font-weight: 400;
    color: #696974;
    margin: 10px 0px;
    background-color: #F9F9F9;
    padding: 10px;
    border-radius: 10px;
}
section#blog-inner-hero {
    background-color: #E7F6FF;
}
section#blog-inner-hero .section-title {
  text-align: left;
}
.blog-side-post {
  background-color: #fff;
  overflow: hidden;
  border-radius: 15px; 
}
.blog-feature-post img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.blog-feature-post {
    border-radius: 20px;
    overflow: hidden;
}
.blog-side-post-info h4 {
    font-size: 22px;
    line-height: 28px;
}
.blog-side-post-info p {
    color: #2383C5;
    font-size: 18px;
}

.blog-side-post-info {
    padding: 10px;
}
.blog-feature-post-info {
    background-color: #fff;
    padding: 30px;
}
.blog-feature-post a {
    color: #111;
}
.blog-feature-post-info .post-date {
    color: #2383C5;
    font-size: 18px;
      margin-bottom: 15px;
}
.case-study-feature-post a {
    color: #111;
}
.blog-feature-post-info h2,.case-study-feature-post-info h2,
.case-study-side-post-info h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}
.blog-feature-post-info p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-bottom: 0;
}
.blog-side-post a {
    color: #111;
}
.blog-hero-right .blog-side-post a {
    display: flex
;
    align-items: center;
    gap: 10px;
}
.blog-hero-right {
    gap: 20px;
}
.blog-side-post img {
    width: 330px;
    height: 250px;
    overflow: hidden;
    object-fit: cover;
    border-radius: 15px 0px 0px 15px;
}

.blog-list-box img{
  margin-bottom: 15px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

section#blog-listing {
  position: relative;
}
section#blog-listing .tab-content:before {
  content:unset;
}

.blog-list-box {
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 10px;
}
.blog-list-box h3 {
    color: #111;
    font-size: 20px;
    line-height: 26px;
}

.webinar-list-box h3{
  
  color: #111;
  font-size: 20px;
  line-height: 26px;

}
.blog-list-box {
    margin-bottom: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.webinar-list-box img {
  margin-bottom: 15px;
  width: 100%;
  height: 320px;
  border-radius: 15px;
  object-fit: cover;
}
.webinar-author .slick-slide img {
    display: unset;
    width: 250px !important;
    max-width: 180px !important;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0em 0.5em 1em !important;
}
section#related-webinar .webinar-list-box img {
  height: 250px;
}
.webinar-date-contry a,.webinar-date-contry p{
  color: #727272;
}
.webinar-date-contry {
  gap: 10px;
}
.webinar-list-extra-info a{
  color: #000000;
}
.webinar-list-extra-info{
  border-bottom: 1px solid #C9C9C9;
}
.webinar-contry{
  border-left: 2px solid #727272;
    padding-left: 10px;
}
.blog-list-extra-info {
    display: flex
;
    align-items: center;
    gap: 10px;
}

.page-numbers {
  background-color: transparent;
  color: #28426D !important;
  padding: 6px 14px;
  border-radius: 5px;
  border: 1px solid #28426D;
}
span.page-numbers.current {
  background-color: #28426D;
  color: #fff !important;
}
.pagination-wrapper {
  display: flex
;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
p.blog-info-blog {
    background: #0071BC33;
    color: #0071BC;
    padding: 5px 20px;
    border-radius: 20px;
}
p.blog-info-category {
    background: #FFE7B9;
    color: #FFAA08;
    padding: 5px 20px;
    border-radius: 20px;
}
p.blog-date {
    color: #28426D;
    font-size: 18px;
    margin-bottom: 0;
}
.blog-list-box p {
    font-size: 16px;
    line-height: 26px;
}
.blog-list-box a.read-more img {
    width: auto;
    margin-bottom: 0;
    height: auto;
}
.blog-list-box a.read-more {
    color: #28426D;
    font-size: 18px;
    font-family: 'Poppins-Regular';
    font-weight: 500;
}
.social-share {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.blog-detail-box img {
    width: 100%;
    margin-bottom: 10px;
}
.social-share p {
    margin-bottom: 0;
    margin-right: 5px;
    color: #28426D;
}
h1.blog-title {
    color: #28426D;
    font-size: 38px;
}
.post-social-media {
    display: flex
;
}
.post-social-media img {
    width: 70%;
    margin-bottom: 0;
}
main#primary\ single-blog-page .container {
    max-width: 1100px;
}

section#related-blog {
    padding-top: 0;
}
.related-blog h2{
  color: #28426D;
}
.date-autor{
  gap:20px;
  align-items: center;
}

.date-autor span{
  font-size: 20px;
  font-weight: 200;
}
.author-img img{
  width: 75px;
    height: 75px;
    border-radius: 50px;
    margin: 0;
}
.blog-author-name {
  align-items: center;
  gap:10px;
}
.blog-author-name p{
  font-size: 24px;
  margin: 0;
  color: #000000;
}
.blog-author-name samp{
  font-weight: 200;
}
#stayinformd{
  background-color: #E7F6FF;
}
.stayinformd-from {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 0px #99999942;
}
.stayinformd-from .wpcf7-submit {
  background: #006699;
  color: #fff !important;
  border-radius: 10px;
  padding: 8px 40px;
  margin-top: 20px;
  border: none;
}
.stayinformd-from input, .stayinformd-from textarea {
  border: 1px solid #E3E3E3;
  font-size: 16px;
  font-weight: 400;
  color: #696974;
  margin: 10px 0px;
  background-color: #F9F9F9;
  padding: 10px;
  border-radius: 10px;
}
.stayinformd-title h2{
  color: #28426D;
  font-size: 44px;
  font-weight: 600;
}

.wabinar-listing h2,.wabinar-listing p{
  text-align: left;
}
/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
/* Testimonials Section */
.testimonials {
  padding: 40px 0;
  background-color: #f9f9f9;
  z-index: 000000;
  position: relative;
}


/* Testimonials Wrapper */
.testimonials-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  align-items: stretch;
  transition: all 2s ease;
}

/* Each Testimonial Box */
.testimonial-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
}

/*div#testimonial-3 {
  flex: 1.7; 
  justify-content: flex-start;
  transition: 0.6s;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

div#testimonial-3 .testimonial-image {
  flex: 0 0 200px;
  overflow: hidden;
  border-radius: 8px;
}

div#testimonial-3 .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

div#testimonial-3 .testimonial-content {
  opacity: 1;
  width: 300px;
  transform: translateX(0);
  padding: 20px;
}
*/
/* Image Section */
.testimonial-image {
  flex: 0 0 200px;
  /* Fixed width for images */
  overflow: hidden;
  /* Prevent overflow */
  border-radius: 8px;
  width: 40%;
  z-index: 11111;
}



.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2s ease;
  filter: invert(26%) sepia(49%) saturate(327%) hue-rotate(158deg) brightness(98%) contrast(94%);
}

/* Hover Effect for any testimonial box */
.testimonial-box:hover {
  justify-content: flex-start;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  flex: 1.7;
  /* Expand the hovered box */
}

.testimonial-box:hover .testimonial-image img {
  transition: all 2s ease;
  filter: unset;
}

/* Content Section */
.testimonial-content {
  opacity: 0;
  transform: translateX(-100%);
  transition: 0.6s;
  padding: 0 20px;
  width: 55%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Hover Effect: Show content from right */
.testimonial-box:hover .testimonial-content {
  opacity: 1;
  transform: translateX(0%);
  padding: 20px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Shrink all other boxes when one is hovered */
.testimonials-wrapper .testimonial-box:not(:hover) {
  flex: 0.8;
  /* Shrink non-hovered boxes */
}

/* Reset flex of #testimonial-3 when not hovered */
.testimonials-wrapper .testimonial-box:not(:hover) #testimonial-3 {
  flex: 1;
  /* Reset to normal size */
  justify-content: center;
  /* Center its content */
  transition: all 2s ease;
  /* Smooth transition */
}

.testimonial-content img {
  width: 30px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1199.98px) {
  .testimonial-content {
    width: 70%;
  }

  .testimonial-box:hover {
    flex: 2.4;
  }

  .testimonial-image img {
    width: 70%;
  }
}

/* Tablet adjustments (iPad: between 768px and 1024px) */
@media screen and (max-width: 991.98px) {
  .testimonial-image {
    width: 100%;
  }

  .testimonials-wrapper {
    flex-direction: row;
    /* Align testimonials in a row */
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }

  .testimonial-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.6s;
    filter: invert(26%) sepia(49%) saturate(327%) hue-rotate(158deg) brightness(98%) contrast(94%);
    border-radius: 10px;
    object-position: top;
  }

  .testimonials-wrapper .testimonial-box {
    flex: 1 1 calc(50% - 20px) !important;
    display: block;
  }

  .testimonial-box:hover {
    flex: unset;
    /* Disable hover effect */
  }

  /* Ensure content is always visible without hover */
  .testimonial-content {
    opacity: 1;
    /* Always visible */
    width: 300px;
    /* Fixed width */
    transform: translateX(0);
    padding: 20px;
    position: relative;
    /* No absolute positioning */
  }

  /* Reset flex behavior for tablet */
  .testimonials-wrapper .testimonial-box {
    flex: 1 1 calc(50% - 20px);
    /* Two columns layout */
  }

  .testimonial-box {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

  }

  .testimonial-box .testimonial-image {
    flex: 0 0 150px;
    /* Fixed image width */
  }
}

/* Mobile and Tablet adjustments */
@media screen and (max-width:767.98px) {
  .testimonials-wrapper {
    flex-direction: column;
    /* Stack boxes vertically */
    gap: 10px;
  }

  .testimonial-image img {
    width: 100%;
  }

  .testimonial-box {
    flex: unset;
    /* Reset flex behavior for stacking */
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  .testimonial-box:hover {
    flex: unset;
    /* Disable hover effect */
  }

  /* Ensure content is always visible on mobile without hover */
  .testimonial-content {
    opacity: 1;
    /* Always visible */
    width: 300px;
    /* Fixed width */
    transform: translateX(0);
    padding: 20px;
    /* Add padding */
    position: relative;
    /* No absolute positioning */
  }

  /* Reset flex behavior for mobile */
  .testimonials-wrapper .testimonial-box {
    flex: 1 !important;
    display: flex !important;
  }

  .testimonial-box:hover .testimonial-image img {
    filter: unset;
  }

  .testimonial-box .testimonial-image {
    flex: 0 0 150px;
    /* Fixed image width */
  }

  /* Remove hover transition for mobile */
  .testimonial-box:hover {
    flex: 1;
    /* Reset flex on hover */
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/* --------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* .services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #106eea;
}

.services .icon-box:hover .icon {
  border-color: #106eea;
} */



/*--------------------------------------------------------------
#blog
--------------------------------------------------------------*/
.blog-section {
  background-color: #F2F2F2;
}

.blog-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.blog-card img {
  width: 100%;
  height: auto;
}

.blog-card .category {
  display: inline-block;
  background-color: #00c1dd;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.blog-card h5 {
  font-weight: bold;
  color: #333;
}

.blog-card p {
  font-size: 18px;
  color: #333333;
}

.blog-card .read-more {
  font-size: 18px;
  color: #28426D;
  font-weight: 500;
  position: relative;
}

.blog-card .read-more:before {
  content: '';
  background-image: url('../img/fi_arrow-down-right.png');
  /* Path to your image */
  background-repeat: no-repeat;
  background-size: contain;
  /* Scale the image properly */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 100%;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faqs-list {
  padding: 0 50px 50px;
  border-radius: 10px;
}

.faq .section-title h2 {
  color: #fff;
}


.faqs-list .accordion {
  border: none;
}

.faqs-list .accordion-item {
  border: none;
  margin-bottom: 15px;
  background: #ffffff1c;
  color: #fff;
  border-radius: 5px !important;
}

.faqs-list .accordion-button::after {
  content: none;
}

.faqs-list .accordion-button {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  background: none;
  padding: 0;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.faqs-list .accordion-button .faq-number {
  background-color: #ffffff1c;
  /* padding: 10px 15px; */
  font-size: 18px;
  height: 45px;
  margin-left: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  width: 45px;
  justify-content: center;
  border-radius: 5px;
}

.faqs-list .accordion-button:not(.collapsed) {
  color: #fff;
}

.faqs-list .accordion-button p {
  margin: 0;
  padding: 15px;
  font-size: 20px;
  font-family: 'Poppins-Medium';
  font-weight: 500;
  color: #fff;
}

.accordion-body {
  padding-left: 60px;
  padding-top: 0;
  font-size: 18px;
}

/* .faqs-list .accordion-button:not(.collapsed) .faq-number {
  background-color: #fff;
} */


.accordion-button:focus {
  box-shadow: none !important;
}

.faqs-list .accordion-collapse {
  border: none;
  /* background-color: #103778; */
  color: #fff;
  padding: 0;
  border-radius: 5px;
}

.cta .cta-content {
  padding: 90px 40px;
}

.cta .cta-content h3 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 10px;
}

.cta .cta-content p {
  color: #fff;
  font-size: 24px;
}

#cta .readmore-btn {
  margin-top: 30px;
}

.cta .readmore-btn a {
    border-radius: 5px;
    padding: 11px 18px;
    background: #05DCF7FF;
    color: #003253;
    font-weight: 500;
    font-family: 'Poppins-SemiBold';
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cta-bg {
  position: relative;
  /* Ensures pseudo-element is positioned relative to this container */
}
/*
.cta-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 87%;
  width: 100%;
  z-index: 1;
  height: 170px;
  background: url(../img/Mask_group.png) no-repeat;
  background-size: contain;
  animation: rotate30 10s linear infinite alternate-reverse;
}*/

/* Define keyframes for the rotation */
@keyframes rotate30 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(3deg);
    /* Rotates to 30 degrees */
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0;
  color: #fff;
  font-size: 14px;
  background: #020727;
  position: relative;
}


#footer .footer-contact a img {
  margin-bottom: 30px;
}

#footer .address p,
#footer .address a {
  font-weight: 500;
  font-size: 18px;
  color: #fff !important;
}

#footer .footer-top {
  padding: 60px 0 0px 0;
  background: #020727;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .service-col-part ul {
  column-count: 2;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .tnp.tnp-subscription {
  margin: 0;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer form {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

#footer .tnp-privacy-field {
  order: 3;
}

#footer .tnp-field-button {
  order: 2;
}

#footer .footer-top .footer-contact p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 0;
  color: #fff;
  opacity: 0.8;
}

#footer .footer-top .footer-contact a {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

#footer .footer-top .footer-menu-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer li:before {
  content: '';
  position: absolute;
  left: -20px;
  width: 100%;
  height: 100%;
  background: url(../img/Vector.png) no-repeat;
  margin-top: 5px;
}

#footer .footer-top .footer-links ul li {
  margin: 10px 0;
  position: relative;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 400;
  font-size: 18px;
  opacity: 0.8;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ffffff20;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 3%;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#footer .footer-top .social-links a:hover {
  background: #fff;
  color: #233E7D;
  text-decoration: none;
}

#footer .footer-contact .social-links {
  display: flex;
  margin-bottom: 50px;
}

#footer .copyright {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
}


.tnp-subscription div.tnp-field {
  position: relative;
}

#footer .tnp-field.tnp-field-email {
  position: relative;
  background: #fff;
  width: 70%;
  border-radius: 5px;
  order: 1;
}

#footer .tnp-field-email label {
  color: #fff;
  font-size: 16px;
  font-family: 'Onest-Light';
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 12px;
  padding: 0 5px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  text-align: center;
}

#footer .tnp-field-email input[type=email]:focus~label {
  display: none;
}

#footer .tnp-field-email:focus-within label {
  display: none;
}

.tnp-subscription input[type=text],
.tnp-subscription input[type=email],
.tnp-subscription input[type=submit],
.tnp-subscription select,
.tnp-subscription textarea,
.tnp-profile input[type=text],
.tnp-profile input[type=email],
.tnp-profile input[type=submit],
.tnp-profile select,
.tnp-profile textarea {
  width: 100%;
  padding: 0.7em;
  display: block;
  border: 1px solid #fff !important;
  color: #000 !important;
  border-color: #ddd;
  background-color: transparent !important;
  border-radius: 8px;
  background-image: none;
  text-shadow: none;
  font-size: 1em;
  margin: 0;
  line-height: normal;
  box-sizing: border-box;
}

.tnp-subscription input[type=email]:focus-visible {
  outline: none;
}

#footer .tnp-field-email label {
  display: none;
}

.footer-email input#email:focus {
  box-shadow: unset;
}

.footer-email input#email::placeholder {
  color: #fff;
  text-align: center;
}

#footer .tnp-subscription input.tnp-submit,
.tnp-profile input.tnp-submit {
  color: #fff !important;
  background: #48C0EB !important;
  width: 100% !important;
  font-size: 16px !important;
  font-weight: 400;
  border: 0 !important;
  border-radius: 5px !important;
  margin-left: 10px;
  padding-right: 30px;
  padding-left: 30px;
}

#footer .newsletter {
  width: 70%;
}

#footer .newsletter h2 {
  font-size: 24px;
  font-weight: 500;
}

.footer-menu-title.legal {
  padding-top: 20px;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

/* Solution Page */
.main-cl {
  padding: 60px 0;
}

.new-frame .frame-main {
  padding: 30px 40px;
  margin-top: -130px;
}


.new-frame .frame-img img {
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.main-frame .frame-img {
    background-color: unset;
    padding: 0;
}

.main-frame {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.frame-title {
  padding-left: 15px;
}

.frame-title p {
  font-size: 18px;
  margin: 0;
  color: #333333;
  font-weight: 500;
  font-family: "Poppins-Regular";
}

.new-frame .col-lg-4:nth-child(1) .main-frame,
.new-frame .col-lg-4:nth-child(2) .main-frame {
  border-right: 2px solid #D1D1D1;
}

.new-frame .col-lg-4:nth-child(3) .main-frame {
  border-right: none;
}

.around .section-title h2 {
  text-align: left;
  font-weight: 600;
}

.around .section-content p {
  font-size: 18px;
  color: #333333;
  font-weight: 400;
}

.glide {
  background-color: #F2F2F2;
}

#glide-new{
  background-color: #020727;
}
#glide-new .section-title h2{
  color: #fff;
}

.glide-main {
  padding: 2%;
  background: #fff;
  margin: 10px;
  border-radius: 10px;
  overflow: visible;
  margin-top: 50px;
  min-height: 300px;
}

.glide-img {
  /* overflow: visible; */
  width: fit-content;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#28426d", endColorstr="#48c0eb", GradientType=1);
  padding: 15px;
  border-radius: 10px;
  margin-top: -50px;
  background: linear-gradient(90deg, rgba(40, 66, 109, 1) 0%, rgba(72, 192, 235, 1) 100%);
  margin-bottom: 25px;
}

.glide-img img {
    width: 50px;
    height: 50px;
    overflow: visible;
}

.glide .sub-content p {
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 400;
  color: #333333;
}

.glide-content .glide-title h2 {
  font-size: 20px;
  color: #28426D;
  font-weight: 600;
}

.glide-content .glide-details p {
  font-size: 18px;
  color: #333333;
  font-weight: 400;
  min-height: 100pxF;
}

.glide .slick-dots li button:before {
  content: '';
  font-size: 11px;
  width: 12px;
  height: 12px;
  background-color: #28426D;
  border-radius: 50%;
  opacity: 0.3;
}

.glide .slick-dots li.slick-active button:before {
  width: 15px;
  height: 15px;
  background: linear-gradient(360deg, rgba(40, 66, 109, 1) 0%, rgba(72, 192, 235, 1) 100%);
  opacity: 1;
  border-radius: 50%;
}

.glide .slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
  color: #3881AC;
}
.assist-traditional .left-col:after {
    content: "vs";
    position: absolute;
    top: 10px;
    right: -25px;
    font-size: 20px;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    text-align: center;
    z-index: 11111;
    background-color: #0E3970;
}
.assist-main {
    background-color: #fff;
    color: #111;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px;
    height: 100%;
}
.assist-traditional {
  background-color: #0E3970;
  z-index: 00000;
  position: relative;
}
.assist-traditional .section-title h2 {
  color: #fff;
}
.assist-traditional .assist-title {
    margin-bottom: 20px;
    background-color: #2D8BAD;
    color: #fff;
    padding: 15px;
}

.assist-traditional .col-lg-6.right-col {
  color: #fff;
}

.assist-traditional .left-col {
  color: #fff;
  position: relative;
}

.assist-traditional .assist-list-details {
    position: relative;
    overflow: hidden;
    margin: 15px 15px 20px;
    transition: transform 500msease, box-shadow 500msease;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 15px;
}
.assist-traditional .assist-list-details:last-child{
  border-bottom: none;
  margin-bottom: 0;
}

.assist-traditional .assist-list-details .assist-list-title h3 {
  font-size: 22px;
}

.assist-traditional .assist-list-details .assist-content p {
  font-size: 18px;
  margin-bottom: 0;
}

.assist-traditional .left-col .assist-list-details {
}
.traditional-title {
    background-color: #287CBD;
    color: #fff;
    margin-bottom: 20px;
    color: #fff;
    padding: 15px;
}
.traditional-title h2{
  margin-bottom: 0;
}
.stay .section-title {
  width: 70%;
}

section#power {
  position: relative;
  background-color: #020727;
  color: #fff;
  z-index: 1;
}
section#power-new {
  position: relative;
  background-color: #F2F2F2;
  color: #fff;
  z-index: 1;
}

section#power .section-title {
  margin-bottom: 30px;
}
section#power-new .section-title {
  margin-bottom: 30px;
}

section#power .section-title h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}
section#power-new .section-title h2 {
  color: #28426D;
  font-size: 40px;
  margin-bottom: 20px;
  text-align: left;
}

section#power .section-title p {
  width: 100%;
  color: #fff;
}
section#power-new .section-title p {
  width: 100%;
  color: #333333;
  text-align: left;
}

section#power .accordion-item {
    background-color: transparent;
    color: #fff;
    border: none;
    border-radius: 0;
    border-left: 4px solid #48C0EB;
    margin-bottom: 15px;
}
section#power-new .accordion-item {
  background-color: transparent;
  color: #000000;
  border: none;
  border-radius: 0;
  border-left: 4px solid #48C0EB;
  margin-bottom: 15px;
}
section#power  .accordion-button::after{
  content: unset;
}
section#power-new  .accordion-button::after{
  content: unset;
}
section#power  .accordion-body {
    padding-left: 20px;
  }
  section#power-new  .accordion-body {
    padding-left: 20px;
  }
section#power .accordion-button:not(.collapsed){
  color: #fff;
  background-color: transparent;
}
section#power-new .accordion-button:not(.collapsed){
  color: #28426D;
  background-color: transparent;
}
section#power button.accordion-button {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
section#power-new button.accordion-button {
  background-color: transparent;
  border: none;
  color: #28426D;
  font-size: 20px;
  font-weight: 600;
}
.power .tab-container {
  display: flex;
  flex-wrap: wrap;
}

.power .tabs {
  list-style-type: none;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 11px;
  margin-bottom: 20px;
}

.power ul.tabs li {
  display: flex;
  align-items: center;
  background: #ffffff1a;
  width: fit-content;
  height: fit-content;
  padding: 20px;
  border-radius: 15px;
  font-size: 22px;
  margin-bottom: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.power ul.tabs li p {
  margin-bottom: 0;
}

.power ul.tabs li .arrow-img {
  padding-left: 15px;
}

.power ul.tabs li .arrow-img img {
  width: 15px;
}

/* .power .tabs button {
  background: #3a3a4f;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
} */

.tab-content .content {
  display: none;
}

.tab-content .content.active {
  display: block;
}

.power .tab-item img {
  width: 40px;
}

.power .content-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.power .tab-content {
  position: relative;
  background: #ffffff24;
  width: 60%;
  padding: 20px;
  border-radius: 10px;
}

.power .tab-main {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}

.power .tab-title h2 {
  font-size: 22px;
  margin-bottom: 0;
}

.power .tab-img {
  background: #2A4D87;
  padding: 10px;
  border-radius: 12px;
}

.power .tab-title {
  padding-left: 15px;
  width: 80%;
}

.power ul.tabs li.active {
  background: #2D8BAD;
}

.power ul.tabs li:hover {
  background: #2D8BAD;
}

.tab-content:before {
  content: '';
  position: absolute;
  width: 342px;
  height: 8px;
  background: #2D8BAD;
  border-radius: 10px;
  bottom: 15px;
}

section.power:before {
  content: '';
  position: absolute;
  background-image: url(../img/P-1.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
}


.stay .left-side {
  display: inline-block;
  float: left;
  position: sticky;
  top: 230px;
}

.stay .right-side {
  display: inline-block;
  vertical-align: top;
  float: right;
}

.stay:before,
.stay:after {
  content: "";
  display: table;
  clear: both;
}

/* .development-services .left-side p {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
}

.development-services .single-service-box {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #99999942;
}

.development-services .service-box {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #D9D9D9;
  padding-bottom: 10px;
}

.development-services .service-box h3 {
  color: #000;
  font-size: 22px;
  font-weight: 600;
}

.development-services .service-box h4 {
  color: #009800;
  font-size: 22px;
  font-weight: 600;
} */


.stay .section-title h2 {
  text-align: left;
  font-weight: 600;
}

.stay .content {
  position: relative;
}

.stay .content p {
  color: #333333;
  font-size: 18px;
}

.stay .secure-title h3 {
  color: #28426D;
  font-size: 20px;
}

.stay .secure-content p {
  color: #333333;
  font-size: 18px;
}

.stay .secure-main {
  background: #fff;
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
}

.stay {
  overflow: visible;
}

/* .sol-cta .cta-content {
  padding: 91px 40px;
} */

.sol-cta .readmore-btn a {
  border-radius: 8px;
  font-size: 18px;
  color: #003253;
  padding: 11px;
  background: #05DCF7FF;
  font-weight: 500;
}

.page-template-iso .glide-main {
  margin: 10px;
  height: 200px;
  margin-top: 50px;
}
.page-template-iso .glide-img {
  margin-top: -40px;
}
.new-power .section-title p {
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.page-id-371 .glide-main{
      height: 230px;
}

/* Tabs Container */
.new-power .tab-container {
  margin-top: 20px;
}

.new-power ul.tabs {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: block;
}

.new-power ul.tabs li {
  display: block;
  padding: 10px 0;
  cursor: pointer;
  color: #ffffffcc;
  transition: color 0.3s ease;
  border: none;
  border-radius: 0;
  background: none;
  width: 100%;
}

.new-power ul.tabs li.active {
  color: #00EBFFFF;
  background: none;
}

.new-power ul.tabs li:hover {
  color: #2D8BAD;
  background: none !important;
}

.new-power .index-main {
  display: flex;
}

/* Tab Index and Title */
.new-power ul.tabs li .index-number {
  display: inline-block;
  margin-right: 10px;
}

.new-power ul.tabs li .index-number p {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.new-power ul.tabs li .index-title {
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #2D8BAD;
  padding-bottom: 5px;
  margin-left: 15px;
}

.new-power ul.tabs li .index-title p {
  font-size: 28px;
  margin: 0;
  width: 100%;
}

/* Tab Content Container */
.new-power .content-container {
  margin-top: 20px;
}

.new-power .tab-content {
  background: none;
  width: 70%;
  padding: 10px;
  border-radius: 0;
  position: relative;
}

.new-power .tab-content .content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.new-power .tab-content .content.active {
  display: block;
}

/* Tab Items */
.new-power .tab-item {
  margin-bottom: 20px;
}

.new-power .tab-item:last-child {
  margin-bottom: 0;
}

/* Sub-title and Sub-content */
.new-power .tab-sub-tc .sub-title {
  margin-bottom: 15px;
  padding-left: 15px;
}

.new-power .tab-sub-tc .sub-title h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.new-power .tab-sub-tc .sub-title p {
  font-size: 18px;
  color: #E5E5E5;
  padding-left: 0;
}
.page-template-iso .tab-sub-tc {
  border-left: 4px solid #1B9EBD;
}
.page-template-iso .new-power .tab-title {
  padding-left: 15px;
  width: 100%;
  margin-top: 30px;
}
.page-template-iso .tab-main-tc {
  border-left: 4px solid #1B9EBD;
}
.new-power .tab-title {
  padding-left: 15px;
  width: 100%;
  margin-top: 30px;
}

/* Main Title and Content */
.new-power .tab-title h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #fff;
}

.page-template-custom-webpage .new-power .tab-item p {
  color: #E5E5E5;
  margin-top: 25px;
  padding-left: 20px;
  font-size: 22px;
  position: relative;
}


.new-power .tab-content:before {
  display: none;
}


section.new-power:before {
  display: none;
}
.page-template-custom-webpage .new-power .tab-item p:before {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  background: linear-gradient(360deg, rgba(40, 66, 109, 1) 0%, rgba(72, 192, 235, 1) 100%);
  left: -1%;
  border-radius: 50%;
  top: 13%;
}
.single-service-box {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 14px;
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.service-box h3 {
  color: #28426D;
  font-size: 20px;
  font-weight: 600;
}

.service-box {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #C3C3C3;
  padding-bottom: 10px;
}

.single-service-box p {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
}

.streamline .section-title h2 {
  margin-bottom: 15px;
}

.streamline .section-title p {
  width: 70%;
  font-size: 18px;
  margin: 0 auto;
}

.success {
  background: #F2F2F2;
}

.success .section-title h2 {
  margin-bottom: 15px;
}

.success .section-title p {
  width: 80%;
  font-size: 18px;
  margin: 0 auto;
}

.success .success-main {
  border-left: 4px solid #1B9EBD;
  padding-left: 10px;
}

.success .success-main .success-title h3 {
  font-size: 22px;
  color: #020727;
  font-weight: 600;
}

.success-content {
  width: 80%;
}

.success .success-main .success-content p {
  font-size: 18px;
  font-weight: 400;
  color: #434444;
}

.difference-at {
  padding: 60px 0;
  background: linear-gradient(90deg, rgba(40, 66, 109, 1) 48%, rgba(14, 57, 112, 1) 48%);
}

.difference-at .titles-row {
  display: flex;
  justify-content: space-around;
  color: #fff;
  margin: 0 auto;
  text-align: center;
}

.difference-at .comparison-row {
  display: flex;
  align-items: center;
}

.difference-at .comparison-row .assist-content {
  width: 40%;
  clip-path: polygon(25px 0%, 100% 0%, 100% 100%, 0% 100%);
  background-color: #2D8BAD;
  padding: 10px;
  color: #fff;
  font-size: 20px;
  padding-left: 30px;
}

.difference-at .comparison-row .traditional-content {
  width: 40%;
  clip-path: polygon(0% 0%, calc(100% - 25px) 0%, 100% 100%, 0% 100%);
  background-color: #3467BB;
  padding: 10px;
  color: #fff;
  font-size: 20px;
  padding-left: 50px;
}

.difference-at .comparison-row .connector {
  text-align: center;
  background-color: #48C0EB;
  color: #0C315B;
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  width: 194px;
  height: 96px;
}

.difference-at .assist-content p,
.difference-at .traditional-content p {
  width: 80%;
}

.assist-traditional .comparison-row:nth-child(3) .traditional-content {
  padding: 25px 0 25px 50px;
}

.page-template-custom-webpage .sol-cta .cta-content {
  padding: 109px 40px;
}
section#framework-assist-traditional {
    background: rgb(40, 66, 109);
    background: linear-gradient(90deg, rgba(40, 66, 109, 1) 50%, rgba(14, 57, 112, 1) 50%);
    color: #fff;
}
section#framework-assist-traditional .section-title h2 {
    color: #fff;
}
.framework-assist-title {
    text-align: center;
}
.framework-assist-list-details {
    background: linear-gradient(110deg, transparent 25px, #2D8BAD 26px);
    padding: 25px 20px;
    margin-bottom: 15px;
    width: -webkit-fill-available;
}

.framework-assist-title h2 {
    font-size: 22px;
    margin-bottom: 25px;
}
.framework-assist-content p {
    padding-left: 20px;
    margin-bottom: 0;
}
.framework-assist-list-details2 {
    position: relative;
    padding: 25px 20px;
    margin-bottom: 15px;
    width: -webkit-fill-available;
    background: none; /* Remove background from main div */
    overflow: hidden;
}

.framework-assist-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #3467BB;
    transform: skewX(-10deg);
    transform-origin: top right;
    z-index: -1;
}

.framework-assist-content {
    position: relative;
    z-index: 1;
}

/* About Us */
.vision .section-title {
  text-align: left;
}

.vision .section-title h2 {
  margin-bottom: 15px;
}

.vision .section-title p {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
}

.vision .vision-main .vision-title h3 {
  font-size: 44px;
  color: #28426D;
  font-weight: 600;
}
.vision .vision-main .vision-content p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}
.inner-hero {
  position: relative;
}
.inner-hero .inner-hero-content {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  color: #ffff;
}
.inner-hero .inner-hero-content h1 {
  color: #fff;
  font-size: 58px;
}
.compilance .section-title h2 {
  text-align: left;
}
.section-content p {
  font-size: 18px;
  color: #333333;
}
.leadership .section-title h2 {
  margin-bottom: 15px;
}
.leadership .section-title p {
  width: 100%;
}
.leadership-main .leader-image,
.leadership-main .leader-content {
  margin: 0 auto;
  text-align: center;
}
.leadership-main .leader-content p {
  margin: 10px 0;
  font-size: 18px;
  color: #4F4F4F;
}
.leadership-main .leader-content h4 {
  font-size: 24px;
  color: #28426D;
}
.touch .section-title h2 {
  text-align: left;
}

.social-bg {
  position: relative;
  border: 1px solid #2383C5;
  background: #fff;
  background-clip: padding-box;
  box-shadow: 0px 0px 10px 0px #9999994a;
  border-radius: 20px;
  padding: 50px 30px;
}
.contact-social-icon .section-title h2 {
  margin-bottom: 15px;
}
.contact-social-icon .section-title p {
  width: 100%;
}
.contact-social-icon .social-media {
  text-align: center;
  margin-bottom: 15px;
}
.contact-social-icon .details {
  text-align: center;
}
.contact-social-icon .detailsh4 {
  font-size: 20px;
  color: #333333;
}
.contact-social-icon .details p,
.contact-social-icon .details a {
  font-size: 18px;
  color: #333333;
}
.inner-page-form {
  background: #E7F6FF;
}
.inner-page-form .inner-form-bg {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 0px #99999942;
}
.inner-page-form input, .inner-page-form textarea {
  border: 1px solid #E3E3E3;
  font-size: 16px;
  font-weight: 400;
  color: #696974;
  margin: 10px 0px;
  background-color: #F9F9F9;
  padding: 10px;
  border-radius: 10px;
}
.inner-page-form input:focus, .inner-page-form textarea:focus {
  box-shadow: none;
  border: 1px solid #E3E3E3;
  background-color: #F9F9F9;
}
.inner-page-form input:focus-visible, .inner-page-form textarea:focus-visible {
  outline: none;
}
.inner-page-form .wpcf7-submit {
 background: #006699;
  color: #fff !important;
  border-radius: 10px;
  padding: 8px 40px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}
.inner-page-form input::placeholder,
.inner-page-form textarea::placeholder {
  color: #333333 !important;
  font-size: 16px;
  font-weight: 400;
}
.inner-page-form .section-title {
  text-align: left;
}
.inner-page-form .section-title h2{
margin-bottom: 15px;
}
.inner-page-form .section-title p {
  width: 100%;
  font-size: 18px;
  color: #333333;
}
.inner-page-form .form-content {
  width: 80%;
  position: relative;
}
.inner-page-form .form-content:before {
  content: '';
  position: absolute;
  background-image: url(../img/Design.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
  top: 70%;
}

/* Privacy Policy */
.assurance .assurance-content p {
  font-size: 20px;
  color: #333333;
}
.use {
  padding-bottom: 0;
}
.use .section-title h2,
.products .section-title h2 {
  font-size: 38px;
  text-align: left;
  margin-bottom: 15px;
}
.use-content h3,
.products h3 {
  font-size: 26px;
  font-weight: 500;
  color: #333333;
}
.use-content h4 {
  font-size: 20px;
  color: #333333;
  font-weight: 500;
}
.use-content .assurance-content {
  margin-top: 30px;
}
.use-content p,
.use-content ul li,
.products p {
  font-size: 20px;
  color: #333333;
  font-weight: 400;
}
.use-content .sub-list li {
  color: #565656;
  font-weight: 400;
}
.products {
  padding-bottom: 60px !important;
}
.page-template-Terms-condition section,
.page-template-policy section {
  padding: 50px 0;
} 
.page-template-Terms-condition .section-title{
  text-align: left;
}
.page-template-Terms-condition .section-title h2 {
  font-size: 38px;
}
.page-template-Terms-condition p,
.page-template-Terms-condition ul li {
  font-size: 20px;
  color: #333333;
}
.feature .accordion-item {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 14px;
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: none;
}

.feature .accordion-body {
  padding-left: 0px;
  padding-top: 16px;
  font-size: 18px;
  padding-bottom: 0;
  border-top: 2px dashed #C7C7C7;
}

.feature .accordion-collapse {
  border: none;
  /* background-color: #103778; */
  color: #000;
  padding: 0;
  border-radius: 5px;
}
.feature .accordion-header {
  margin-bottom: 15px;
}
.feature .accordion-button {
  color: #28426D;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  background: none;
  padding: 0;
}
.feature .accordion-item .accordion-header p {
  margin-bottom: 0;
}
.feature .accordion-body ul {
  padding-left: 25px;
  list-style-type: none;

}
.feature .accordion-body ul li {
  position: relative;
}

.feature .accordion-body ul li::before {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    background: linear-gradient(360deg, rgba(40, 66, 109, 1) 0%, rgba(72, 192, 235, 1) 100%);
    left: -4%;
    border-radius: 50%;
    top: 13%;
}

.feature .accordion-body p {
  font-size: 18px;
  color: #333333;
}
.feature .accordion-button {
  position: relative;
}
.feature .accordion-button::after {
  content: "";
  background-image: url(../img/ac_icon.png) !important;
  background-repeat: no-repeat;
}
.assist-title h2,
.traditional-title h2 {
  font-size: 28px;
  margin-bottom: 0;
}

.page-template-custom-webpage .hero h2 {
  font-size: 55px;
}

section#webinar-hero {
  background-color: #E7F6FF;
}
.webinar-form{
  background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px #99999942;
}
.webinar-form input, .webinar-form textarea {
  border: 1px solid #E3E3E3;
  font-size: 16px;
  font-weight: 400;
  color: #696974;
  margin: 10px 0px;
  background-color: #F9F9F9;
  padding: 10px;
  border-radius: 10px;
}

.webinar-form .wpcf7-submit {
  background: #006699;
  color: #fff !important;
  border-radius: 10px;
  padding: 8px 40px;
  margin-top: 20px;
  border: none;
}
.webinar-author-content-main{
  gap: 20px;
}
.webinar-author-content-main p{
  text-align: center;
}
.webinar-content .btn-primary{
  background-color: #006699;
  padding: 15px 30px;
}
.webinar-content h2{
  color: #28426D;
}
.webinar-author h4 a{
  color: #000000;
}
.webinar-author p{
  text-align: center;
}

.webinar-author .slick-slide img {
  display: unset;
}

.webinar-list-box{
  margin-bottom: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.webinar-list-box p a{
  color: #727272;
}
.related-webinar h2{
  color: #28426D;
}
section#case-study-inner-hero {
  background-color: #E7F6FF;
}
section#case-study-inner-hero .section-title {
  text-align: left;
}
.case-study-feature-post {
  border-radius: 20px;
  overflow: hidden;
}
.case-study-feature-post img {
  width: 100%;
}
.case-study-feature-post-info {
  background-color: #fff;
  padding: 30px;
}
.tab-content:before {
  content: none;
  
}
.case-study-side-post {
  background-color: #fff;
  overflow: hidden;
  border-radius: 15px;
}
.case-study-side-post img {
  width: 360px;
  height: 260px;
  overflow: hidden;
  object-fit: cover;
  border-radius: 15px 0px 0px 15px;
}
.case-study-side-post a {
    color: #111;
}
.case-study-side-post-info{
  padding: 10px;
  width: 100%;
}

.case-study-hero-right .case-study-side-post a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.case-study-feature-post img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

button.btn.btn-primary.load-more,.load-more-btn,
button#load-more-webinars,button#load-more-posts {
  background: #28426D;
  padding: 10px 25px;
  border-radius: 10px;
  color: #fff;
  border: none;
}

.complince-list-main{
  border: 1px solid #D1D1D1;
  border-radius: 10px;
  padding: 10px;
}
.complince-list-main a img {
    border-radius: 10px;
    width: 510px;
    height: 350px;
    object-fit: cover;
}
.complince-list-info{
  padding-left: 40px;
}
.complince-list-info h4{
  color: #000000;
}
.read-more{
  color: #28426D !important;
}
.complince-list-info p{
  color: #000000;
}
.read-more img{
  max-width: 20px;
  max-height: 20px;
}



/*--------------------------------------------------------------
# testimonials-new
--------------------------------------------------------------*/
.testimonials-new {
  background: #F4F5F6;
  position: relative;
}
.testimonials-new .section-title p {
  font-size: 22px;
  color: #1E68B2;
  letter-spacing: 2px;
}

.testimonial-content-new p {
  font-size: 20px;
  color: #333333;
}
.testimonial-perosn-details {
  display: flex;
  align-items: center;
  gap: 15px;
}

.person-details h4 {
  font-size: 18px;
  margin-bottom: 0;
  color: #282C4B;
}
.person-details p {
  font-size: 14px;
  color: #4F4F4F;
  margin-bottom: 5px;
}
.quote-img {
  margin-bottom: 15px;
}
.quote-img img {
  width: 10%;
}
i.fa.fa-star.fill-star {
  color: #FA9E28;
}


.testimonials-new img.left.slick-arrow {
  position: absolute;
  bottom: -20px;
  left: 46%;
  z-index: 1;
  cursor: pointer;
}

.testimonials-new img.right.slick-arrow {
  position: absolute;
  bottom: -20px;
  right: 46%;
  z-index: 1;
  cursor: pointer;
}

.testimonials-new.slick-arrow {
  position: absolute;
  bottom: 0;
  top: unset;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.testimonials-new .slick-prev:before,
.testimonials-new .slick-next:before {
  content: "";
  position: absolute;
  width: 20px;
  left: 50%;
  top: unset;
  bottom: -20px;
  transform: translate(-50%, -50%);
}

.testimonials-new .slick-arrow.slick-prev {
  position: absolute;
  cursor: pointer;
  top: unset;
  bottom: 20px;
  right: unset;
  z-index: 0;
  left: -78%;
  background: url(../img/Left.png) 100% no-repeat;
  width: 15%;
  height: 25%;
}

.testimonials-new .slick-arrow.slick-next {
  position: absolute;
  top: unset;
  right: 150%;
  bottom: 20px;
  cursor: pointer;
  z-index: 0;
  background: url(../img/Right.png) 100% no-repeat;
  width: 15%;
  height: 25%;
}
.testimonials-new .section-title{
  text-align: left;
}