/**
 * Stylesheet file for Venator Search Partners.
 * Filename: style.css
 **/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family: 'Holligate Signature';
  src: url('../font/holligate-signature.ttf');
}

body {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
	font-weight: 300;
  color: #5b5b5b;
  line-height: 1.85rem;
  background-color: #fff;
}

a {
  color: #5b5b5b;
  text-decoration: none;
}

a:hover {
  color: #711b74;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
	font-style: italic;
	font-weight: 300;
	color: #3d4143;
}

h2 {
	text-align: center;
}

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

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

.back-to-top:hover {
  background: #8cb3ff;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 220px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
	background: #fff;
	border-right: #666;
  overflow-y: auto;
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 140px;
}

@media screen and (min-width: 768px) {
	#header .profile img {
		margin-top: 50px;
	}
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: 'Josefin Sans', sans-serif;
}

#header .profile h1 a, #header .profile h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#main {
  margin-left: 220px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }
  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 50px 0 0 23px;
	font-family: 'Josefin Sans', 'Poppins', sans-serif;
  text-transform: uppercase;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu li {
	border-bottom-style: solid;
	border-bottom-color: #cfcfcf;
	border-bottom-width: 1px;
	margin-bottom: 5px;
}
.nav-menu li:last-child {
	border-bottom: none;
}

a.nav-link.scrollto {
	padding: 7px 20px;
	margin: 0;
}

.nav-menu a {
  display: flex;
  align-items: center;
  color: #adadad; /* #707070; */
  /* padding: 7px 8px; */
  transition: 0.3s;
  font-size: 12px;
	line-height: 1.1rem;
  font-weight: 400;
}

.nav-menu a:hover, .nav-menu .active, .nav-menu li:hover > a {
  text-decoration: none;
  color: #000;
	font-weight: 400;
}

/* Submenu begins */
/*
.nav-menu ul li > ul {
	position: absolute;
	background-color: #fff;
	top: 0;
	left: -200px;
	display: none;
	min-width: 200px;
	z-index: -2667;
	overflow: visible;
	height: 100%;
	-webkit-transition: left 200ms ease-in;
	-moz-transition: left 200ms ease-in;
	-ms-transition: left 200ms ease-in;
	transition: left 200ms ease-in;
}

.nav-menu ul li:hover > ul {
	left: 200px;
	display: inline-block;
	z-index: 2667;3
	-webkit-transition: left 200ms ease-in;
	-moz-transition: left 200ms ease-in;
	-ms-transition: left 200ms ease-in;
	transition: left 200ms ease-in;
}

.nav-menu ul li > ul li {
	background-color:#fff;
	border-bottom: none;
}

.nav-menu ul li > ul li a:hover {
	display: inline-block;
	background-color:#fff;
	border-bottom: none;
}
*/
/* Submenu ends */

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #711b74;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

@media (max-width: 1120px) {
	.mobile-nav-logo {
		position: relative;
		left: 10px;
		top: 10px;
		left: 0;
		top: 0;
		padding: 10px;
		z-index: 9998;
		border: 0;
		font-size: 24px;
		transition: all 0.4s;
		outline: none !important;
		/*background-color: #fff;*/
		color: #101010;
		width: 75%;
		height: 100px;
	  display: inline-flex;
		align-items: center;
		line-height: 0;
		cursor: pointer;
	}
	
	.mobile-nav-logo img {
		border: none;
	}
}

@media (min-width: 1121px) {
	.mobile-nav-logo {
		display: none;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /*background: url("../img/hero-bg.jpg") top center;*/
  background-color: #fff;
  background-size: cover;
}

#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: relative;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .hero-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #711b74;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
#home {
  width: 100%;
  height: 100vh;
	background-color: #fff;
  background-size: cover;
}

#home h2, #home p {
	width: 100%;
	text-align: center;
}

#home h2 {
	margin-top: 28px;
}

#home p {
	font-size: 1.1rem;
}

@media (max-width: 768px) {
	#home h2 {
		font-size: 22px;
	}
	#home p {
		font-size: 14px;
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section { /* , div.credentials */
  padding: 60px 0; /* 60px 0; */
  overflow: hidden;
  box-shadow: 0 20px 25px -15px rgb(0 0 0 / 30%);
}
@media (max-width: 768px) {
	section, div.credentials {
		padding: 60px 0;
	}

	section#home.home {
		padding: 100px;
	}
}

.section-bg {
  background: #f5f8fd;
}

.section-title {
  padding-bottom: 10px; /* 30px; */
}

.section-title h2 {
  font-size: 32px;
  /* font-weight: bold; */
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  /* color: #841477; */ /*173b6c;*/
	text-align: center;
}

/*
.section-title h2::after {
  content: '';
  position: relative;
  display: block;
  width: 50px;
  height: 3px;
  background: #711b74;
  bottom: 0;
  left: 0;
}
*/
.section-title p {
  margin-bottom: 0;
}

.section-title span {
	/*color: #777;*/
	font-size: 16px;
	/*font-weight: 600;*/
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 12px;
}

.section-title span.quote {
	/*color: #777;*/
	font-size: 1.2rem;
	/*font-weight: 600;*/
	text-transform: none;
	letter-spacing: normal;
	display: inline-block;
	margin-bottom: 12px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #711b74;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.about {
	margin-top: 60px;
	/* border-top: #cfcfcf 1px solid; */
}

.about .icon-box {
  margin-bottom: 20px;
}

.about .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #711b74;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #711b74;
}

.about .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

.about .icon-box:hover .icon {
  background: #fff;
}

.about .icon-box:hover .icon.color-2 i {
  color: #711b74;
}

.about .icon.color-2 {
  background: #711b74;
  border: 1px solid #711b74;
}

.about .icon-box:hover .icon.color-1 i {
  color: #8cb3ff;
}

.about .icon.color-1 {
  background: #8cb3ff;
  border: 1px solid #8cb3ff;
}

.about h4.title {
	color: #fff;
}

.about .title {
  margin-left: 80px;
  /*font-weight: 700;*/
  margin-bottom: 15px;
  font-size: 18px;
	text-align: center;
}

.about .title a {
  color: #343a40;
}

.about .title a:hover {
  color: #711b74;
}

.about .description {
  margin-left: 80px;
  line-height: 1.5rem;
  font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c3e8fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #711b74;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #711b74;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #711b74;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #050d18;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #173b6c;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #711b74;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i, .social:hover i, .contact .info .navigation:hover i {
  background: #711b74;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact .php-email-form label {
	font-size: 14px;
  padding-bottom: 8px;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #711b74;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #8cb3ff;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
	color: #5b5b5b;
  font-size: 13px;
	line-height: 16px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 220px;
  z-index: 9999;
}

#footer .copyright {
  color: #5b5b5b;
  text-align: center;
}
#footer .copyright a {
  color: #5b5b5b;
  text-decoration: none;
}
#footer .copyright a:hover {
  color: #711b74;
  font-weight: 400;
  text-decoration: none;
}

#footer .container .footer-social-icons {
	display: inline-flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	color: #5b5b5b;
	font-size: 1rem;
	margin-bottom: 0.75rem;
}
#footer .container .footer-social-icons a.social-icon {
	align-items: center;
	text-align: center;
	justify-content: center;
  margin: 0 0.5rem;
}
#footer .container .footer-social-icons a.social-icon:hover {
  color: #711b74;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}

/**
 * My CSS Styles begins.
 **/

.color-1 {
	color: #79b4ff; /* light blue */
}

.color-2 {
	color: #841477; /* dark mow */
}

.announcement-box {
	position: absolute;
	width: 75%;
	margin: 1em auto;
	margin-bottom: 25%;
	padding: 0.5em 1em 0.2em 1em;
	background-color: #e9f1ff; /* e9f1ff */
	border: 1px solid #e9f1ff; /* 841477; */
	border-radius: 4px;
	align-items: center;
}

@media (max-width: 1199px) {
	.announcement-box {
		position: absolute;
		top: 10%;
		margin-bottom: 200px;
	}
}

marquee.announcement {
	color: #5b5b5b; /*fff */
	font-weight: 400;
	font-size: 0.9rem;
	line-height: 0.9rem;
	padding-right: 5rem;
}

marquee.announcement i {
	padding-right: 0.8rem;
	color: #841477;
	font-size: 1.5rem;
	vertical-align: middle;
}

.title-venator {
	font-family: 'Josefin Sans', sans-serif;
	font-style: normal;
	font-weight: 300;
	letter-spacing: 2px;
	word-spacing: 7px;
	color: #841477;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 0;
}

.signature {
	font-family: 'Holligate Signature';
	text-align: center;
}
#home h2.signature {
	font-size: 2.1rem;
	font-weight: 400;
	line-height: normal;
	word-spacing: 10px;
	color: #666;
}

.left-5p {
	margin-left: -5%;
}

.sp16 {
	display: block;
	height: 16px;
}

.sp-16 {
	margin-top: -16px;
}

.sp32 {
	display: block;
	height: 32px;
}

.sp-32 {
	margin-top: -32px;
}

.sp50 {
	display: block;
	height: 50px;
}

.sp100 {
	display: block;
	height: 100px;
}

.padding-5 {
	padding: 0 5%;
}

.padding-10 {
	padding: 0 10%;
}
.padding-20 {
	padding: 0 20%;
}

span.tag-line {
	font-size: 1.2rem;
	color: #989898 !important;
	border-bottom: none !important;
	letter-spacing: normal !important;
}

.text-justify, ul.list-justify li, ol.list-justify li {
	text-align: left; /* justufy; */
}

hr.divider {
	width: 15%;
	height: 3px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	background-image: linear-gradient(to right, #fff, #8db4ff);
	border: none;
}

hr.divider-solid {
	width: 50px;
	height: 3px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	background-color: #711b74;
	border: none;
	opacity: 1;
}

hr.divider-blue {
	width: 50px;
	height: 3px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	background-color: #8cb3ff;
	border: none;
	opacity: 1;
}

hr.divider-light {
	width: 50%;
	height: 1px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	background-color: #ccc;
	border: none;
	opacity: 0.5;
}

hr.light {
  border-color: #fff;
}

.bg-pad {
	padding: 32px 32px 23px 32px;
}

.bg-lion2 {
	display: flex;
	background: url(../img/lion-02.png) center no-repeat;
}

.bg-1 {
	background-color: #8cb3ff;
	color: #fff;
	/* background: rgba(140,179,255, 0.3); */
}

.bg-2 {
	background-color: #711b74;
	color: #fafafa;
	/* background: rgba(113,27,116, 0.3); */
}

.bg-lion2.bg-2 {
	background: rgba(255,228,255, 0.3);
}

div.body.aos-init.aos-animate h6 {
	color: #707070;
}

.recaptha-notice {
	color: #aaa;
	font-size: 11px;
	text-align: right;
}

.grecaptcha-badge { 
    visibility: hidden;
}

/*-------------
  Button begins
---------------*/

.primary-btn {
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	padding: 16px 50px;
	color: ##711b74;
	position: relative;
}

.primary-btn.normal-btn {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	color: #711b74; /* #888; */
}

.primary-btn.normal-btn:hover {
	/* color: #222; */
	font-weight: bold;
}

.primary-btn.normal-btn:before {
	border-color: #8cb3ff; /* #c4c4c4; */
}

.primary-btn.normal-btn:after {
	border-color: #8cb3ff; /* #c4c4c4; */
}

.primary-btn:before {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 28px;
	width: 28px;
	border-left: 2px solid rgba(255, 255, 255, 0.5);
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	content: "";
	border-radius: 0 0 0 4px;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.primary-btn:after {
	position: absolute;
	right: 0;
	top: 0;
	height: 28px;
	width: 28px;
	border-right: 2px solid rgba(255, 255, 255, 0.5);
	border-top: 2px solid rgba(255, 255, 255, 0.5);
	content: "";
	border-radius: 0 4px 0 0;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.primary-btn:hover:before {
	height: 100%;
	width: 100%;
	border-radius: 4px;
}

.primary-btn:hover:after {
	height: 100%;
	width: 100%;
	border-radius: 4px;
}

/*-----------
  Button ends
-------------*/

/*--------------------
  About section begins
----------------------*/

.highlight {
	padding-top: 15px;
	font-size: 1.1rem;
	text-align: center;
}

.highlight span.venator {
	padding-right: 32px;
	display: inline-block;
	font-size: 1.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #212121;
}

@media (max-width: 768px) {
	.highlight span.venator {
		display: block;
		padding-right: 0;
	}
}

.inner-box {
	display: inline-block;
	position: relative;
	margin: 20px 0;
}

.border-box {
	display: block;
	border-color: #333;
	margin: 20px !important;
	padding: 20px !important;
}

.border-box:before {
	margin: 16px 20px !important;
	padding: 16px 20px !important;
	position: absolute;
	left: 0;
	top: 0;
	height: 28px;
	width: 28px;
	border-left: 2px solid rgba(132,20,119, 0.5); /* 204,204,204 */
	border-top: 2px solid rgba(132,20,119, 0.5);
	content: "";
	border-radius: 4px 0 0 0;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.border-box:after {
	margin: 16px 20px !important;
	padding: 16px 20px !important;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 28px;
	width: 28px;
	border-right: 2px solid rgba(132,20,119, 0.5); /* 204,204,204 */
	border-bottom: 2px solid rgba(132,20,119, 0.5);
	content: "";
	border-radius: 0 0 4px 0;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.border-box h4 {
	display: inline-block block;
	text-align: center;
	margin: 15px auto;
	/* color: #fff; */
}

.border-box p {
		text-align: justify;
		font-size: 1rem;
		line-height: 1.5rem;
}

/*------------------
  About section ends
--------------------*/

/*-------------------
  Team section begins
---------------------*/

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.team {
	padding-top: 120px;
	padding-bottom: 90px;
}

.team__btn {
	text-align: right;
}

.team__item {
	height: 380px; /*480*/
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	border: #8cb2ff 1px solid;
}

.team__item:after {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(17, 17, 17, 0.9);
	content: "";
	z-index: -1;
	opacity: 0;
	-webkit-transition: all, 0.5s, ease-out, 0.5s;
	-o-transition: all, 0.5s, ease-out, 0.5s;
	transition: all, 0.5s, ease-out, 0.5s;
}

.team__item:hover:after {
	opacity: 1;
}

.team__item:hover .team__text .team__title {
	border-bottom: 1px solid rgba(183, 183, 183, 0.2);
	padding: 0 0 32px;
	margin-bottom: 34px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	bottom: initial;
	opacity: 1;
	visibility: visible;
}

.team__item:hover .team__text p {
	opacity: 1;
	visibility: visible;
}

.team__item:hover .team__text .team__social {
	opacity: 1;
	visibility: visible;
	bottom: 34px;
}

.team__text {
	height: 100%;
	position: relative;
	padding: 35px 30px 40px;
}

.team__text .team__title {
	position: absolute;
	left: 0;
	bottom: 42px;
	width: 100%;
	padding: 0 30px;
	-webkit-transition: all, 0.7s, ease-out, 0.7s;
	-o-transition: all, 0.7s, ease-out, 0.7s;
	transition: all, 0.7s, ease-out, 0.7s;
}

.team__text .team__title h5 {
	color: #444; /* fff */
	margin-bottom: 6px;
}

.team__text:hover .team__title h5 {
	color: #fff;
}

.team__text .team__title span {
	font-size: 14px;
	color: #444; /* #e4e4e4; */
	display: block;
	width: 100%;
}

.team__text:hover .team__title span {
	color: #e4e4e4;
}

.team__text p {
	color: #b7b7b7;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.7s, ease-out, 0.7s;
	-o-transition: all, 0.7s, ease-out, 0.7s;
	transition: all, 0.7s, ease-out, 0.7s;
}

.team__text .team__social {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 0 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.7s, ease-out, 0.7s;
	-o-transition: all, 0.7s, ease-out, 0.7s;
	transition: all, 0.7s, ease-out, 0.7s;
}

.team__text .team__social a {
	display: inline-block;
	font-size: 20px;
	color: #ffffff;
	margin-right: 34px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.team__text .team__social a:last-child {
	margin-right: 0;
}

.team__text .team__social a:hover {
	color: #711b74;
}

/*-----------------
  Team section ends
-------------------*/

/*----------------------
  Process section begins
------------------------*/

/* .process {} */

/*--------------------
  Process section ends
----------------------*/

/*-----------------------------
   About us > Timeline begines
  -----------------------------*/

.timeline {
  position: relative;
	margin-bottom: 75px;
}
.timeline::before {
  content: '';
  background: #b6b6b6;
  width: 5px;
  height: 95%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  width: 100%;
  margin-bottom: 30px; /* 70px; */
}
.timeline-item:nth-child(even) .timeline-content {
  float: right;
  padding: 40px 30px 10px 30px;
  padding: 10px 30px;
}
.timeline-item:nth-child(even) .timeline-content .date {
  right: auto;
  left: 0;
}
.timeline-item:nth-child(even) .timeline-content::after {
  content: '';
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 30px;
  left: -15px;
  border-width: 10px 15px 10px 0;
  /* border-color: transparent #f5f5f5 transparent transparent; */
}
.timeline-item::after {
  content: '';
  display: block;
  clear: both;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 10px 30px;
  border-radius: 4px;
  background: #e9f1ff;
  box-shadow: 0 20px 25px -15px rgba(0, 0, 0, 0.3);
}

.timeline-content::after {
  content: '';
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 30px;
  right: -15px;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #f5f5f5;
}

.timeline-img {
  width: 30px;
  height: 30px;
  background: #3d4143; /* #3f51b5; */
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-top: 25px;
  margin-left: -15px;
}

.timeline-card {
  padding: 0 !important;
	max-width: 500px;
}
.timeline-card h4, .timeline-card p {
  padding: 0 20px;
	font-size: 1rem;
  line-height: 1.5rem;
}

.timeline-content h4, .timeline-card h4 {
	padding-top: 20px;
	font-size: 1.1rem;
}

.timeline-card p, .timeline-content p {
	font-size: 0.9rem;
	line-height: 1.25rem;
	padding-bottom: 20px;
}

.timeline-card a {
  margin-left: 20px;
}

.timeline-img-header {
  position: relative;
	background: #fff;
}

@media screen and (min-width: 768px) {
	.timeline-img-header {
		height: 200px;
	}
}

blockquote {
  margin-top: 30px;
  color: #757575;
  border-left-color: #3F51B5;
  padding: 0 20px;
}

.date {
  background: #841477; /*#3d4143;*/
  display: inline-block;
  color: #fff;
  padding: 10px 15px;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .timeline::before {
    left: 50px;
  }
  .timeline .timeline-img {
    left: 50px;
  }
  .timeline .timeline-content {
    max-width: 100%;
    width: auto;
    margin-left: 70px;
  }
  .timeline .timeline-item:nth-child(even) .timeline-content {
    float: none;
  }
  .timeline .timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 30px;
    left: -15px;
    border-width: 10px 15px 10px 0;
    /* border-color: transparent #f5f5f5 transparent transparent; */
  }
}

/*--------------------------
   About us > Timeline ends
  --------------------------*/

/*---------------------------
   Services > Process begins
	---------------------------*/

div.timeline div.timeline-content.aos-init.aos-animate div.date {
	font-size: 1.2rem;
	font-weight: 500;
	color: #fff;
}

#process.timeline div.timeline-content.aos-init.aos-animate p {
	display: inline-block;
	width: 100%;
	font-size: 1rem;
	text-align: center;
	margin: 0;
	padding: 10px 25px;
}

div.multicolortext.tagline {
	line-height: 40px;
}

.tagline {
	text-align: center;
	font-size: 20px;
}

.bigf {
	font-size: 36px;
}

.medf {
	font-size: 30px;
}

.smallf {
	font-size: 24px;
}

/*
.tagline img {
	display: inline-block;
	max-height: 80px;
	width: auto;
	margin-left: auto;
	margin-right: auto;
}
*/

@media screen and (max-width: 768px) {
	.tagline img {
		display: inline-block;
		padding: 1rem 1.5rem;
		margin: 0 auto;
		width: 100%;
		height: auto;
	}
}

/*-------------------------
   Services > Process ends
	-------------------------*/

.contact-title {
	display: block;
}

.contact-title h4 {
	display: block;
	margin: 0;
	padding: 0 !important;
	font-size: 1.1rem !important;
	font-weight: 300 !important;
	text-align: center;
}

.skills h2, .skills h3, .skills h4, .skills h5 {
	color: #fff;
}

.what-we-do p {
	display: block;
	letter-spacing: 1px;
	text-transform: none;
	text-align: center;
	margin-top: -25px;
}

.img-container {
	display: block;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.cv-mb-3 {
		margin-bottom: 32px;
	}
}

@media screen and (min-width: 768px) {
	.container.team {
		padding: 0;
		margin-bottom: 50px;
	}
}

.team__social a i {
	color: #fff;
}

.team__social a:hover i {
	color: #8cb3ff;
}

.ethos {
	font-size: 0.95rem;
	line-height: 1.4rem;
}

.ethos h2, .ethos h5 {
	color: #fff;
}

.ethos p {
	text-align: justify;
}

.strength-techno {
	display: block;
	text-align: right;
	margin-top: -30px;
}

@media screen and (min-width: 768px) {
	img.core-values {
		max-height: 300px;
		width: auto;
	}
}

/**
 * My CSS Styles ends.
 **/

/* Brand area styles begins */

.brands-area {
	padding: 50px 0;
}
.brands-area .brand-wrap {
	padding: 0;
}
.brands-area .brand-wrap .owl-carousel .owl-item img {
	width: auto !important;
	height: auto !important;
}
.brands-area .brand-wrap .single-brand {
	text-align: center;
	filter: grayscale(100%);
	-o-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	opacity: .3;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.brands-area .brand-wrap .single-brand:hover {
	filter: grayscale(0%);
	-o-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	opacity: 1;
}

/* owl carousel begins */

.owl-carousel {
	margin: 0;
}

.owl-carousel .owl-nav [class*=owl-] {
	background: rgba(0, 0, 0, 0.2);
	opacity: 0.5;
	color: rgba(255, 255, 255, 0.9);
	font-size: 30px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	text-align: center;
}

.owl-carousel .owl-nav [class*=owl-] .bx-md {
    font-size: 2.25rem!important;
    margin-top: 0.4rem;
}
.owl-carousel .owl-nav [class*=owl-]:hover {
	display: block;
	background: rgba(112, 43, 116, 1);
	opacity: 1;
	transition: all 0.3s ease 0s;
	color: #FFF;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
	position: absolute;
	height: 50px;
	margin: auto !important;
}

.owl-carousel .owl-prev {
	top: calc( (100% - 50px) / 2);
	left: 10px;
}

.owl-carousel .owl-next {
	top: calc( (100% - 50px) / 2);
	right: 10px;
}

.owl-stage-outer {
	width: calc(100% - 140px);
	margin: 0 auto;
	padding: 0;
}

.owl-carousel .owl-dots {
	display: none !important;
}

@media screen and (max-width: 768px) {
	.mx-auto {
		margin-right: auto !important;
		margin-left: 10px !important;
	}
}

/* owl carousel ends */

/* Brand area styles ends */

.timeline-content.pers-left.aos-init.aos-animate {
	background: #eaeaea;
}

.timeline-content p, .aos-last-child-center p {
	padding: 10px 25px;
	margin: 0;
}

.timeline-content p span.name, .aos-last-child-center p span.name {
	font-size: 1rem;
	font-weight: 500;
	padding: 0;
}

.timeline-content p span.period {
	margin-left: 20px;
	font-size: 0.9rem;
}

.timeline-content.aos-last-child-center {
	text-align: center;
	padding: 10px 30px;
}



/* Credential page begins */

.credentials-top {
	padding: 50px 0;
	box-shadow: 0 20px 25px -15px rgb(0 0 0 / 30%);
}

.containter.credentials .row {
	width: 100%;
	background: #fff;
  display: grid;
  grid-auto-flow: column;
}

.cred-item {
	position: relative;
	background: #e9f1ff;
	height: 100%;
	padding: 10px 15px;
	color: #5b5b5b;
	font-size: 0.9rem;
	line-height: 1.25rem;
}
.case-studies .cred-item {
	padding: 20px 25px;
	font-size: 1rem;
	line-height: 1.65rem;
}

.cr-year {
  background: #841477;
  display: inline-block;
	font-size: 0.75rem;
	line-height: normal;
	font-weight: 500;
  color: #fff;
  padding: 4px 6px;
  position: absolute;
  top: 0;
  right: 0;
}
.case-studies .cr-year {
	font-size: 1rem;
	padding: 7px 10px;
}

.cr-client {
	padding-top: 7px;
	font-weight: 400;
}

.cr-name {
	font-weight: 400;
}


#credentials h4 {
	margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
	.cred-item {
		margin-left: 10%;
		margin-right: 10%; 
	}
}

/* Credential page ends */

/* Credits begins */

section#credits {
	padding: 0;
	padding-top: 25px;
	box-shadow: none;
}

.credits {
  font-size: 13px;
	font-weight: 400;
	line-height: 16px;
  color: #5b5b5b;
  text-align: center;
}
.credits a {
  color: #5b5b5b;
  text-decoration: none;
}
.credits a:hover {
  color: #711b74;
  text-decoration: none;
}

/* Credits ends */

@media (min-width: 1400px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
			max-width: 1275px !important;
	}
}

.side-5p {
	padding: 2% 7%;
}

.multicolortext {
  background-image: linear-gradient(90deg, rgba(113,27,116,1) 35%, rgba(140,179,255,1) 65%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.company-info {
	margin: 25px auto;
	align-items: center;

}

.company-info i {
  margin-left: 1rem;
  font-size: 20px;
  color: #711b74;
  float: left;
  width: 36px;
  height: 36px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  /* transition: all 0.3s ease-in-out; */
}

.company-info .ci-title {
	padding-left: 20px;
	padding-right: 3px;
	font-size: 0.8rem;
}

.company-info .ci-info {
	font-family: 'PT Mono', monospace;
	font-size: 0.8rem;
}

ul.media-links {
	width: 100%;
	padding-left: 10%;
	list-style: square;
}
ul.media-links li {
	margin-bottom: 12px;
}

ul.media-links li a:hover {
	border-bottom: #711b74 1px solid;
}

