@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap");

.over-width-scroll {
	z-index: 100;
	width: auto;
	right: 0;
	bottom: 0;
	position: absolute;
	background: rgb(29, 31, 34);
	background: linear-gradient(
		180deg,
		rgba(29, 31, 34, 0) 0%,
		rgba(29, 31, 34, 1) 50%,
		rgba(29, 31, 34, 1) 100%
	);
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#headers {
	position: fixed;
}

.headers {
	position: fixed;
	z-index: 100;
	display: none;
	height: 100%;
}

.header-list {
	color: #fff;
	background-color: #181818;
	width: 100%;
	height: 100%;
	margin: 0;
}

a {
	text-decoration: none;
}

.header-icon {
	position: absolute;
	right: 0;
	top: 0;
	margin-right: 115px;
	margin-top: 20px;
}

.menu-list {
	list-style: none;
	margin-top: 70px;
	/* justify-content: flex-end;
      align-items: right;
      position:absolute;
      right: 100; */
	float: right;
	margin-right: 100px;
}

.menu-list > li > a::before {
	content: url(../../Assets/images/circle.svg);
	font-size: 17px;
	fill: #fff;
	margin: 0;
	color: #fff;
	opacity: 0;
}

.sticky-section {
	background: #f6f5ee 0% 0% no-repeat padding-box;
	padding: 3%;
	padding-left: 6.4%;
}

.sticky-section > p {
	font-family: "Poppins", sans-serif;
	font-weight: 300 !important;
	font-size: 16px;
	width: 80%;
}

.menu-list > li > a:hover::before {
	margin-right: 24px;
	opacity: 1;
	transition: all 1s;
}

.menu-list > li > a:hover {
	color: #fff;
	margin: 0;
}

.menu-list > li > a {
	font-size: 20px;
	color: #585858;
	margin-left: -20px;
	transition: margin 1s;
}

.menu-list {
	width: 200px;
}

.menu-list > p {
}

.menu-list {
	height: 830px;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
}

.menu-list > li {
	margin-top: 60px;
}

.social-container-icons > img {
	margin-right: 20px;
}

* {
	box-sizing: border-box;
}

.togg {
	position: fixed;
	z-index: 100;
	right: 0;
	animation: togg 1s linear;
	width: 50px;
	margin-top: 20px;
	margin-right: 118px;
	transition: all 2s;
}

@keyframes togg {
	0% {
		transform: translateX(200px);
		opacity: 0;
	}

	50% {
		opacity: 0.5;
	}

	70% {
		transform: translateX(0px);
		opacity: 1;
	}
}

#togg {
	display: none;

	transition: all 0.5s;
}

.ca {
	border-right: none;
}

/* Hero Section */
.hero-section {
	position: relative;
	height: 100vh;
}

.hero-section > img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	filter: brightness(50%);
}

.hero-content {
	position: absolute;
	top: 80%;
	left: 14.5rem;
}

.hero-content > .hero-heading {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 40px;
	color: #fff;
	margin-bottom: 1.4rem;
}
/* 
.hero-content>.hero-subheading {
  font-family: Sofia Pro Regular, sans-serif;
  font-size: 2.7rem;
  line-height: 3.1rem;
  color: #d8d4ed;
} */

@media screen and (max-width: 42rem) {
	.hero-content {
		top: 70%;
		left: 3.2rem;
	}

	.we-call {
		width: 90% !important;
		font-size: 16px !important;
	}

	.our-mission > h2 {
		line-height: 30px !important;
	}

	.our-mission > p {
		line-height: 30px !important;
		text-align: center;
	}

	.our-vision > h2 {
		line-height: 30px !important;
	}

	.our-vision > p {
		line-height: 30px !important;
	}

	.work-content {
		font-size: 16px !important;
		line-height: 30px !important;
		margin: 10px !important;
		text-align: center !important;
		width: 90%;
	}

	.work-section > .heading {
		font-size: 30px !important;
		margin: 10px !important;
		text-align: center;
	}

	.togg {
		margin-right: 50px !important;
	}

	.about-section-three > .row > div:nth-child(1) {
		margin-left: 0px !important;
		padding-left: 40px;
		margin-right: 0px !important;
	}

	.about-section-three > .row > div:nth-child(1) > p {
		width: 100% !important;
	}
}

/* Mission Section */
.mission-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	font-family: "Poppins", sans-serif;
	font-weight: 600;
}

.our-vision {
	padding: 8rem 8rem 8rem 11.5rem;
}

.our-mission {
	border-left: 1px solid #e5e5e5;
	padding: 8rem 14.5rem 8rem 8rem;
}

.our-vision:hover,
.our-mission:hover {
	background-color: #fff9e8;
}

.vision-img {
	content: url("../../Assets/images/About/our-vision.svg");
	max-width: 9.7rem;
	margin-bottom: 1rem;
}

.mission-img {
	content: url("../../Assets/images/About/our-mission.svg");
	max-width: 9.7rem;
	margin-bottom: 1rem;
}

.our-vision:hover > .vision-img {
	content: url("../../Assets/images/About/our-vision-hover.svg");
}

.our-mission:hover > .mission-img {
	content: url("../../Assets/images/About/our-mission-hover.svg");
}

.our-vision > h2,
.our-mission > h2 {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 6.3rem;
	letter-spacing: 0.55px;
}

.our-vision > p,
.our-mission > p {
	margin-top: 1.7rem;
	font-size: 14px !important;
	line-height: 3.6rem;
	color: #6a6a6a;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
}

@media screen and (max-width: 42rem) {
	.mission-section {
		display: block;
	}

	.our-vision,
	.our-mission {
		padding: 3.2rem;
		text-align: justify;
	}
}

/* Purpose Section */
.core-process {
	color: #fff;
	transform: translateY(30px);
	text-align: center;
	font-size: 1.8rem;
	line-height: 2.8rem;
	letter-spacing: 3.6px;
}

.about-section-two {
	height: 60vh;
	background: #4d4da0 0% 0% no-repeat padding-box;
	opacity: 1;
}

.col {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 42rem) {
	/* .about-section-two > .row > .col {
    width: 100vw;
  } */
}

/* Values Section */
.values-section {
	padding: 5% 7%;
	background-color: #f6f5ee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}

.values-section > .values-container > .heading {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 24px;
	letter-spacing: 0.4px;
	width: 50%;
}

.values-section > .values-container > .values-content {
	margin-top: 1.5rem;
	color: #6a6a6a;
	font-size: 16px;
	width: 70%;
}

.values-section > .conference-img-container {
	overflow: hidden;
}

.conference-img {
	width: 100%;
	transition: all 300ms;
}

.conference-img:hover {
	transform: scale(1.1);
}

@media screen and (max-width: 42rem) {
	/* .values-section {
    display: block;
    padding: 3.2rem;
    text-align: justify;
  }

  .values-section > .conference-img-container {
    width: 100%;
    margin: 3.6rem 0;
  } */
}

/* Work Section */
.work-section {
	width: 100%;
	padding: 5% 7%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}

.work-section > .subheading {
	color: #0751bf;
	font-size: 30px;
	line-height: 2.8rem;
	letter-spacing: 3.6px;
	margin-bottom: 1.4rem;
}

.work-section > .heading {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 40px;
	/* line-height: 6.3rem; */
	letter-spacing: 0.55px;
}

.work-section > .work-content {
	color: #6a6a6a;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	width: 90%;
	font-size: 14px;
	line-height: 30px !important;
	margin-top: 3.6rem;
}

@media screen and (max-width: 42rem) {
	.work-section {
	}

	.work-section > .work-content {
		line-height: 2.6rem;
		margin-top: 3.6rem;
		text-align: justify;
	}
}

/* Leadership Section */
.leadership-section {
	/* max-height: 100vh; */
	padding-left: 5%;
	padding-right: 5%;
	display: flex;
	align-items: center;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	background-image: url("../../Assets/images/About/leadership-bg.png");
	color: #fff;
}

.leadership-content {
	width: 70% !important;
}

.leadership-content > .subheading {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 1.6px;
	line-height: 30px;
}

.leadership-content > .heading {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 40px;
	letter-spacing: 0.55px;
}

.leadership-content > p {
	font-size: 14px;
	line-height: 30px !important;
	text-align: left;
	width: 80% !important;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	opacity: 0.7;
}

.leadership-gallery {
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	column-gap: 2.4rem;
	row-gap: 1.8rem;
	overflow-y: scroll;
	scrollbar-width: none;
}
.leadership-gallery::-webkit-scrollbar {
	display: none;
}
.gallery-item {
	text-align: center;
}

.gallery-img {
	width: 100%;
	filter: grayscale(100%);
	transition: all 300ms;
	overflow: hidden;
}

.gallery-img:hover {
	filter: grayscale(0);
	/* transform: scale(1.1); */
}

.member-name {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	/* margin: 2.4rem 0 0.5rem; */
	margin-bottom: 0.8rem;
	/* white-space: nowrap; */
}

.member-position {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-size: 12px;
	letter-spacing: 0.17px;
	line-height: 1.5;
	margin: -10px auto;
	/* width: 80%; */
	letter-spacing: 0;
}
.grid-item-1 {
	grid-column: 2/3;
}
.grid-item-2{
	grid-column: 1/2;
}
.grid-item-15{
	grid-column: 2/3;
}
.grid-item-2,.grid-item-5,.grid-item-8{
	transform: translateY(120px);
}
.grid-item-4,.grid-item-7,.grid-item-10{
	transform: translateY(60px);
}
.grid-item-11,.grid-item-14{
	transform: translateY(90px);
}
.grid-item-13,.grid-item-16{
	transform: translateY(50px);
}

@media screen and (max-width: 900px) {
	.leadership-section {
		flex-direction: column;
		justify-content: center;
	}
	.grid-item-2,.grid-item-5,.grid-item-8,.grid-item-11{
		transform: translateY(0);
	}
	.grid-item-4,.grid-item-7,.grid-item-10,.grid-item-13,.grid-item-14,.grid-item-16{
		transform: translateY(0);
	}
	.leadership-content {
		justify-content: center;
		text-align: center;
		width: 100% !important;
	}

	.leadership-content > p {
		width: 100% !important;
		text-align: center;
	}

	.leadership-gallery {
		max-height: 100%;
		width: 100% !important;
	}

	.gallery-item {
		margin-bottom: 2em;
		margin-left: auto;
		margin-right: auto;
	}

	.gallery-img > img {
		height: 200px !important;
	}

	.grid-item-2,
	.grid-item-5 {
		transform: translateY(0px);
	}

	.grid-item-4,
	.grid-item-7 {
		transform: translateY(0px);
	}
}

@media only screen and (max-width: 42rem) {
	.leadership-section {
		flex-direction: column;
		justify-content: center;
		padding: 3.2rem;
		gap: 5.6rem;
	}
	grid .connect-a {
		display: none;
	}

	.leadership-gallery {
		max-height: 100%;
		display: block;
	}

	.gallery-item {
		margin-bottom: 3.2rem;
		/* width: 300px; */
	}

	.grid-item-2,
	.grid-item-5 {
		transform: translateY(0px);
	}

	.grid-item-4,
	.grid-item-7 {
		transform: translateY(0px);
	}
}

/* Call-To-Action Section */
.cta-section {
	width: 100%;
	background-color: #f6f5ee;
	padding: 7rem 14.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4rem;
}

.cta-content {
	width: 500px;
}

.cta-title {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 3.2rem;
	line-height: 3.6rem;
	letter-spacing: 0.32px;
	margin-bottom: 1.5rem;
}

.cta-text {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 2.8rem;
	color: #6a6a6a;
}

.cta-btn {
	padding: 2.4rem 4rem;
	background-color: #fff;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 2.1rem;
	letter-spacing: 1.62px;
	border: none;
	border-radius: 3.5rem;
	transition: all 300ms;
}

.cta-btn:hover {
	background-color: #000;
	color: #fff;
}

@media screen and (max-width: 1024px) {
	.over-width-scroll {
		display: none;
	}

	.menu-list > li > a {
		font-size: 18px;
		margin-bottom: 5px;
		padding-bottom: 5px;
		height: 10px;
		margin-top: 10px;
	}

	.menu-list > li {
		margin-top: 25px;
	}

	.connect-a {
		display: none;
	}

	.we-call {
		width: 90%;
	}

	.about-section-two {
		height: 100%;
	}

	.mar + .hidden-content {
		display: block;
	}

	.about-section-two > .row > .col {
		height: 100%;
		padding-left: 20px;
	}

	.hidden-content {
		margin-top: 150px !important;
		width: 90%;
	}

	.togg {
		margin-right: 20px;
	}
}

@media only screen and (max-width: 420px) {
	.cta-section {
		flex-wrap: wrap;
		padding: 2.4rem;
		flex-direction: column;
		text-align: center;
		margin-bottom: 0.2rem;
	}

	.row {
		display: inline;
	}

	.over-width-scroll {
		display: none;
	}

	.connect-a {
		display: none;
	}

	.cta-content {
		width: 100%;
		padding-bottom: 2rem;
	}

	.cta-btn {
		padding: 1.6rem 2.4rem;
		font-size: 1.4rem;
		line-height: 1.6rem;
	}
}

/* Footer Area */

.landing-content > p {
	width: 355px;
	height: 76px;

	font-size: 16px;
	text-align: left;
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	letter-spacing: 0px;
	color: #ffffffb4;
	opacity: 1;
	padding-left: 7%;
}

.home-about {
	height: 100vh;
	position: relative;
}

.video {
	object-fit: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 2;
	/* background: rgba(0, 0, 0, 0.6); */
}

.landing-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 3;
	margin-top: 30%;
	color: #fff;
	padding-left: 6.7%;
	padding-top: 5%;
	padding-bottom: 8px;
	background: rgb(0, 0, 0);
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 1) 0%,
		rgba(0, 0, 0, 0.5354516806722689) 56%,
		rgba(0, 0, 0, 0) 100%
	);
}

.play-btn {
	content: url(../../Assets/images/videoicon.svg);
	height: 20px;
	background-repeat: no-repeat;
	width: 70px;
	height: 70px;
	display: flex;
	margin-right: 19px;
	transition: content 1s;
}

.play-btn:hover {
	content: url(../../Assets/images/videoicon2.svg);
}

.landing-content h2 {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 30px;
}

.we-call {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	color: #d8d4ed;
	letter-spacing: 1.5px;
	font-size: 1em;
	width: 60%;
}

.overlay-inner {
	display: flex;
}

.overlay-inner button {
	color: #fff;
	background: transparent;
	width: 200px;
	height: 60px;
	border: 1px solid #f4f4f4;
	border-radius: 35px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	letter-spacing: 00.74px;
	font-weight: 500;
}

.overlay-inner button:hover {
	background-color: #fff;
	color: #000;
}

/* correction-section */
.our-vision {
	padding: 5% 15% !important;
}

.our-mission {
	padding: 5% 15% !important;
}

.our-vision > p {
	margin: 0px !important;
	line-height: 30px;
}

.our-vision > h2 {
	line-height: 20px;
}

.our-mission > p {
	font-size: 16px;
	line-height: 30px;
	margin: 0px !important;
}

.our-mission > h2 {
	font-size: 30px;
	line-height: 20px;
}

.our-mission {
	padding: 3% 15% !important;
}

.hidden-content {
	margin-top: 1px !important;
}

.work-content {
	line-height: 40px !important;
	margin: 10px !important;
}

.work-section > .heading {
	font-size: 40px;
}
.leadership-section {
	padding-top: 5%;
}
@media (-webkit-device-pixel-ratio: 1.5) {
	.our-vision {
		padding: 3% 15% !important;
	}

	.our-mission {
		padding: 3% 15% !important;
	}

	.work-content {
		line-height: 30px !important;
	}

	.landing-content > h2 {
		font-size: 30px;
	}

	.togg {
		width: 50px;
	}

	.we-call {
		font-size: 14px;
		width: 40%;
		padding-top: 00px;
		padding-bottom: 15px !important;
	}

	/* .our-vision>h2 {
    font-size: 30px;
    margin-bottom: 0px !important;
  }

  .our-vision>p {
    font-size: 14px;
    line-height: 30px;
    margin-top: 0px;
  }

  .our-mission>h2 {
    font-size: 30px;
    margin-bottom: 0px !important;
  }

  .our-mission>p {
    font-size: 14px;
    line-height: 30px;
    margin-top: 0px;
  } */

	/* .about-section-two > .row > .col:nth-child(2) >div:nth-child(2)
  {
    margin-top: 50px !important;
  
  } */
	.conference-img-container {
		width: 50rem !important;
	}

	.work-content {
		font-size: 16px !important;
		line-height: 30px;
		margin-top: 0px !important;
	}

	.heading {
		font-size: 40px !important;
	}

	.subheading {
		font-size: 15px !important;
	}

	.leadership-gallery {
		width: 70rem;
		height: 150vh;
	}

	.leadership-content > p {
		font-size: 16px;
		width: 30rem;
		line-height: 20px;
	}

	.leadership-section {
		padding: 7% 6%;
	}

	.over-width-scroll {
		width: 70%;
		height: 200px;
		margin-right: 2% !important;
	}

	.menu-list > li > a {
		font-size: 18px;
		margin-bottom: 5px;
		padding-bottom: 5px;
		height: 10px;
		margin-top: 10px;
	}

	.menu-list > li {
		margin-top: 25px;
	}
}

@media (-webkit-device-pixel-ratio: 2) {
	.Navbar_links {
		/* width: 48% !important; */
	}
	.over-width-scroll {
		display: none;
	}

	.hidden-content {
		margin-top: 100px !important;
	}

	.landing-content > h2 {
		font-size: 40px;
	}

	.togg {
		width: 50px;
	}

	.we-call {
		font-size: 14px;
		width: 40%;
		padding-top: 00px;
		padding-bottom: 15px !important;
	}

	.our-vision > h2 {
		margin-bottom: 0px !important;
	}

	.our-vision > p {
		line-height: 30px;
		margin-top: 0px;
	}

	.our-mission > h2 {
		margin-bottom: 0px !important;
	}

	.our-mission > p {
		line-height: 30px;
		margin-top: 0px;
	}

	.conference-img-container {
		width: 60rem !important;
	}

	.work-content {
		font-size: 16px !important;
		line-height: 30px;
		margin-top: 0px !important;
	}

	.work-section {
		height: 100%;
	}

	.heading {
		font-size: 40px !important;
	}

	.subheading {
		font-size: 18px !important;
	}

	.leadership-gallery {
		width: 80rem;
	}

	.leadership-content > p {
		font-size: 16px;
		width: 40rem;
		line-height: 30px;
	}

	.leadership-section {
		padding: 2% 6%;
	}

	.leadership-gallery {
	}

	.over-width-scroll {
		width: 100%;
		height: 400px;
	}

	.menu-list > li > a {
		font-size: 18px;
		margin-bottom: 5px;
		padding-bottom: 5px;
		height: 10px;
		margin-top: 10px;
	}

	.menu-list > li {
		margin-top: 25px;
	}

	.hidden-two {
		margin-top: 10px !important;
	}
}

.header-icon {
	position: absolute;
	right: 0;
	top: 0;
	margin-right: 115px;
	margin-top: 20px;
}

.header-icon:hover {
	background-color: #000;
}

@media screen and (max-width: 1024px) {
	.header-icon {
		margin: 30px;
	}
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 900px) {
}

@media screen and (max-width: 600px) {
	.hidden-content {
		margin-top: 150px !important;
	}
}

.about-section-three {
	background-color: #f6f5ee;
	opacity: 1;
}

.about-section-three > .row > .col > h1 {
	width: 80%;
	font-size: 50px;
	text-align: left;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	letter-spacing: 0.4px;
	color: black;
	/* text-transform: capitalize; */
	opacity: 1;
}

.about-section-three > .row > .col > p {
	width: 70%;

	font-size: 18px;
	text-align: left;
	font-family: "Poppins", sans-serif;
	letter-spacing: 0px;
	color: #000;
	opacity: 0.5;
	line-height: 30px;
}

.about-section-three > .row > .col > ul > li {
	width: 70%;

	font-size: 18px;
	text-align: left;
	font-family: "Poppins", sans-serif;
	letter-spacing: 0px;
	color: black;
	opacity: 1;
	line-height: 30px;
}

.about-section-three > .row > .col > div {
	text-align: left;
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	letter-spacing: 3.6px;
	color: #0751bf;
	text-transform: uppercase;
	opacity: 1;
}

.Learn-more {
	font-size: 18px;
	margin-top: 2%;
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	letter-spacing: 1.62px;
	color: #2c2525;
	text-transform: uppercase;
	width: 221px;
	height: 69px;
	background: #ffffff 0% 0% no-repeat padding-box;
	border: 1px solid #f4f4f4;
	border-radius: 35px;
	opacity: 1;
}

.play:hover {
	content: url("../../Assets/images/About/play-btn-black.svg");
}

.Learn-more:hover {
	background: #2c2525 0% 0% no-repeat padding-box;
	border: 1px solid #f4f4f4;
	border-radius: 35px;
	color: #fff;
}

.about-section-three > .row > div:nth-child(1) {
	margin-left: 8%;
	margin-top: 7%;
}

.zoom-container {
	overflow: hidden;
	width: 40rem;
	height: 25rem;
}
.core {
	display: flex;
}
.zoom-container img {
	transition: all 0.5s;
	object-fit: cover;
}

.zoom-container:hover img {
	transform: scale(1.1);
}

@media screen and (max-width: 900px) {
	.core {
		display: block;
	}
	.zoom-container {
		width: 20em;
	}
}
@media screen and (max-width: 600px) {
	.zoom-container {
		width: 18em;
		padding: 20px;
	}
	.leadership-gallery {
		width: 100% !important;
	}
}
@media screen and (width: 1366px) {
	.about-section-two > .row > .col {
		height: 80vh;
		padding-bottom: 20px;
	}
	.hidden-content {
		width: 100%;
		margin-top: 50px !important;
	}

	.over-width-scroll {
		display: none;
	}
}

.Expansion_section {
	height: 100%;
	background: #4d4da0 0% 0% no-repeat padding-box;
	overflow-y: hidden;
	display: flex;
}
.para_one {
	background: #4d4da0 0% 0% no-repeat padding-box;
	width: 25%;
	position: relative;
}
.line {
	border-left: 2px solid #8888bf;
	margin: 5% 0%;
}
.para_one:hover {
	background: #40408b 0% 0% no-repeat padding-box;
}
.para_one > h1 {
	transform: translateY(20%);
	transition: all 0.2s;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	text-align: left;
	-webkit-text-stroke: 1px #fff;
	font-size: 74px;
	letter-spacing: 0.78px;
	color: #4d4da0;
	text-transform: capitalize;
	opacity: 1;
	padding: 20px;
}
.para_one:hover > h1 {
	transform: translateY(0px);
	color: #40408b;
}
.para_one > p {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	transform: translateY(10%);
	height: 100%;
	transition: all 0.2s;
	color: #fff;
	padding: 0px 20px;
	font-size: 14px;
}
.para_one:hover > p {
	transform: translateY(0%);
	height: 100%;
}
.para_one > p > span {
	visibility: hidden;
}
.para_one:hover > p > span {
	visibility: visible;
}

.para_two {
	background: #4d4da0 0% 0% no-repeat padding-box;
	width: 25%;
}
.para_two:hover {
	background: #40408b 0% 0% no-repeat padding-box;
}
.para_two > h1 {
	transform: translateY(50%);
	transition: all 0.2s;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	text-align: left;
	-webkit-text-stroke: 1px #fff;
	font-size: 74px;
	letter-spacing: 0.78px;
	color: #4d4da0;
	text-transform: capitalize;
	opacity: 1;
	padding: 20px;
}
.para_two:hover > h1 {
	transform: translateY(0px);
	color: #40408b;
}
.para_two > p {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 14px;
	transform: translateY(10%);
	height: 100%;
	transition: all 0.2s;
	color: #fff;
	padding: 0px 20px;
}
.para_two:hover > p {
	transform: translateY(0px);
	height: 100%;
}
.para_two > p > span {
	visibility: hidden;
	transition: all 0s;
}
.para_two:hover > p > span {
	visibility: visible;
}

.para_three {
	background: #4d4da0 0% 0% no-repeat padding-box;
	width: 25%;
}
.para_three:hover {
	background: #40408b 0% 0% no-repeat padding-box;
}
.para_three > h1 {
	transform: translateY(50%);
	transition: all 0.2s;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	text-align: left;
	-webkit-text-stroke: 1px #fff;
	font-size: 74px;
	letter-spacing: 0.78px;
	color: #4d4da0;
	text-transform: capitalize;
	opacity: 1;
	padding: 20px;
}
.para_three:hover > h1 {
	transform: translateY(0px);
	color: #40408b;
}
.para_three > p {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 14px;
	transform: translateY(10%);
	height: 100%;
	transition: all 0.2s;
	color: #fff;
	padding: 0px 20px;
}
.para_three:hover > p {
	transform: translateY(0px);
	height: 100%;
}
.para_three > p > span {
	visibility: hidden;
	transition: all 0s;
}
.para_three:hover > p > span {
	visibility: visible;
}

.para_four {
	background: #4d4da0 0% 0% no-repeat padding-box;
	width: 25%;
}
.para_four:hover {
	background: #40408b 0% 0% no-repeat padding-box;
}
.para_four > h1 {
	transform: translateY(50%);
	transition: all 0.2s;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	text-align: left;
	-webkit-text-stroke: 1px #fff;
	font-size: 74px;
	letter-spacing: 0.78px;
	color: #4d4da0;
	text-transform: capitalize;
	opacity: 1;
	padding: 20px;
}
.para_four:hover > h1 {
	transform: translateY(0px);
	color: #40408b;
}
.para_four > p {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 14px;
	transform: translateY(10%);
	height: 100%;
	transition: all 0.2s;
	color: #fff;
	padding: 0px 20px;
}
.para_four:hover > p {
	transform: translateY(0px);
	height: 100%;
}
.para_four > p > span {
	visibility: hidden;
	transition: all 0s;
}
.para_four:hover > p > span {
	visibility: visible;
}
@media screen and (max-width: 900px) {
	.Expansion_section {
		display: block;
		text-align: center;
	}
	.para_one {
		width: 100%;
		text-align: center;
	}
	.para_three {
		width: 100%;
		text-align: center;
	}
	.para_two {
		width: 100%;
		text-align: center;
	}
	.para_four {
		width: 100%;
		text-align: center;
	}
	.para_one > p {
		transform: translateY(0px);
		padding-bottom: 20px;
	}
	.para_one > h1 {
		transform: translateY(0px);
		text-align: center;
	}
	.para_one > p > span {
		visibility: visible;
	}
	.para_two > p > span {
		visibility: visible;
	}
	.para_two > p {
		transform: translateY(0px);
		padding-bottom: 20px;
	}
	.para_two > h1 {
		transform: translateY(0px);
		text-align: center;
	}

	.para_three > p > span {
		visibility: visible;
	}
	.para_three > p {
		transform: translateY(0px);
		padding-bottom: 20px;
	}
	.para_three > h1 {
		transform: translateY(0px);
		text-align: center;
	}

	.para_four > p > span {
		visibility: visible;
	}
	.para_four > p {
		transform: translateY(0px);
		padding-bottom: 20px;
	}
	.para_four > h1 {
		transform: translateY(0px);
		text-align: center;
	}
}

.foot_of_page {
	background-color: #f8f8f8;
	font-family: "Poppins", sans-serif;
}
.foot_row {
	display: flex;
	padding: 5% 7%;
	justify-content: space-between;
}
.bor {
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	margin: 0 7%;
}
.copyright {
	text-align: center;
	padding: 20px;
	justify-content: center;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.55);
}
.foot_col_two {
	display: flex;
}
.foot_col_two > ul:nth-child(2) {
	margin-left: 30px;
}
.foot_col_two > ul > li {
	list-style: none;
	padding-top: 20px;
	font-size: 12px;
}
.foot_col_two {
	margin-top: 3%;
}
.foot_col_two > ul > li > a {
	color: #000;
	font-weight: 300;
	font-family: "Poppins", sans-serif;
}
.foot_col_two > ul > li > a:hover {
	color: #0751bf;
}
.foot_mail > p {
	font-size: 12px;
}
.foot_social_links > p {
	font-size: 12px;
}
.foot_address > p {
	font-size: 12px;
	line-height: 20px;
}
.foot_col_three {
	margin-top: 5%;
}

.foot_social_links > a > img {
	width: 30px;
	height: 30px;
}
.foot_logo > img {
	width: 50px;
}
.foot_col_one > a {
	font-size: 12px;
	color: #0751bf;
}
@media screen and (max-width: 720px) {
	.foot_col_two {
		display: block;
	}
	.foot_row {
		display: block;
	}
	.foot_of_page {
		text-align: center;
	}
	.foot_col_two > ul:nth-child(2) {
		margin-left: 0px;
	}
}

.Experiences_section {
	display: flex;
	padding: 5% 7%;
	background-color: #f6f5ee;
}
.Experiences_col_two > div > img {
	width: 100%;
}
.Experiences_col_two > div {
	overflow: hidden;
}
.Experiences_col_two > div > img:hover {
	transform: scale(1.1);
	overflow: hidden;
	transition: all 0.5s;
}
.Experiences_col_two {
	width: 50%;
}
.Experiences_col_one {
	width: 50%;
	margin-top: auto;
	margin-bottom: auto;
	padding-right: 4%;
}
.Experiences_col_one > h1 {
	font-size: 40px;
	text-align: left;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	letter-spacing: 0.4px;
	color: #050505;
	text-transform: capitalize;
	opacity: 1;
}
.Experiences_col_one > p {
	font-size: 14px;
	width: 70%;
	line-height: 25px;
	text-align: left;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	letter-spacing: 0px;
	color: #6a6a6a;
	opacity: 1;
	height: 100%;
}

@media screen and (max-width: 900px) {
	.Experiences_section {
		display: block;
		justify-content: center;
	}
	.Experiences_col_one {
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
	.Experiences_col_one > p {
		width: 90%;
		text-align: center;
		margin-right: auto;
		margin-left: auto;
	}
	.Experiences_col_one > h1 {
		font-size: 30px;
		text-align: center;
		margin-right: auto;
		margin-left: auto;
	}
	.Experiences_col_two {
		margin-right: auto;
		margin-left: auto;
		width: 80%;
	}
}
.togg {
	opacity: 50%;
	cursor: pointer;
}
.togg:hover {
	opacity: 100%;
}

.linked_in {
	content: url("../../Assets/images/linked-in\ normal.svg");
}
.linked_in:hover {
	content: url("../../Assets/icons/In.svg");
}

.Cut_shot {
	content: url("../../Assets/images/cut-shot.svg");
}
.Cut_shot:hover {
	content: url("../../Assets/icons/cut_shot_original.svg");
}

@media screen and (max-width: 1536px) {
	.navbar {
		height: 75px !important;
	}
	.nav-link {
		font-size: 10px !important;
	}
	.connect {
		width: 100px !important;
		height: 30px !important;
		font-size: 10px !important;
		letter-spacing: 1px !important;
	}
	.navbar-brand > img {
		width: 60px !important;
	}

	.about-section-two > .row > .col {
		height: 80vh;
		padding-bottom: 20px;
	}
	.hidden-content {
		width: 100%;
		margin-top: 50px !important;
	}

	.over-width-scroll {
		display: none;
	}

	/* navbar */
	.menu-list > li > a {
		font-size: 18px;
		margin-bottom: 5px;
		padding-bottom: 5px;
		height: 10px;
		margin-top: 10px;
	}

	.menu-list > li {
		margin-top: 25px;
	}
}
@media screen and (width: 1366px) {
	.nav-link {
	}
	.landing-content > h2 {
		font-size: 30px !important;
	}
	.we-call {
		font-size: 16px;
	}
}

/* Navbar */

.Navbar_new {
	z-index: 1000;
	position: absolute;
	width: 100%;
	padding: 0% 7%;
	border-bottom: 1px solid rgba(230, 234, 238, 0.1);
	background: rgba(0, 0, 0, 0.5);
}
.Navbar_brand > img {
	width: 60px;
	height: 55px;
	display: flex;
	flex-direction: column;
	transition: all 1s;
}
.Navbar_brand > img:nth-child(1) {
	transform: translateY(5px);
}
.Navbar_brand > img:nth-child(1) + img:nth-child(2) {
	height: 100%;
	opacity: 0;
}
.Navbar_brand > img:nth-child(1):hover {
	transform: translateY(0px);
}
.Navbar_brand > img:nth-child(1):hover + img:nth-child(2) {
	height: 100%;
	display: block;
	opacity: 1;
	transform: translateY(0px);
}
.Navbar_links {
	max-width: 100%;
}
.nav_link {
	display: flex;
	/* align-items: center; */
	font-size: 12px;
	padding: 4% 0%;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	letter-spacing: 0.74px;
	color: #fff;
	opacity: 1;
	font-weight: 100;
	text-transform: uppercase;
	opacity: 0.8;
	cursor: pointer;
	white-space: nowrap;
}
.nav_link > a {
	color: #fff;
}
.active {
	border-bottom: 2px solid #0751bf;
	opacity: 1;
}
.Navbar_button > a > button {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 12px;
	padding: 10px 25px;
	border: 1px solid #f4f4f4;
	border-radius: 35px;
	opacity: 1;
	background: transparent;
	color: #fff;
	cursor: pointer;
}
.Navbar_toggler {
	width: 30px;
	display: none;
	cursor: pointer;
}
.nav_link:hover {
	opacity: 1;
}
.Navbar_button > a > button:hover {
	background-color: #fff;
	color: #000;
}
@media screen and (max-width: 1200px) {
	.nav_link {
		font-size: 10px;
	}
}
@media screen and (max-width: 900px) {
	.Navbar_links {
		display: none !important;
	}
	.Navbar_button > a > button {
		display: none;
	}
	.Navbar_toggler {
		display: block;
	}
	.sticky-section > p {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		width: 90%;
	}
	.vision-img,
	.mission-img {
		margin-left: auto;
		margin-right: auto;
	}
	.our-vision > h2,
	.our-mission > h2 {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
	.our-vision > p,
	.our-mission > p {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}
