
/* font-family: "Open Sans", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/* color theme  #006699     ,    #CC3333        */

a {
	display: inline-block;
	text-decoration: none;
	color: #000;
	transition: all 0.3s;
}

a:hover {
	color: #CC3333;
}


/* ========== Header ========== */

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Open Sans", sans-serif;
	color: #000;
	overflow-x: hidden;
}

span {
	display: inline-block;
}

img {
	max-width: 100%;
	transition: all 0.3s;
}

figure {
	margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}

p,
li {
	font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.btn {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	border: 2px solid #fff !important;
	border-radius: 0;
	padding: 15px 30px;
}
.btn-primary {
  background-color: #CC3333;
}
.btn img {
  margin-left: 12px;
}
.btn:hover img {
  transform: rotate(45deg);
}

.btn-secondary {
	background: transparent;
}
.btn:hover {
	background-color: #006699;
}

.sec-pad {
  padding: 80px 0;
}

.bg-light {
  background-color: #F2F1EE !important;
}
.bg-light-grey {
	background-color: #f7f7f7;
}


.section-heading {
  margin-bottom: 40px;
}

.heading-type-1 {
  font-size: 60px;
  font-weight: 400;
}
.heading-type-2 {
	font-size: 56px;
	font-weight: 500;
}







@media(min-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}
@media(min-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}


















/* ===== Header ===== */
@-webkit-keyframes navbarFixed {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes navbarFixed {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}


.header {
	padding: 20px 0;
	box-shadow: 0px 10px 10px rgba(0 0 0 / 0.05);
}

.header-in {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-nav>ul {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.header-nav>ul>li {
	list-style: none;
	margin-right: 30px;
}

.header-nav>ul>li:last-child {
	margin-right: 0;
}

.header-nav>ul>li a {
	color: #000;
	font-weight: 400;
  font-size: 20px;
  padding: 5px;
}

.header-nav>ul>li a:hover,
.header-nav>ul>li a.active {
	color: #CC3333;
}
.header-nav>ul>li a {
	position: relative;
}
.header-nav>ul>li a::before {
	position: absolute;
	content: "";
	width: 0;
	height: 3px;
	left: 50%;
	bottom: 0;
	background-color: #CC3333;
	transition: all 0.3s;
	transform-origin: center;
	transform: translateX(-50%);
}
.header-nav>ul>li a:hover::before,
.header-nav>ul>li a.active::before {
	width: 100%;
}


.header-rgt {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-rgt a {
  /* margin-left: 25px; */
  border: 2px solid #CC3333;
  border-radius: 100%;
  padding: 7px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-rgt a:hover {
	background-color: #CC3333;
}
.header-rgt a:hover img {
	filter: brightness(0) invert(1);
}

.header-logo {
	margin-right: 25px;
}

.navbar-fostrap {
	display: none;
}

header.sticky {
	position: sticky;
	top: 0;
	background: #fff;
	width: 100%;
	animation: navbarFixed .5s alternate linear;
  z-index: 11;
}


/* sub-menu */
li.menu-item-has-children {
	position: relative;
}

.sub-menu {
	position: absolute;
	min-width: 200px;
	padding-left: 0;
	box-shadow: 0 0 10px #e0e0e0;
	opacity: 0;
	visibility: hidden;
	transition: .4s;
	transform: scaleY(0);
	transform-origin: 0 0;
}

.sub-menu li a {
	background: #fff;
	padding: 10px 20px;
	display: block;
	width: 100%;
	border-bottom: 1px solid #ccc;
}

.sub-menu>li:last-child>a {
	border-bottom: 0;
}

.sub-menu li {
	display: block;
	width: 100%;
}

li.menu-item-has-children:hover>.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: scaleY(1);
}

span.caret:before {
	margin-left: 8px;
	vertical-align: 3px;
	content: "";
	border-top: 5px solid;
	border-right: 5px solid transparent;
	border-bottom: 0;
	border-left: 5px solid transparent;
	display: inline-block;
}


/* sub-sub-menu */
.sub-menu .sub-menu {
	left: 100%;
	top: 0;
}

.sub-menu li.menu-item-has-children>a+span.caret {
	margin-left: auto;
	display: block;
	position: absolute;
	top: 10px;
	right: 15px;
}


.menu-active .header {
  position: fixed;
  width: 100%;
  animation: none;
  z-index: 1;
  top: 0;
  left: 0;
}
body.menu-active {
  overflow: hidden;
  padding-top: 103px;
}

@media(max-width:1399px) {
	.header-nav ul li {
		margin-right: 30px;
	}
}

@media(max-width:1199px) {
	.navbar-fostrap span {
		width: 25px;
		height: 4px;
		background: #452118;
		display: block;
		margin: 4px 0;
		transition: .3s;
		transition-delay: .4s
	}

	.navbar-fostrap {
		display: block;
		position: relative;
		z-index: 11;
	}

	.navbar-fostrap.open span:nth-child(2) {
		opacity: 0;
	}

	.navbar-fostrap.open span:nth-child(1) {
		transform: rotate(45deg);
		margin-top: 12px;
	}

	.navbar-fostrap.open span:nth-child(3) {
		transform: rotate(-45deg);
		margin-top: -16px;
	}

	.header-rgt {
		margin-left: auto;
		margin-right: 20px;
	}

	.header-nav {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 100%;
		z-index: 11;
		overflow: auto;
		/*background: #ccc;*/
		transition: .5s;
	}

	.header-nav>ul {
		display: block;
		text-align: center;
		padding: 60px 0;
	}

	.header-nav>ul>li {
		margin: 20px 0;
	}

	.header-nav.visible {
		right: 0
	}


	/* animation */
	.header-nav:before,
	.header-nav:after {
		content: "";
		position: fixed;
		top: 0px;
		right: 0px;
		width: 0;
		height: 0;
		background-color: rgba(20, 21, 26, 0.6);
		border-bottom-left-radius: 200%;
		z-index: -1;
		transition: border-radius linear 0.8s, width cubic-bezier(0.77, 0, 0.175, 1) 0.6s, height cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
	}

	.header-nav:after {
		background-color: #F2F1EE;
		box-shadow: 6px 7px 28px 0 rgba(16, 16, 16, 0.3);
	}

	.header-nav.visible:before,
	.header-nav.visible:after {
		width: 100%;
		height: 100vh;
		border-radius: 0px;
	}

	.header-nav.visible:after {
		-webkit-transition-delay: .2s;
		transition-delay: .2s;
	}

	.header-nav>ul>li {
		position: relative;
		display: block;
		-webkit-transition-delay: 0.8s;
		transition-delay: 0.8s;
		opacity: 0;
		overflow: hidden;
		-webkit-transform: translate(30px, 0%);
		transform: translate(30px, 0%);
		transition: .2s
	}

	.header-nav.visible>ul>li {
		opacity: 1;
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}

	.header-nav.visible>ul>li:nth-child(1) {
		-webkit-transition-delay: 0.6s;
		transition-delay: 0.6s;
	}

	.header-nav.visible>ul>li:nth-child(2) {
		-webkit-transition-delay: 0.7s;
		transition-delay: 0.7s;
	}

	.header-nav.visible>ul>li:nth-child(3) {
		-webkit-transition-delay: 0.8s;
		transition-delay: 0.8s;
	}

	.header-nav.visible>ul>li:nth-child(4) {
		-webkit-transition-delay: 0.9s;
		transition-delay: 0.9s;
	}

	.header-nav.visible>ul>li:nth-child(5) {
		-webkit-transition-delay: 1s;
		transition-delay: 1s;
	}

	.header-nav.visible>ul>li:nth-child(6) {
		-webkit-transition-delay: 1.1s;
		transition-delay: 1.1s;
	}

	.header-nav.visible>ul>li:nth-child(7) {
		-webkit-transition-delay: 1.2s;
		transition-delay: 1.2s;
	}

	.header-nav.visible>ul>li:nth-child(8) {
		-webkit-transition-delay: 1.3s;
		transition-delay: 1.3s;
	}

	.header-nav.visible>ul>li:nth-child(9) {
		-webkit-transition-delay: 1.4s;
		transition-delay: 1.4s;
	}

	/* sub-menu */
	.sub-menu {
		position: static;
		display: none;
		transition: unset !important;
		transform: unset;
		opacity: 1;
		visibility: visible;
	}

}


/* ===== Header ===== */

/* ===== Banner ===== */
.st-1 {
  /* background: url(../img/banner-bg.jpg) no-repeat; */
  /* background-size: cover; */
  /* background-position: right; */
	position: relative;
}
.st-1-itm-title {
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 40px;
	text-transform: uppercase;
}
.st-1-itm {
  color: #fff;
  position: relative;
  z-index: 1;
  /* padding: 30px 0 50px 30px; */
  max-width: 665px;
}
/*
.st-1-itm::before {
  content: "";
  position: absolute;
  width: 85px;
  height: 100%;
  background: #CC3333;
  left: 0;
  top: 0;
  z-index: -1;
}
*/
.st-1-itm-description {
  margin: 20px 0 30px;
}
.st-1-content {
	position: absolute;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
.st-1-slider-itm-img {
	position: relative;
}
.st-1-slider-itm-img::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/* background: rgba(0 0 0 / 0.25); */
	background: linear-gradient(90deg, rgba(0,0,0,0.7) 20%, rgba(255,255,255,0) 70%);
}



/* ===== Banner ===== */

/* ===== About Section ===== */
.st-2-itm-cnt-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 30px;
}
.st-2-itm-cnt-title span {
  font-weight: 200;
	color: #006699;
}
.st-2-itm-cnt p {
  font-size: 20px;
  font-weight: 200;
}
/* ===== About Section ===== */

/* ===== Impact by the Numbers ===== */
.st-3 {
	background: #006699 url(../img/bg-img-3.png) no-repeat;
	background-size: cover;
}
.st-3-itm-img {
	background-color: #006699;
	padding: 25px;
	border-radius: 10px;
}

.st-3-itm-top {
	display: flex;
	flex-wrap: wrap-reverse;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 10px;
}
.st-3-itm-top span {
	font-size: 70px;
	font-weight: 600;
	color: #006699;
}
.st-3-itm-in {
	padding: 30px;
	background-color: #fff;
}
.st-3-itm-in p {
	font-size: 20px;
}
.st-3-itm-description p:last-child {
	margin: 0;
}
.st-3-itm-in ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.st-3-itm-in ul li {
	font-size: 20px;
	line-height: 1.2;
	padding: 3px 0;
}
.st-3-itm-in ul li span {
	font-weight: 700;
	color: #CC3333;
}


ul.st-3-tags {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	/* justify-content: space-between; */
	gap: 20px;
	margin-top: 25px;
}
ul.st-3-tags li {
	text-align: center;
}
ul.st-3-tags li span {
	display: block;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 400;
	color: #006699;
}
ul.st-3-tags li {
	text-align: center;
	padding: 15px 30px;
	background-color: #fff;
}
ul.st-3-tags li p {
	margin: 0;
	line-height: 1.3;
}
ul.st-3-tags li img {
	margin: 0 0 5px;
}
.st-3-itm-full-width-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.st-3-itm-full-width-list ul li {
	position: relative;
	padding: 5px 0 5px 45px;
	line-height: 1.5;
	font-size: 18px;
	color: #fff;
}
.st-3-itm-full-width-list ul li::before {
	position: absolute;
	content: "";
	background: #fff url(../img/st-3-itm-full-width-list-icon.png) no-repeat;
	width: 30px;
	height: 30px;
	background-size: 15px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 100%;
	background-position: center;
}
.st-3-itm-full-width-title {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 40px;
	color: #fff;
}
.st-3-itm-full-width-list {
	margin-top: 10px;
}

.st-3-itm-counter p {
	margin: 0;
	font-weight: 500;
	font-size: 20px;
}
.st-3-itm-counter-num {
	color: #006699;
	font-size: 60px;
	font-weight: 600;
}
.st-3-itm-counter {
	text-align: center;
	background: #fff;
	padding: 40px 20px;
	margin-top: 20px;
}



/* ===== Impact by the Numbers ===== */

/* ===== We Can Help ===== */
.st-4-itm-img {
  position: relative;
}
.st-4-itm-img img {
  width: 100%;
}
.experience-tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.experience-tag h3 {
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin: 0;
}
.experience-tag p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.experience-tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 178px;
  height: 178px;
  background: #006699;
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 9px solid #fff;
}

.st-4-itm-cnt .section-heading span {
  font-size: 22px;
  font-weight: 300;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.st-4-itm-cnt .section-heading span::before {
  position: absolute;
  content: "";
  width: 122px;
  height: 3px;
  background: #820A08;
  bottom: 0;
  left: 0;
}
.st-4-itm-cnt .section-heading h2 {
  font-size: 82px;
  font-weight: 400;
}
.st-4-itm-cnt ul {
  list-style: none;
  padding: 0;
}
.st-4-itm-cnt ul li h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 15px;
}
.st-4-itm-cnt ul li p {
  margin: 0;
  font-size: 18px;
  font-weight: 200;
  line-height: 33px;
}
.st-4-itm-cnt ul li p b {
	font-weight: 500;
}
.st-4-itm-cnt ul li {
  padding: 30px 40px;
  background: #F2F1EE;
  margin-bottom: 10px;
}

/* ===== We Can Help ===== */

/* ===== Value Proposition ===== */
.st-5 {
  /* background: #060b0e url(../img/bg-transparent-img.png) no-repeat; */
  background: #CC3333 url(../img/bg-transparent-img.png) no-repeat;
  background-size: cover;
}
.st-5-itm {
  
}
.arrow-right {
	position: relative;
}
.arrow-right::after {
	position: absolute;
	width: 96px;
	height: 38px;
	top: 31px;
	right: -48px;
	content: "";
	background: url(../img/arrow-right.png) no-repeat;
	background-size: 100%;
}
.st-5-itm-cnt {
	padding: 20px;
	border-top: 4px solid #006699;
	background-color: #ffffff;
}
.st-5-itm-icon {
	width: 100px;
	height: 100px;
	background-color: #006699;
	border-radius: 100%;
	border: 4px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.st-5-itm-cnt-description p {
	font-size: 20px;
	text-align: justify;
}

.st-5-itm-cnt ul {
  padding-left: 20px;
  margin: 0;
}
.st-5-itm-cnt ul li {
  padding: 3px 0;
}
.st-5-itm-cnt ul li::marker {
  color: #820A08;
}
.st-5-itm-cnt-title {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 15px;
}
/* ===== Value Proposition ===== */

/* ===== Connect with Fidantis Strategies ===== */

.st-6-itm {
	color: #fff;
	text-align: center;
}
.st-6-in {
	background: url(../img/bg-img-2.jpg) no-repeat;
	background: #000 url(../img/bg-img-5-red-fade.png) no-repeat;
	background-position: center;
	background-size: cover;
	padding: 65px 30px;
}
.st-6-itm .section-heading {
	margin-bottom: 20px;
}
.st-6-itm .btn.btn-secondary {
	margin-top: 15px;
}
.st-6-itm p {
	font-size: 18px;
}
/* ===== Connect with Fidantis Strategies ===== */

/* ===== Offering Overview ===== */
.st-7-itm-icon {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
	border-radius: 100%;
	font-size: 40px;
	font-weight: 300;
	line-height: 1;
	margin: 0 0 20px 20px;
}
ul.number-list {
	list-style: decimal;
}
.st-7-itm-cnt ul li {
	line-height: 1.3;
	padding: 5px 0 5px 30px;
	position: relative;
	font-size: 20px;
}
.st-7-itm-cnt ul li::before {
	position: absolute;
	content: "";
	width: 16px;
	height: 2px;
	background-color: #fff;
	left: 0;
	top: 12px;
	transition: all 0.3s;
}
.st-7-itm:hover .st-7-itm-cnt ul li::before {
	
}
.st-7-itm-cnt ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.st-7-itm {
	border: 1px solid #BBBBBB;
	padding: 20px 20px 20px 0;
	border-radius: 10px;
	background-color: #006699;
	transition: all 0.3s;
	color: #fff;
}

.st-7-itm:hover .st-7-itm-icon {
	border-color: #fff;
}
.st-7-itm-icon img {
	filter: invert(1);
	transition: all 0.3s;
}
.st-7-itm:hover .st-7-itm-icon img {
	filter: invert(1);
}
.st-7-items .row [class*="col-"] {
	padding: 0 25px;
}
.st-7-items .row [class*="col-"]:nth-child(2) .st-7-itm {
	margin: auto;
}
.st-7-items .row [class*="col-"]:nth-child(3) .st-7-itm {
	margin-left: auto;
}
/* ===== Offering Overview ===== */

/* ===== Footer ===== */
.footer {
	background: #CC3333 url(../img/bg-img-3.png) no-repeat;
	background-size: cover;
	background-position: center;
}
.footer-top-items {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.footer-form .form-group {
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
	padding: 5px;
	border-radius: 100px;
}
.footer-form .form-group .form-control {
	border: 0;
	background: none;
	min-width: 300px;
	padding: 10px 10px 10px 20px;
	box-shadow: none;
}
.footer-form .form-group input[type="submit"],
.footer-form .form-group button {
	color: #fff;
	background-color: #CC3333;
	font-size: 22px;
	font-weight: 700;
	border-radius: 100px;
	padding: 6px 35px;
	border: 0;
	transition: all 0.3s;
}
.footer-form .form-group input[type="submit"]:hover,
.footer-form .form-group button:hover {
	background-color: #006699;
}



.footer-top {
	padding: 50px 0;
	/* border-bottom: 1px solid #B3B3B3; */
	border-bottom: 1px solid #b3b3b359;
}
.footer-logo a img {
	filter: brightness(0) invert(1);
}

.footer-itm ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-itm ul li {
	padding: 3px 0;
}
.footer-itm ul li a,
.footer-itm ul li p {
	font-size: 18px;
	font-weight: 300;
	display: flex;
	align-items: start;
	color: #fff;
}
.footer-itm ul li a:hover {
	text-decoration: underline;
}

.footer-itm ul li a img,
.footer-itm ul li p img {
	margin-right: 10px;
	padding-top: 7px;
}
.footer-itm-title {
	font-size: 26px;
	font-weight: 400;
	margin-bottom: 25px;
	color: #fff;
}
.footer-itm-title img {
	margin-right: 10px;
}
.footer-itm ul.social-media li a img {
	margin: 0;
	padding: 0;
}

ul.social-media {
	display: flex;
	align-items: center;
	gap: 10px;
}
ul.social-media a {
	width: 40px;
	height: 40px;
	background-color: #000;
	display: flex !important;
	align-items: center !important;
	justify-content: center;
	border-radius: 3px;
}

ul.social-media a:hover {
	background-color: #CC3333;
}
.copyright-items p {
	margin: 0;
	text-align: center;
}
.copyright {
	background-color: #006699;
	padding: 8px 0;
	color: #fff;
}
/* ===== Footer ===== */

/* ===== Page Header ===== */
.st-8 {
	background: url(../img/page-header-bg.jpg) no-repeat;
	background-size: cover;
	background-position: right center;
	padding: 110px 0;
}
.st-8-itm-title {
	font-size: 88px;
	font-weight: 500;
	color: #fff;
	margin: 0;
}
/* ===== Page Header ===== */

/* ===== About Section ===== */
.st-9-itm-cnt-description b {
	font-weight: 700;
}

.about-founder .st-9-itm-img {
	text-align: right;
}
/* ===== About Section ===== */

/* ===== Our Team ===== */
.st-10-itm-description b {
	font-weight: 700;
}
.st-10-itm-title-bottom-line {
	width: 160px;
	height: 3px;
	background-color: #CC3333;
	margin: 20px 0;
}
.st-10-itm {
	padding: 30px;
	border: 1px solid #BBBBBB;
	background-color: #fff;
	border-radius: 10px;
	margin: 10px 0;
}
.st-10-itm-icon {
	margin-bottom: 20px;
}
.st-10-itm-title {
	font-size: 26px;
	font-weight: 400;
}
/* ===== Our Team ===== */

/* ===== Disaster/Cyber Recovery Services ===== */
.st-11 {
	background: #000 url(../img/bg-img-3.png) no-repeat;
	background-size: cover;
}
.st-11-in .heading-type-1 {
	color: #fff;
}
/* ===== Disaster/Cyber Recovery Services ===== */

/* ===== Data Protection & Recovery Services ===== */
.st-12 {

}
.st-12-itm-tabs ul.nav-tabs {
	border: 0;
	overflow: auto;
	padding: 10px 0;
	flex-wrap: nowrap;
}
.st-12-itm-tabs button {
	border: 0 !important;
	padding: 0;
}
.st-12-itm-tabs-itm {
	border: 1px solid #BBBBBB;
	position: relative;
	text-align: left;
	max-width: 250px;
	min-width: 250px;
	padding: 20px;
	color: #000;
	background-color: #fff;
	position: relative;
	transition: all 0.3s;
}
.st-12-itm-tabs-itm:hover {
	background-color: #000;
	color: #fff;
}
.st-12-itm-tabs-itm:hover .st-12-itm-tabs-itm-img img {
	filter: invert(1);
}

.st-12-itm-tabs-itm-title {
	font-size: 22px;
	font-weight: 400;
	margin: 20px 0 15px;
}
.st-12-itm-tabs-itm-description p:last-child {
	margin: 0;
}
.st-12-itm-tabs-itm-description ul {
	padding-left: 20px;
	margin: 0;
}
.st-12-itm-tabs-itm-count {
	width: 38px;
	height: 38px;
	position: absolute;
	right: 10px;
	top: 10px;
	border: 1px solid #9B9B9B;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	color: #000;
	background: #fff;
}
.st-12-itm-tabs ul.nav-tabs .st-12-itm-tabs-itm {
	background-color: #000;
	color: #fff;
	transition: all 0.3s;
}
.st-12-itm-tabs .nav-link.active .st-12-itm-tabs-itm,
.st-12-itm-tabs .nav-link:hover .st-12-itm-tabs-itm,
.st-12-itm-tabs .nav-link:focus .st-12-itm-tabs-itm {
	background-color: #CC3333;
	color: #fff;
	border-color: transparent;
}
.st-12-itm-tabs li .nav-link .st-12-itm-tabs-itm-img img {
	filter: invert(1);
}
.st-12-itm-tabs li {
	margin-right: 50px;
}
.st-12-itm-tabs ul.nav-tabs li.nav-item:last-child {
	margin-right: 0;
}
.st-12-itm-tabs li .nav-link {
	padding: 0;
	border: 0;
}
.st-12-itm-tabs li .nav-link.active {
	position: relative;
}
.st-12-itm-tabs li .nav-link.active::before {
	position: absolute;
	content: "";
	background: url(../img/st-12-itm-tabs-active-arrow.png) no-repeat;
	bottom: 3px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 24px;
}

.tab-content-items .st-12-itm-tabs-itm {
	max-width: 100%;
}
.tab-content-items>h3 {
	font-size: 46px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}
.tab-content-items {
	background: #CC3333 url(../img/bg-img-3.png) no-repeat;
	background-size: cover;
	background-position: center;
	padding: 40px;
}
.tab-content-in {
	padding-top: 70px;
}
.st-12-itm-tabs .tab-content .tab-content-in:first-child {
	padding-top: 20px;
}
.st-12-itm-tabs-itm.navigate-arrow::after {
	filter: invert(1);
}
.st-12-itm-tabs .tab-content {
	/* margin-top: 10px; */
}
.st-12-itm-tabs .nav-tabs.navigate-track::before {
	width: 80%;
}
.tab-content-items .row [class*="col-"] {
	padding: 0 25px;
}



.st-12-itm-tabs .tab-content .tab-pane {
	height: 0;
	visibility: hidden;
	opacity: 0;
	display: block !important;
}
.st-12-itm-tabs .tab-content .tab-pane.active {
	height: auto;
	visibility: visible;
	opacity: 1;
}
/* ===== Data Protection & Recovery Services ===== */

/* ===== Audit Advisory Services ===== */
.st-13 {
	/* background: url(../img/bg-img-5-light.png) no-repeat; */
	/* background-size: cover; */
	/* background-position: center; */
}
.st-13-itm-in {
	text-align: center;
}
.st-13-itm-title {
	font-size: 40px;
	font-weight: 400;
	transition: all 0.3s;
}
.st-13-itm {
	width: 380px;
	height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #B5B5B5;
	border-radius: 100%;
	background-color: #fff;
	/* background: #fff url(../img/bg-img-3.png) no-repeat; */
	/* background-position: center; */
	position: relative;
	margin: 20px auto;
	transition: all 0.3s;
}
.st-13-itm-count {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: #CC3333;
	width: 70px;
	height: 70px;
	color: #fff;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	transition: all 0.3s;
}
.st-13-itm-icon {
	margin-bottom: 20px;
}
.st-13-itm:hover {
	background-color: #CC3333;
}
.st-13-itm:hover .st-13-itm-count {
	background-color: #000;
}
.st-13-itm:hover .st-13-itm-title {
	color: #fff;
}
.st-13-itm:hover .st-13-itm-icon img {
	filter: invert(1);
}
.st-13-items .row [class*="col-"] {
	padding: 0 25px;
}
@media(min-width:992px) {
.st-13-items-row-rev .navigate-arrow::after {
    transform: rotate(180deg);
}
.st-13-items-row-rev [class*="col-"]:first-child .navigate-arrow::after {
	display: none;
}
.navigate-arrow.navigate-arrow-down::after {
	left: unset;
	right: unset;
	bottom: -35px;
	top: unset;
	transform: rotate(90deg);
}
}
/* ===== Audit Advisory Services ===== */

/* ===== Advanced Support ===== */
.st-14 {
	background: #000 url(../img/bg-img-3.png) no-repeat;
	background-size: cover;
	color: #fff;
}
.st-14-itm-title {
	font-size: 40px;
	font-weight: 400;
	margin: 20px 0 15px;
}
.st-14-itm-bottom-line {
	width: 197px;
	height: 3px;
	background-color: #D9D9D9;
}
.st-14-itm-description {
	margin-top: 20px;
}
.st-14-itm-description p:last-child {
	margin-bottom: 0;
}
.st-14-itm {
	border: 1px solid #BBBBBB;
	padding: 40px 20px;
	border-radius: 20px;
	position: relative;
	transition: all 0.3s;
}
.st-14-itm:hover {
	background-color: #CC3333;
}
.st-14-itm-count {
	width: 38px;
	height: 38px;
	position: absolute;
	right: 20px;
	top: 20px;
	border: 1px solid #9B9B9B;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
}
.tab-content-items .navigate-track {
	z-index: 1;
}
.st-14-items .row [class*="col-"] {
	padding: 0 25px;
}
.st-14-itm.navigate-arrow::after {
	filter: invert(1);
}
/* ===== Advanced Support ===== */


.navigate-track {
	position: relative;
}
.navigate-track::before {
	position: absolute;
	content: "";
	width: 90%;
	height: 1px;
	border: 1px #000 dashed;
	left: 5%;
	top: 50%;
	z-index: -1;
	transform: translateY(-50%);
}

.navigate-arrow {
	position: relative;
}
.navigate-arrow::after {
	position: absolute;
	content: "";
	/* width: 14px; */
	width: 20px;
	/* height: 23px; */
	height: 33px;
	/* left: calc(100% + 20px); */
	left: calc(100% + 16px);
	top: 50%;
	transform: translateY(-50%);
	background: url(../img/navigate-arrow-right.png);
}

@media(min-width: 1600px) {

}


/* ===== Contact Us ===== */
.st-15-itm-contact-detail ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.st-15-itm-contact-detail ul li {
	display: flex;
	align-items: start;
	gap: 10px;
	background: #fff;
	padding: 20px 25px;
	box-shadow: 0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.08);
	margin-bottom: 20px;
	border: 1px solid #ddd;
}
.st-15-itm-contact-detail ul li:last-child {
	margin: 0;
}
.st-15-itm-contact-detail-cnt-title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 5px;
}
.st-15-itm-contact-detail-cnt a,
.st-15-itm-contact-detail-cnt p {
	font-weight: 400;
	margin: 0;
}
.st-15-itm-contact-detail-icon {
	width: 70px;
	min-width: 70px;
	height: 70px;
	background: #CC3333;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.form-control {
	padding: 15px 20px;
	border-radius: 0;
	box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
	border: 1px solid #ddd;
}
.st-15-itm-contact-form .form-group {
	margin-bottom: 20px;
}


.st-16-itm-map iframe {
	display: block;
}
/* ===== Contact Us ===== */

/* ===== Career ===== */
.st-17-itm-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f7f7f7;
	border-radius: 5px;
	border: 1px solid #ddd;
}
.st-17-itm {
	background: #000;
	padding: 20px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 10px 0;
}
.st-17-itm ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.st-17-itm ul li {
	padding: 2px 6px;
	background: #f7f7f7;
	font-weight: 400;
	font-size: 14px;
	border-radius: 5px;
	border: 1px solid #ddd;
}
.st-17-itm-title {
	font-size: 24px;
	font-weight: 600;
	margin: 15px 0;
	color: #fff;
}
.st-17-itm-salary-detail p {
	color: #fff;
	font-size: 20px;
}
.st-17-itm-salary-detail p span {
	font-weight: 600;
}
/* ===== Career ===== */

/* ===== Blogs ===== */
.st-18-itm-img {
	position: relative;
	overflow: hidden;
}
.st-18-itm-date {
	position: absolute;
	top: 0;
	right: 10px;
	padding: 8px 5px;
	background: #CC3333;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	width: 50px;
	text-align: center;
	line-height: 1.2;
	transition: all 0.3s;
}
.st-18-itm {
	background: #000;
	color: #fff;
	border-radius: 20px;
	overflow: hidden;
	margin: 10px 0;
}
.st-18-itm-cnt {
	padding: 20px;
}
.st-18-itm-cnt-description p {
	color: #fff;
}
.st-18-itm-cnt-description {
	margin: 12px 0;
}
.st-18-itm:hover .btn {
	background-color: #000;
}
.st-18-itm:hover .st-18-itm-img img {
	transform: scale(1.1);
}
.st-18-itm:hover .st-18-itm-date {
	background: #000;
}




/* Detail */
.st-19-itm-details-img {
	margin-bottom: 20px;
}
.st-19-itm-details-title {
	margin: 10px 0 20px;
}
.st-19-itm-details h3 {
	font-size: 24px;
	margin-top: 20px;
}
.st-19-itm-details h4 {
	margin-top: 20px;
	font-size: 20px;
}
.st-19-itm-details ul {
	padding-left: 20px;
}
.st-19-itm-details ul li {
	padding: 3px 0;
}
.st-19-itm-details p {
	text-align: justify;
}
/* Detail */
/* ===== Blogs ===== */





























































































/* ==================================================
								Responsive CSS Start
==================================================*/
@media(max-width: 1399px) {
.st-8-itm-title {
	font-size: 70px;
}
.st-13-itm {
	width: 330px;
	height: 330px;
}
}

@media(max-width: 1199px) {
/* body.menu-active .st-1-itm {
	z-index: -1;
} */
header.header {
	z-index: 11 !important;
}
.st-3-itm-top span {
	font-size: 50px;
}
.st-4-itm-cnt .section-heading h2 {
	font-size: 70px;
}
.heading-type-2 {
	font-size: 46px;
}
ul.st-3-tags li span {
	font-size: 30px;
}
.navigate-arrow::after {
	right: -20px;
}
.st-13-itm {
	width: 270px;
	height: 270px;
}
.st-13-itm-title {
	font-size: 36px;
}
.st-13-itm-count {
	top: 10px;
	right: 10px;
	width: 60px;
	height: 60px;
	font-size: 30px;
}
}

@media(max-width: 991px) {
.st-1-itm-title {
	font-size: 40px;
}
.st-2-itm-img {
	text-align: center;
}
.st-3-itm-img {
	width: 80px;
	height: 80px;
	padding: 15px;
}
.st-3-itm-top {
	flex-direction: column-reverse;
	margin: 0;
}
.st-3-itm-in {
	text-align: center;
}
.st-4-itm-img {
	margin-bottom: 20px;
}
.st-4-itm-cnt .section-heading h2 {
	font-size: 60px;
}
.st-4-itm-cnt .section-heading span {
	margin-bottom: 20px;
}
.heading-type-1 {
	font-size: 46px;
}
.btn {
	font-size: 16px;
}
.st-5-itm {
	margin-bottom: 20px;
}
.st-7-itm {
	/* margin: 10px 0; */
	max-width: 100%;
}
.navigate-track::before {
	height: 100%;
	width: 1px;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

.navigate-arrow::after {
	right: unset;
	background: url(../img/navigate-arrow-bottom.png);
	width: 33px;
	/* width: 23px; */
	height: 20px;
	/* height: 14px; */
	left: 50%;
	bottom: -30px;
	top: unset;
	transform: translateX(-50%);
}
.navigate-arrow {
	margin-bottom: 45px !important;
}
.tab-content-items .row [class*="col-"] {
	padding: 0 12px;
}

.st-12-itm-tabs .nav-tabs.navigate-track::before {
	width: 90%;
	height: 1px;
	left: 5%;
	top: 50%;
	transform: translateY(-50%);
}
.st-12-itm-tabs .nav-tabs .navigate-arrow {
	margin-bottom: 0 !important;
}
.st-12-itm-tabs .nav-tabs .navigate-arrow::after {
	content: "";
	width: 14px;
	height: 23px;
	left: calc(100% + 20px);
	top: 50%;
	transform: translateY(-50%);
	background: url(../img/navigate-arrow-right.png);
	background-size: 14px;
}

.footer-form .form-group .form-control {
	min-width: 240px;
}
.footer-itm {
	margin: 20px 0;
}
.heading-type-2 {
	font-size: 40px;
}
.st-8-itm-title {
	font-size: 60px;
}
.st-9-itm-img {
	margin-bottom: 20px;
}
.about-founder .st-9-itm-img {
	text-align: left;
}
.section-heading {
	margin-bottom: 30px;
}

.st-3-itm {
	margin: 5px 0;
}
.st-3-itm-counter-icon img {
	width: 80px;
}
.st-3-itm-counter-num {
	margin: 10px 0 7px;
}
.st-3-itm-in p,
.st-3-itm-in ul li {
	font-size: 20px;
}

.st-14-itm {
	
}
.tab-content-items>h3 {
	font-size: 36px;
}
.arrow-right::after {
	position: relative;
	display: block;
	left: 50%;
	transform: translateX(-50%) rotate(90deg);
}
.arrow-right {
	margin-bottom: 90px;
}
.arrow-right .st-5-itm-cnt {
	margin-bottom: 20px;
}
.st-15-itm-contact-detail {
	margin-bottom: 30px;
}
.st-13-items-row-rev [class*="col-"]:last-child .navigate-arrow::after {
	display: none;
}
.st-13-itm {
	margin: 0 auto;
}
.st-18-itm-cnt-title {
	font-size: 24px;
}
.st-19-itm-details-title {
	font-size: 26px;
}
.st-19-itm-details h3 {
	font-size: 22px;
}
.st-19-itm-details h4 {
	font-size: 18px;
}
}

@media(max-width: 767px) {
p, li {
	font-size: 14px;
}
.st-1-itm-title {
	font-size: 50px;
}

.st-1-slider-itm-img img {
	height: calc(100vh - 96px);
	width: auto !important;
	object-fit: cover;
	object-position: top 0 right -200px;
}
.st-1-content {
	align-items: end;
	padding-bottom: 30px;
}
.st-2-itm-cnt-title {
	font-size: 60px;
}
.heading-type-1 {
	font-size: 36px;
}
.footer-itm ul li a, .footer-itm ul li p {
	font-size: 14px;
}
.footer-itm ul li a img, .footer-itm ul li p img {
	padding-top: 4px;
}
.footer-itm ul li {
	padding: 2px 0;
}
.footer-itm-title {
	font-size: 20px;
	margin-bottom: 15px;
}
ul.social-media a {
	width: 30px;
	height: 30px;
	padding: 8px;
}
.st-8-itm-title {
	font-size: 40px;
}
.st-8 {
	padding: 80px 0;
}
.heading-type-2 {
	font-size: 30px;
}
.section-heading {
	margin-bottom: 25px;
}
.st-10-itm-title {
	font-size: 20px;
}
.st-10-itm-title-bottom-line {
	margin: 10px 0;
}
.st-10-itm-icon {
	margin-bottom: 15px;
}
.st-3-itm-top span {
	font-size: 50px;
}
.st-3-itm-img {
	padding: 10px;
}
.st-3-itm-in p,
.st-3-itm-in ul li {
	font-size: 16px;
}
.st-12-itm-tabs-itm-title {
	font-size: 18px;
}
.st-14-itm-title {
	font-size: 28px;
	margin: 10px 0 7px;
}
.st-14-itm-description {
	margin-top: 10px;
}
.tab-content-items>h3 {
	font-size: 24px;
	margin-bottom: 15px;
}
.arrow-right::after {
	background-position: center;
	width: 50px;
	height: 20px;
}
.arrow-right .st-5-itm-cnt {
	margin-bottom: 10px;
}
.arrow-right {
	margin-bottom: 70px;
}
.form-control {
	padding: 8px 15px;
	font-size: 14px;
}
.st-13-itm-title {
	font-size: 30px;
}
.st-13-itm-count {
	top: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
	font-size: 24px;
}
.st-17-itm {
	display: block;
}
.st-17-itm ul {
	margin-bottom: 10px;
}
.st-17-itm-title {
	font-size: 20px;
	margin: 10px 0;
}
.st-17-itm-salary-detail p {
	font-size: 18px;
	margin-bottom: 5px;
}
.st-17-itm ul li {
	padding: 1px 5px;
	font-size: 12px;
}
.st-17-itm-icon {
	width: 50px;
	height: 50px;
	padding: 8px;
}
.st-18-itm-cnt-title {
	font-size: 20px;
}
.st-19-itm-details-title {
	font-size: 24px;
}
.st-19-itm-details h3 {
	font-size: 20px;
}
.st-19-itm-details h4 {
	font-size: 16px;
}
.st-19-itm-details ul li {
	padding: 2px 0;
	line-height: 1.5;
}
.st-19-itm-details h3,
.st-19-itm-details h4 {
	margin: 10px 0 5px;
}
}

@media(max-width: 575px) {
body.menu-active {
	padding-top: 90.8px;
}
.header-logo img {
	max-width: 200px;
}
.header-rgt a {
	width: 30px;
	height: 30px;
}
.header-rgt {
	margin-right: 10px;
	gap: 10px;
}
.st-1-itm-title {
	font-size: 36px;
}
.btn {
	font-size: 14px;
}
.btn img {
	margin-left: 8px;
	width: 14px;
}
.st-2-itm-cnt-title {
	font-size: 40px;
}
.st-2-itm-cnt-title {
	margin-bottom: 25px;
	font-size: 30px;
}
.st-2-itm-cnt p {
	font-size: 18px;
	font-weight: 200;
}
.st-4-itm-cnt .section-heading h2 {
	font-size: 40px;
}
.st-4-itm-cnt .section-heading span {
	font-size: 18px;
}
.st-4-itm-cnt ul li h3 {
	font-size: 20px;
	margin-bottom: 10px;
}
.st-4-itm-cnt ul li p {
	font-size: 14px;
	line-height: 25px;
}
.st-4-itm-cnt ul li {
	padding: 15px 20px;
}
.st-7-itm-icon {
	width: 50px;
	height: 50px;
	font-size: 20px;
	margin-bottom: 10px;
}
.footer-form .form-group input[type="submit"],
.footer-form .form-group button {
	font-size: 16px;
	padding: 6px 20px;
}
.footer-form .form-group .form-control {
	padding: 0px 10px 0px 20px;
	min-width: auto;
	font-size: 14px;
}
.st-8 {
	padding: 60px 0;
}
.st-10-itm {
	padding: 20px;
}
ul.st-3-tags li span {
	font-size: 20px;
}
ul.st-3-tags li p {
	font-size: 16px;
}
ul.st-3-tags li {
	padding: 25px 10px;
}
ul.st-3-tags li img {
	max-width: 10px;
}
.st-3-itm-full-width-list ul li::before {
	width: 35px;
	height: 35px;
	background-size: 15px;
}
.st-3-itm-full-width-list ul li {
	padding: 10px 0 0 50px;
	font-size: 16px;
}
.tab-content-items {
	padding: 20px;
}
.st-15-itm-contact-detail-icon {
	width: 50px;
	min-width: 50px;
	height: 50px;
	padding: 15px;
}
.st-15-itm-contact-detail-cnt-title {
	font-size: 20px;
}
.st-15-itm-contact-detail ul li {
	padding: 15px 15px;
	margin-bottom: 15px;
}
.st-15-itm-contact-form .form-group {
	margin-bottom: 15px;
}
.st-18-itm-date {
	padding: 6px 4px;
	font-size: 12px;
	width: 40px;
}
}

@media(max-width: 400px) {
.header-logo img {
	max-width: 165px;
}
body.menu-active {
	padding-top: 81.91px;
}
ul.st-3-tags {
	gap: 15px;
}
}