
/* 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');


a {
	display: inline-block;
	text-decoration: none;
	color: #000;
	transition: all 0.3s;
}

a:hover {
	color: #830908;
}


/* ========== 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: 200;
  line-height: 1.7;
}

.btn {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  border: 4px solid #fff !important;
  border-radius: 0;
}
.btn-primary {
  background-color: #830908;
}
.btn img {
  margin-left: 12px;
}
.btn:hover img {
  transform: rotate(45deg);
}

.btn-secondary {
	background: transparent;
}
.btn:hover {
	background-color: #000;
}

.sec-pad {
  padding: 80px 0;
}

.bg-light {
  background-color: #F2F1EE !important;
}
.bg-light-grey {
	background-color: #f7f7f7;
}


.section-heading {
  margin-bottom: 30px;
}

.heading-type-1 {
  font-size: 46px;
  font-weight: 400;
}
.heading-type-2 {
	font-size: 56px;
	font-weight: 500;
}

.cloud-bg {
	background-image: url(../img/cloud-bg-4.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.futurstic-bg {
	background-image: url(../img/futurstic-background-img.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center;
	/* background-attachment: fixed; */
}







@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; */
	/* border-bottom: 5px solid #830908; */
}

.header-in {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.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: 300;
  font-size: 20px;
  padding: 5px;
}

.header-nav>ul>li a:hover,
.header-nav>ul>li a.active {
	color: #830908;
}
.header-nav>ul>li a {
	position: relative;
}
.header-nav>ul>li a::before {
	position: absolute;
	content: "";
	width: 0;
	height: 2px;
	left: 50%;
	bottom: 0;
	background-color: #830908;
	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: 1px solid #830908;
  border-radius: 100%;
  padding: 7px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.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: 70px;
  /* padding-top: 121px; */
}

@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: 1;
	}

	.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%;
		overflow: auto;
		/*background: #ccc;*/
		transition: .5s;
		z-index: 1;
	}

	.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 ===== */


.message {
    background-color: #830908;
    padding: 3px 0;
}

.message marquee {
    color: #fff;
    display: block;
    font-size: 14px;
}


/* ===== Banner ===== */
.st-1 {
  /* background: url(../img/banner-bg-2.jpg) no-repeat; */
  background-size: cover;
  background-position: right;
	position: relative;
}
.st-1-itm-title {
  font-size: 42px;
  font-weight: 400;
	margin: 0;
}
.st-1-itm {
  color: #fff;
  position: relative;
  z-index: 1;
  /* padding: 30px 0 50px 30px; */
  max-width: 700px;
}
.st-1-itm-in {
	position: relative;
	padding: 30px 0 30px 30px;
}
.st-1-itm-in::before {
  content: "";
  position: absolute;
  /* width: 85px; */
	width: 60px;
  height: 100%;
  background: #830908;
  left: 0;
  top: 0;
  z-index: -1;
}
.st-1-itm-description {
  margin: 35px 0 0;
}
.st-1-itm-description p:last-child {
	margin: 0;
}

/* Video Banner */
.st-1-bg-video video {
	width: 100%;
	display: block;
}
.st-1-main-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, #000, transparent);
}
/* Video Banner */




.st-1-overlay {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 450px;
	backdrop-filter: blur(5px);
	background: rgba(255, 255, 255,0.25);
	display: flex;
	align-items: center;
	padding: 40px;
	color: #fff;
}
.overlay-cnt ul {
	padding: 0;
	list-style: none;
	margin-bottom: 30px;
}
.overlay-cnt ul li {
	padding: 15px 0;
	font-size: 22px;
	line-height: 1.5;
	border-bottom: 1px solid #ccc;
}


/* ===== Banner ===== */

/* ===== About Section ===== */
.st-2-itm-cnt-title {
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 50px;
}
.st-2-itm-cnt-title span {
  font-size: 70px;
  font-weight: 200;
  color: #830908;
}
.st-2-itm-cnt p {
  font-size: 20px;
  font-weight: 200;
}
/* ===== About Section ===== */

/* ===== Impact Of Disruption ===== */
.st-3 {
	background: #000 url(../img/bg-img-3.png) no-repeat;
	background-size: cover;
}
.st-3-itm-img {
	background-color: #830908;
	padding: 20px;
	border-radius: 10px;
}
.st-3-itm-img img {
	max-width: 90px;
}
.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: 60px;
	font-weight: 600;
	color: #830908;
}
.st-3-itm-in {
	padding: 30px;
	background-color: #fff;
}
.st-3-itm-in p {
	font-size: 18px;
	line-height: 1.2;
}
.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: #830908;
}


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: 24px;
	line-height: 1.2;
	font-weight: 400;
	color: #830908;
}
ul.st-3-tags li {
	text-align: center;
	/* padding: 20px 30px; */
	padding: 28px 30px;
	background-color: #fff;
	/* flex: 0 0 33.33%; */
	width: 100%;
}
ul.st-3-tags li p {
	margin: 0;
	font-size: 14px;
	line-height: 1.3;
}
ul.st-3-tags li img {
	margin: 0 0 5px;
	width: 18px;
}
.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: 30px;
	color: #fff;
}
.st-3-itm-full-width-list {
	margin-top: 10px;
}
.st-3-in .section-heading {
	margin-bottom: 20px;
}


/* ===== Impact Of Disruption ===== */

/* ===== 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: 700;
  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: #820A08;
  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: 10px;
}
.st-4-itm-cnt .section-heading {
	margin-bottom: 20px;
}
.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: 60px; */
  /* font-weight: 400; */
}
.st-4-itm-cnt ul {
  list-style: none;
  padding: 0;
}
.st-4-itm-cnt ul li h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
}
.st-4-itm-cnt ul li p {
  margin: 0;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.5;
}
.st-4-itm-cnt ul li p b {
	font-weight: 500;
}
.st-4-itm-cnt ul li {
  padding: 20px 30px;
  background: #F2F1EE;
  margin-bottom: 10px;
}
.st-4-itm-cnt ul li:last-child {
	margin-bottom: 0;
}
.st-4-itm-cnt ul li ul {
	list-style: disc;
	padding-left: 20px;
}
.st-4-itm-cnt ul li ul li {
	padding: 0;
	margin: 0;
}

/* ===== We Can Help ===== */

/* ===== Value Proposition ===== */
.st-5 {
  background: #060b0e url(../img/bg-transparent-img.png) no-repeat;
  background-size: cover;
  color: #fff;
}
.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 #820A08;
	background-color: #0D161C;
}
.st-5-itm-icon {
	width: 80px;
	height: 80px;
	padding: 10px;
	background-color: #820A08;
	border-radius: 100%;
	border: 4px solid #fff;
	/* border: 4px solid #000; */
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.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;
}
/* ===== 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: 30px 30px;
}
.st-6-itm .section-heading {
	margin-bottom: 20px;
}
.st-6-itm .btn.btn-secondary {
	/* margin-top: 15px; */
}
.st-6-itm .section-heading {
	margin-bottom: 10px;
}
.st-6-itm .heading-type-1 {
	font-size: 40px;
}
/* ===== 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 auto 20px auto;
}
ul.number-list {
	list-style: decimal;
}
.st-7-itm-cnt ul li {
	line-height: 1.3;
	padding: 5px 0 5px 30px;
	position: relative;
}
.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;
	padding-right: 20px;
}
.st-7-itm {
	border: 1px solid #BBBBBB;
	padding: 20px 0 20px 0;
	border-radius: 10px;
	background-color: #000;
	transition: all 0.3s;
	color: #fff;
}
.st-7-items .row {
    gap: 20px 0;
}
.st-7-itm:hover {
	background-color: #830908;
	
}
.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;
}
.st-7-itm-cnt-title {
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}
.phased-approach .section-heading p {
    font-size: 20px;
    font-weight: 500;
}
/* ===== Offering Overview ===== */

/* ===== Footer ===== */
.footer {
	background: #830908 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 p {
	margin: 0;
	line-height: unset;
	display: flex;
	align-items: center;
}
.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"] {
	color: #fff;
	background: #000;
	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 {
	background: #820A08;
}
.footer-form .form-group span.wpcf7-not-valid-tip {
	position: absolute;
	bottom: -35px;
	color: #fff;
}
.footer-form form .wpcf7-response-output {
	color: #fff;
}
.footer-form .form-group span.wpcf7-spinner {
	position: absolute;
	margin: 0 0 0 5px;
	left: 100%;
}


.footer-top {
	padding: 50px 0;
	/* border-bottom: 1px solid #B3B3B3; */
	border-bottom: 1px solid #b3b3b359;
}


.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;
	justify-content: 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: #830908;
}








.copyright-items p {
	margin: 0;
	text-align: center;
}
.copyright {
	background-color: #000;
	padding: 8px 0;
	color: #fff;
}






.quick-links ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}
.quick-links ul li {
	margin: 0 10px;
}
.quick-links ul a:hover {
	text-decoration: underline;
}
.footer-contact-links ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-items: center;
	justify-content: center;
}
.footer-contact-links ul li {
	margin: 0 10px;
}
.footer-contact-links {
	margin: 10px 0;
}


.footer-logo img {
	filter: brightness(0) invert(1);
}

/* ===== Footer ===== */

/* ===== Page Header ===== */
.st-8 {
	background: url(../img/page-header-bg-maroon.jpg) no-repeat;
	background-size: cover;
	background-position: right center;
	padding: 110px 0;
	display: none;
}
.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: #830908;
	margin: 5px 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: 10px;
}
.st-10-itm-title {
	font-size: 26px;
	font-weight: 400;
	margin: 0;
}
/* ===== 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;
}
.st-11-itm-img {
	position: relative;
}
.st-11-itm-img ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.st-11-itm-img ul li {
	position: absolute;
	opacity: 0.8;
	transition: all 0.3s;
}
.st-11-itm-img>img {
	opacity: 0;
}
.st-11-itm-img ul li:hover {
	opacity: 1;
	filter: brightness(1.2);
}
/* Positions */
/* .st-11-itm-img ul li.st-11-itm-img-1 {
	top: 0;
	left: 0;
	width: 624px;
}
.st-11-itm-img ul li.st-11-itm-img-2 {
	left: 46.79%;
	top: 0;
	width: 557px;
}
.st-11-itm-img ul li.st-11-itm-img-3 {
	top: 27.5%;
	left: 0;
	width: 569px;
}
.st-11-itm-img ul li.st-11-itm-img-4 {
	left: 54%;
	top: 25.6%;
	width: 540px;
}
.st-11-itm-img ul li.st-11-itm-img-5 {
	left: 0;
	bottom: 0;
	width: 660px;
}
.st-11-itm-img ul li.st-11-itm-img-6 {
	left: 49.6%;
	bottom: 0;
	width: 649px;
} */

.st-11-itm-img ul li.st-11-itm-img-1 {
	top: 0;
	left: 0;
}
.st-11-itm-img ul li.st-11-itm-img-2 {
	left: 46.7%;
	top: 0;
}
.st-11-itm-img ul li.st-11-itm-img-3 {
	top: 27.5%;
	left: 0;
}
.st-11-itm-img ul li.st-11-itm-img-4 {
	left: 54%;
	top: 25.6%;
}
.st-11-itm-img ul li.st-11-itm-img-5 {
	left: 0;
	bottom: 0;
}
.st-11-itm-img ul li.st-11-itm-img-6 {
	left: 49.6%;
	bottom: 0;
}
/* Positions */

/* ===== 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: #830908;
	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: 30px;
}
.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: 40px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}
.tab-content-items {
	background: #830908 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);
	left: calc(100% + 16px);
}
.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;
}

/* height */
.st-12-itm-tabs ul.nav-tabs::-webkit-scrollbar {
  height: 5px;
}

/* Track */
.st-12-itm-tabs ul.nav-tabs::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.st-12-itm-tabs ul.nav-tabs::-webkit-scrollbar-thumb {
  background: #888;
}



/* ===== 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: #830908;
	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: #830908;
}
.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: #830908;
}
.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% + 16px);
	/* left: calc(100% + 10px); */
	top: 50%;
	transform: translateY(-50%);
	background: url(../img/navigate-arrow-right.png);
}

.st-12-itm-tabs li.navigate-arrow::after {
	width: 14px;
	height: 23px;
	left: calc(100% + 10px);
	background-size: 14px;
	background-repeat: no-repeat;
}

@media(min-width: 1600px) {
.st-12-itm-tabs li.navigate-arrow::after {
    left: 120%;
}
}
@media(min-width: 1199px) {
	.st-12-itm-tabs ul.nav-tabs {
		justify-content: space-between;
	}
}


/* ===== 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: #830908;
	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;
}
.wpcf7-form-control-wrap {
	width: 100%;
}
/* ===== Contact Us ===== */

/* ===== Career ===== */
.st-17-itm-icon {
	width: 60px;
	min-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-details {
	display: flex;
	align-items: center;
	gap: 20px;
}
.st-17-itm-in-btns {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}
ul.st-17-itm-tags {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
ul.st-17-itm-tags 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: 0;
	color: #fff;
}
.st-17-itm-salary-detail p {
	color: #fff;
	font-size: 20px;
}
.st-17-itm-salary-detail p span {
	font-weight: 600;
}
.st-17-itm ul {
	color: #fff;
	padding-left: 20px;
	margin: 15px 0 10px;
}
.st-17-itm-in-btns .btn {
	font-size: 16px;
	font-weight: 500;
	padding: 3px 8px;
	border: 3px solid #fff !important;
}
.st-17-itm-in-btns .btn img {
	max-width: 12px;
	margin-left: 5px;
}






/* Modal */
.career-modal-form .form-group {
	margin-bottom: 20px;
}
.career-modal-form {
	margin-top: 20px;
}
.career-detail-modal-cnt {
	margin-top: 15px;
	border: 1px solid #830908;
	padding: 20px;
}
.career-detail-modal-cnt h2 {
	font-size: 20px;
	font-weight: 500;
}
.career-detail-modal-cnt ul {
	padding-left: 20px;
}
.career-detail-modal-cnt p a {
	color: #830908;
	font-weight: 400;
}
.career-detail-modal-cnt p a:hover {
    text-decoration: underline;
}
/* Modal */
/* ===== Career ===== */

/* ===== Blogs ===== */
.st-18-itm-img {
	position: relative;
	overflow: hidden;
}
.st-18-itm-date {
	position: absolute;
	top: 0;
	right: 10px;
	padding: 8px 5px;
	background: #830908;
	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 ===== */




.modal-content {
	border-radius: 0;
}
.modal-title {
	font-size: 30px;
	text-align: center;
	font-weight: 600;
}
.modal-header {
	border: 0;
	padding: 0;
}
.modal-header button.btn-close {
	margin: 0 0 0 auto;
	background: #830908 url(../img/popup-close.png) no-repeat;
	background-position: center;
	border-radius: 0;
	opacity: 1;
	box-shadow: none;	
}




.st-20-in {
	background: #830908 url(../img/bg-img-3.png) no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 40px;
	box-shadow: 20px 20px 0px 0px rgba(217,217,217,1);
}
.st-20-itm-decription p {
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
}
.st-20-itm-decription p:last-child {
	margin: 0;
}



/* st-21 */

/* st-21 */







.comment-form p label, .comment-form p label {
    width: 100%;
}

.comment-form p textarea, .comment-form p input {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 10px;
    font-size: 14px;
}
.comment-form p input[type="submit"] {
    background-color: #830908;
    color: #fff;
    border: 0;
}
.comment-form p input[type="submit"]:hover {
    background: #000;
}


.comments-title {
    font-size: 24px;
}
.comment-author img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.comment-author b.fn a {
    color: #830908 !important;
}





.st-23-itm {
    background-color: #0D161C;
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    border-bottom: 4px solid #830908;
}
.st-23-items .row {
    gap: 20px 0;
}

.st-23-itm-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    padding: 15px;
    border: 2px solid #830908;
    margin-bottom: 10px;
}

.st-23-itm-cnt-title {
    font-size: 24px;
    font-weight: 600;
}

.st-23-itm-cnt-description p {
    line-height: 1.5;
}

.st-23-itm-cnt-description p:last-child {
    margin-bottom: 0;
}

.st-24-itm {
    background-color: #fff;
    box-shadow: 0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.08);
    padding: 20px;
    border: 1px solid #ddd;
}
.st-24-items-in .row {
    gap: 25px 0;
}
.st-24-itm-title {
    font-size: 24px;
    font-weight: 600;
    color: #830908;
}
.st-24-itm-description p {
    line-height: 1.5;
}
.st-24-itm-description p:last-child {
    margin-bottom: 0;
}
.st-24-items .section-heading {
    position: sticky;
    top: 150px;
    margin-bottom: 0;
}



.st-25-itm-icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
    background-color: #830908;
    padding: 20px;
}
.st-25-itm ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.st-25-itm ul li {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.st-25-itm ul li:last-child {
    margin-bottom: 0;
    border: 0;
    padding-bottom: 0;
}
.st-25-itm-cnt-title {
    font-size: 24px;
    font-weight: 600;
}
.st-25-itm-cnt-description p:last-child {
    margin-bottom: 0;
}












































































/* ==================================================
								Responsive CSS Start
==================================================*/
@media(max-width: 1600px) {
.st-11-itm-img ul li.st-11-itm-img-1 {
	width: 48.1%;
}
.st-11-itm-img ul li.st-11-itm-img-2 {
	width: 43.2%;
}
.st-11-itm-img ul li.st-11-itm-img-3 {
	width: 43.8%;
}
.st-11-itm-img ul li.st-11-itm-img-4 {
	width: 42%;
}
.st-11-itm-img ul li.st-11-itm-img-5 {
	width: 51%;
}
.st-11-itm-img ul li.st-11-itm-img-6 {
	width: 49%;
}
}

@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-2-itm-cnt-title {
	font-size: 70px;
}
.st-2-itm-cnt-title span {
	font-size: 60px;
}
.st-4-itm-cnt .section-heading h2 {
	/* font-size: 70px; */
}
.heading-type-2 {
	font-size: 46px;
}

.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;
}
/* banner overlay */
.banner-overlay {
	padding: 30px 0;
}
.st-1-overlay {
	position: static;
	width: 100%;
	background: rgba(0, 0, 0, 0.25);
}
/* banner overlay */
}

@media(max-width: 991px) {
.st-1-bg-video video {
	height: calc(100vh - 100px);
	object-fit: cover;
	object-position: center;
}
.st-2-itm-cnt-title {
	font-size: 60px;
	margin-bottom: 20px;
}
.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: 40px;
}
.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% + 10px);
	top: 50%;
	transform: translateY(-50%);
	background: url(../img/navigate-arrow-right.png);
	background-size: 14px;
}
.st-12-itm-tabs-itm.navigate-arrow::after {
	left: 50%;
}

.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-top span {
	font-size: 50px;
}
.st-3-itm {
	margin: 10px 0;
}
.st-3-itm-in p,
.st-3-itm-in ul li {
	font-size: 20px;
}

.st-14-itm {
	
}
.tab-content-items>h3 {
	font-size: 30px;
}
.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;
}
.st-24-itm-img {
    margin-top: 20px;
}
.st-25-itm-img {
	margin-bottom: 20px;
}


}

@media(max-width: 767px) {
p, li {
	font-size: 14px;
}
.st-1-bg-video video {
	height: calc(100vh - 200px);
}
.st-1-itm-title {
	font-size: 32px;
}
.overlay-cnt ul li {
	font-size: 20px;
	padding: 10px 0;
}
.st-1-itm-description {
	margin: 20px 0 0;
}
.overlay-cnt ul {
	margin-bottom: 20px;
}
.st-2-itm-cnt-title,
.st-2-itm-cnt-title span {
	font-size: 50px;
}
.heading-type-1 {
	font-size: 30px;
}
.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;
}
.st-1-itm-in::before {
	width: 53px;
}
.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: 40px;
}
.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;
}
ul.st-17-itm-tags li {
	padding: 1px 5px;
	font-size: 12px;
}
.st-17-itm-icon {
	width: 50px;
	min-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: 70px; */
}
.header-rgt a {
	width: 30px;
	height: 30px;
}
.header-rgt {
	margin-right: 10px;
	gap: 10px;
}
.st-1-bg-video video {
	height: calc(100vh - 150px);
}

.st-1-itm-in {
	padding: 15px 0 15px 20px;
}
.st-1-itm-in::before {
	width: 42px;
}
.st-1-itm-title {
	font-size: 30px;
}
.overlay-cnt ul li {
	font-size: 16px;
	padding: 5px 0;
}
.overlay-cnt ul {
	margin-bottom: 10px;
}
.st-1-overlay {
	padding: 20px;
}
.btn {
	font-size: 14px;
}
.btn img {
	margin-left: 8px;
	width: 14px;
}
.st-2-itm-cnt-title, .st-2-itm-cnt-title span {
	font-size: 40px;
}
.st-2-itm-cnt-title {
	margin-bottom: 25px;
}
.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;
}
.st-7-itm-cnt-title {
	font-size: 18px;
}
.footer-form .form-group input[type="submit"] {
	font-size: 16px;
	padding: 6px 20px;
}
.footer-form .form-group .form-control {
	padding: 0px 10px 0px 20px;
	min-width: auto;
	font-size: 14px;
}
.footer-form .form-group span.wpcf7-spinner {
	right: 0;
	left: unset;
	top: 50px;
}
.st-8 {
	padding: 60px 0;
}
.st-10-itm {
	padding: 20px;
}
ul.st-3-tags {
	gap: 15px;
	margin-top: 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-17-itm-details {
	gap: 10px;
}
.st-17-itm-in-btns .btn {
	font-size: 14px;
}
.st-18-itm-date {
	padding: 6px 4px;
	font-size: 12px;
	width: 40px;
}
.st-20-in {
	padding: 20px;
	box-shadow: 10px 10px 0px 0px rgba(217,217,217,1);
}
.st-20-itm-decription p {
	line-height: 1.25;
	font-weight: 500;
}
.st-6-itm .heading-type-1 {
	font-size: 26px;
}
}


@media(max-width: 350px) {
ul.st-3-tags {
	gap: 10px;
}
}