@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.poppins-thin {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: normal;
}


:root {
  --clr-bg-header: #3D8361;
  --clr-btn: #3D8361;
  --clr-dropdown: #1C6758;
  --clr-nav-hover: #1E6F5C;
  --clr-dropdown-hov: #289672;
  --clr-dropdown-link-hov: #29BB89;
  --clr-light: #FAFAFA;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-style: normal;
}
p,h1,h2,h3,h4,h5,h6{
	 font-family: "Poppins", serif;
}

/* body { */
  /* font-family: 'Poppins', sans-serif; */
  /* overflow: hidden; */
/* } */

/* body{ */
			/* overflow-x:scroll; */
	/* } */

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

header {
  position: sticky;
  top: 0px;
  padding:10px;
  background-color: #050b15;
  width: 100%;
  z-index: 1000;
}

/* section { */
  /* position: relative; */
  /* height: calc(100vh - 3rem); */
  /* width: 100%; */
  /* background: url("https://i.postimg.cc/TPn6kNJ2/bg.jpg") no-repeat top center / cover; */
  /* overflow: hidden; */
/* } */

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(30, 130, 95, 0.5);
}

.nav {
  /* max-width: 65rem; */
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.logo-container {
  flex: 0.5;
  display: flex;
  align-items: center;
}

.nav-btn {
  flex: 3;
  display: flex;
}

.nav-links {
  flex: 1;
}

.log-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.logo {
  color: var(--clr-light);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 3rem;
}

.logo span {
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: .5rem 1.3rem;
  font-size: .8rem;
  border: 2px solid var(--clr-light);
  border-radius: 2rem;
  line-height: 1;
  margin: 0 .2rem;
  transition: .3s;
  text-transform: uppercase;
}

.btn.solid,
.btn.transparent:hover {
  background-color: var(--clr-light);
  color: var(--clr-btn);
}

.btn.transparent,
.btn.solid:hover {
  background-color: transparent;
  color: var(--clr-light);
}

.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  position: relative;
  padding:0;
}

.nav-link > a {
  line-height: 3rem;
  color: var(--clr-light);
  padding: 0 0.8rem;
  letter-spacing: 1px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}

.nav-link > a > i {
  margin-left: .2rem;
}

.nav-link:hover > a {
  transform: scale(1.1);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 15rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .5s;
}

.dropdown ul {
  position: relative;
}

.dropdown-link > a {
  display: flex;
  background-color: var(--clr-light);
  color: var(--clr-dropdown);
  padding: .5rem 1rem;
  font-size: .9rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}

.dropdown-link:hover > a {
  background-color: var(--clr-dropdown);
  color: var(--clr-light);
}

.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 1px solid var(--clr-light);
}

.dropdown-link i {
  transform: rotate(-90deg);
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 40px;
  background-color: var(--clr-light);
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: var(--clr-dropdown);
}

.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: .8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover>.dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: var(--clr-light);
  position: relative;
  z-index: 1001;
  transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: var(--clr-light);
  border-radius: 3px;
  transition: .5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 920px) {
  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 4.5rem;
    right: 0;
    width: 55%;
    background-color: #000;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: .65s;
  }

  #check:checked ~ .nav-btn {
    transform: translateX(0);
	background:#000;
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign {
    animation: animation .5s ease forwards var(--i);
  }

  .nav-links {
    flex: initial;
    width: 140%;
	
  }

  .nav-links > ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link > a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }

  .nav-link:hover > a {
    transform: scale(1);
    background-color: var(--clr-nav-hover);
  }

  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: var(--clr-dropdown-hov);
    display: none;
  }

  .nav-link:hover > .dropdown,
  .dropdown-link:hover>.dropdown {
    display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover>a>i {
    transform: rotate(360deg);
  }

  .dropdown-link > a {
    background-color: transparent;
    color: var(--clr-light);
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

  .arrow {
    z-index: 1;
    background-color: var(--clr-btn);
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: .5s;
  }

  .nav-link:hover .arrow {
    background-color: var(--clr-nav-hover);
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover > a {
    background-color: var(--clr-dropdown-link-hov);
  }

  .dropdown-link:first-child:hover ~ .arrow {
    background-color: var(--clr-nav-hover);
  }

  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: .7s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: .7s;
  }

  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }
}

/* .poppins-extralight { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 200; */
  /* font-style: normal; */
/* } */

/* .poppins-light { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 300; */
  /* font-style: normal; */
/* } */

/* .poppins-regular { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 400; */
  /* font-style: normal; */
/* } */

/* .poppins-medium { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 500; */
  /* font-style: normal; */
/* } */

/* .poppins-semibold { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 600; */
  /* font-style: normal; */
/* } */

/* .poppins-bold { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 700; */
  /* font-style: normal; */
/* } */

/* .poppins-extrabold { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 800; */
  /* font-style: normal; */
/* } */

/* .poppins-black { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 900; */
  /* font-style: normal; */
/* } */

/* .poppins-thin-italic { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 100; */
  /* font-style: italic; */
/* } */

/* .poppins-extralight-italic { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 200; */
  /* font-style: italic; */
/* } */

/* .poppins-light-italic { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 300; */
  /* font-style: italic; */
/* } */

/* .poppins-regular-italic { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 400; */
  /* font-style: italic; */
/* } */

/* .poppins-medium-italic { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 500; */
  /* font-style: italic; */
/* } */

/* .poppins-semibold-italic { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 600; */
  /* font-style: italic; */
/* } */

/* .poppins-bold-italic { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 700; */
  /* font-style: italic; */
/* } */

/* .poppins-extrabold-italic { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 800; */
  /* font-style: italic; */
/* } */

/* .poppins-black-italic { */
  /* font-family: "Poppins", serif; */
  /* font-weight: 900; */
  /* font-style: italic; */
/* } */

.v-slide{
	min-height:900px;
	border:1px solid red;
	
}







.follow-us{
	background:#192b48;
	min-height:800px;
	padding:20px;
	display: flex;
  align-items: center;
  justify-content: center;
}
.flow-us-txt{
	
	color:#fff;
	font-size:3rem;
}


.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  /* border-radius: 25px; */
}
.cardd{
  border-radius:inherit;
  background-color:inherit;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #4070F4;
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #4070F4;
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4070F4;
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #4070F4;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: #265DF2;
}

.swiper-navBtn{
  color: #6E93f7;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #4070F4;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 38px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: #6E93f7;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #4070F4;
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

footer{
background:#121c2f;
min-height:400px;	
	
}
.ftr-phn-icon{
	color:#fff;
	/* font-family:FontAwesome; */
	
}

.fttr-left{
	padding-top:20%;
}

.fttr-left1{
	padding-top:10%;
}
.fttr-left ul li a{
	color:#fff !important;
	
}
.fttr-left ul li{
	line-height:30px;
}
.fttr{
	 color: #fff;
	
    list-style: none;
    padding-left: 0;
    font-size: 22px;
}
.fttr li{
    display:inline-block;
    /* margin: 0px; */
	padding:5px;
	
}




/* card section css */

.expand-images-block{
	background-image: linear-gradient(to bottom, #131f33, #162946, #1a3359, #1d3d6d, #224782);
	min-height:900px;
	
}
.snd-blk-hd-txt1 {
    color: #e7ebf2;
    font-size: 3.5rem;
    padding: 60px 0px 0px 0px;
    margin: -32px;
}

.snd-blk-hd-txt {
    color: #1add70;
    font-weight: 700;
    padding: 10px;
    margin: 0;
    font-size: 4rem;
}



.second-block{
	/* background:#131f33; */
	
	display: flex;
      justify-content: center;
      align-items: center;
      /* min-height: 600px; */
      
     font-family: "Poppins", serif;
	 margin-top:5%;
	
}



    #img-container {
      width: 80%;
      display: flex;
      gap: 15px;
      margin: auto;
	 /* height:100px; */
    }

    .img-expand {
      position: relative;
      width: 20%; /* Initial width for all images */
      height: 600px;
      overflow: hidden;
      transition: width 0.3s ease;
	  filter: grayscale(100%);
    }
	
	.img-expand:hover{
		filter: none;
  -webkit-filter: grayscale(0%);
	}

    .img-expand img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .img-text {
      position: absolute;
      top: 5%;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 16px;
      font-weight: 700;
      text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
      /* <!-- opacity: 0; --> */
      transition: opacity 0.3s ease;
    }
	.img-bbtn{
	  position: absolute;
      bottom: 10%;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 12px;
      /* <!-- font-weight: bold; --> */
      /* <!-- text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7); --> */
      /* <!-- opacity: 0; --> */
      transition: opacity 0.3s ease;
	  border-radius:30px;
	  background:#0097ed;
	
	
	}











.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: none;
}


.third-sec{
	position: relative;
	/* height: 500px; */
	/* box-shadow: 5px 5px 20px; */
	overflow: hidden;

	cursor: pointer;
}

.intro {
	position: absolute;
	height: 80px;
	width: 100%;
	bottom: inherit;
	overflow: hidden;


	padding: 10px;
	color: #fff;
	background-color: rgba(27, 27, 27, .5);

	transition: .4s ease-in-out;
}

.third-sec:hover .intro {
	height: 280px;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
}

.third-sec:hover .text-p {
	opacity: 1;
	visibility: visible;
}

.third-sec:hover .slidee {
	transform: scale(1.05);
}

.slidee {
	height: 500px;
	width: 350px;
	object-fit: cover;
	border-radius: 4px;
	transition: transform .4s ease-in-out;
}

.text-h1 {
	margin: 10px;
	text-transform: uppercase;
	font-size: 28px;
}

.text-p {
	font-size: 16px;
	padding: 10px;
	visibility: hidden;
	opacity: 0;
}



@media screen and (max-width: 768px) {
.nav-link > a {
  line-height: 3rem;
  color: var(--clr-light);
  padding: 0 2.4rem;
  letter-spacing: 1px;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}
}


/* *****************************next page parno ********************************/

.b-ground{
	background:#15253e;
	
	min-height: 1200px;
	padding:20px;
	
}
.b-ground  p{
	color:#fff;
	font-family: "Poppins", serif;
	
}
.main-Content{
	padding-top:8%;
}
.parno{
	border-radius:30px;
}
.brand-info{
	padding:0;
}
.brand-info li{
	color:#fff;
	font-family: "Poppins", serif;
	line-height:30px;
}
.brand-list{
	width: 100%;
    /* display: flex; */
    /* justify-content: space-between; */
	font-family: "Poppins", serif;
}
.mimi-head-txt{
	color:#fff;
	font-size:4rem;
	font-weight:700;
	margin:0;
	padding:0;
}
.mimi-head-txt1 {
    color: #0abada;
    font-size: 3rem;
    margin: -15px 50px;
    padding: 0px;
}


.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: -12px 15px 8px 15px;
  margin-left: -10px;
}
.post-slide .post-img img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}
.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}
.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(
    -45deg,
    rgba(6, 190, 244, 0.75) 0%,
    rgba(45, 112, 253, 0.6) 100%
  );
  transition: all 0.5s linear;
}
.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}
.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}
.post-slide .post-content {
  background: #fff;
  padding: 2px 20px 40px;
  border-radius: 15px;
}
.post-slide .post-title a {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}
.post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}
.post-slide .post-date {
  color: #a9a9a9;
  font-size: 14px;
}
.post-slide .post-date i {
  font-size: 20px;
  margin-right: 8px;
  color: #cfdace;
}
 .read-more {
  padding: 7px 20px;
  float: right;
  margin-right:17%;
  font-size: 12px;
  background: #2196f3;
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px #1376c5;
  border-radius: 25px;
  text-transform: uppercase;
}
.post-slide .read-more:hover {
  background: #3498db;
  text-decoration: none;
  color: #fff;
}
.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}
.owl-controls .owl-buttons .owl-prev {
  /* background: #fff; */
  position: absolute;
  top: 35%;
  left: -25px;
  /* padding: 0 18px 0 15px; */
  /* border-radius: 50px; */
  /* box-shadow: 3px 14px 25px -10px #92b4d0; */
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next {
  /* background: #fff; */
  position: absolute;
  top: 35%;
  right: 0px;
  /* padding: 0 15px 0 18px; */
  /* border-radius: 50px; */
  /* box-shadow: -3px 14px 25px -10px #92b4d0; */
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #fff;
  font-size: 30px;
}
.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}
.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 97%;
}
.owl-carousel {
    display: none;
    position: relative;
    width: 98%;
    
}



@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}


@media only screen and (max-width: 680px){
	.read-more {
  padding: 7px 20px;
  float: none;
  margin-right:0;
}
.image-slider-section{
	/* background:#15253e; */
	
	/* min-height: 1200px; */
	/* padding:20px; */
	text-align:center;
}
.owl-controls .owl-buttons .owl-prev {
  /* background: #fff; */
  position: absolute;
  top: 35%;
  left: -15px;
  /* padding: 0 18px 0 15px; */
  /* border-radius: 50px; */
  /* box-shadow: 3px 14px 25px -10px #92b4d0; */
  transition: background 0.5s ease 0s;
}
}




/* talent-management ****************************/
.talent-management{
	background:url('../image/TALENT-MANAGEMENT.jpg');
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
	min-height:1100px;
	padding:2px;
}
.up-txt {
    color: #fff;
    font-size: 60px;
    font-family: "Poppins", serif;
    padding: -11px;
    margin: 0px -4px 6px -266px;
    padding-top: 45px;
}
.down-txt{
	font-size:60px;
	font-family: "Poppins", serif;
	color:#14ce56;
	margin:-20px;
	
}
.wrapper{
	padding-top:15%;
}
.wrapper:hover{
	/* background:#00a3df; */
	color:#00a3df;
}
.talant-btn{
	color:#fff;
	background:transparent;
	border:1px solid #fff;
	font-size:20px;
	padding:10px 40px;
	/* font-family:FontAwesome; */
}

.talant-btn:hover{
	background:#00a3df;
}

.wrapper h2{
	padding:30px;
	font-family: "Poppins";
  font-weight: 700;
  font-style: normal;
  color:#fff;
	
}



  
  /************************ talent-management-sports ********************/
  
  .talent-management-sports{
	  background:#000;
	  min-height:1500px;
	  padding:10px;
	  
	  
	  
  }
  .imgg-gallery{
	  padding-top:10%;
	   /* position:relative; */
  }
  
  
  .imgg-gallery img{
	  /* filter: grayscale(100%); */
	  /* transition: transform 1.1s; */
	 
  }
  .imgg-gallery img:hover{
	  /* position:absolute; */
	  filter: grayscale(0%);
	  
  }
  
  /* position: absolute !important; */
    /* top: 119%; */
    /* color: green; */
    /* z-index: 9999;
	
	
	
	
	
	
	
	/* ***************mat 3d section  **********************/
	
	
	.mat-3d{
		background:url(../image/Sponsorship-Sales-and-Branding_3D.jpg);
		padding:20px;
		min-height:1000px;
		background-position: center;
		background-size:cover;
		background-repeat:no-repeat;
		text-align:center;
		
	}
	.mat-3d-h1-uptxt{
		text-align:center;
		font-size:50px;
		font-family: "Poppins";
		font-weight: 600;
		/* font-style: normal; */
		text-transform:uppercase;
		color:#fff;
		margin:0;
		line-height:25px;
		
	}
	
	.mat-3d-h1-downtxt{
		text-align:center;
		font-size:50px;
		font-family: "Poppins";
		font-weight: 300;
		/* font-style: normal; */
		text-transform:uppercase;
		color:#03c4f7;
		margin:0;
		padding:0;
	}
	.blank-div{
		min-height:700px;
	}
	.mat-3d p{
		color:#fff;
	}
	
	
	/************ TALENT-MANAGEMENT **************/
	
	.film-marketing{
		background:url(../image/TALENT-MANAGEMENT.jpg);
		background-position:center;
		background-size:cover;
		background-repeat:no-repeat;
		min-height:1200px;
		padding:20px;
		
	}
	
	.film-marketing-h1-uptxt{
		text-align:center;
		font-size:50px;
		font-family: "Poppins";
		font-weight: 600;
		/* font-style: normal; */
		text-transform:uppercase;
		color:#fff;
		    margin: 0px 0px 0px -215px;
		line-height:25px;
		
	}
	.film-marketing-h1-downtxt{
		text-align:center;
		font-size:50px;
		font-family: "Poppins";
		font-weight: 300;
		/* font-style: normal; */
		text-transform:uppercase;
		color:#03c4f7;
		margin:0;
		padding:0;
	}
	
	
	/****************** stadium-branding **********************/
	
	.stadium-branding{
		background-image:url(../image/stadium-branding.jpg);
		background-position:center;
		background-size:cover;
		min-height:600px;
		padding:10px;
	}
	.stadium-branding-second{
		background-image:url(../image/Stadium-Branding-send-bg.jpg);
		background-position:center;
		background-size:cover;
		min-height:800px;
		padding:10px;
	}
	
	 .owl-nav .owl-prev {
    color: #fff !important;
    top: 60% !important;
    margin-top: -3.5%;
    left: 18%;
    position: absolute;
    z-index: 9999;
    font-size: 25px;
}
	.owl-nav .owl-next{
		color: #fff !important;
    top: 60% !important;
    margin-top: -3.5%;
    right: 18%;
    position: absolute;
    z-index: 9999;
    font-size: 25px;
	}
	
	.t-logo{
		margin-top:45%;
	}
	.t-logo-txt{
		font-size:52px;
		 
	}
	
	.stadium-branding-third{
		min-height:400px;
		background:#050b14;
		
	}
	.stadium-branding-third p{
		color:#fff;
		padding-top:5%;
	}
	
	.owll{
		margin-left:20px;
	}
	
	
	/********** collaterals section start************/
	
	.collaterals{
		background:#050b15;
		min-height:800px;
		padding:10px;
	}
	
	
	.slider-3d {
    /* max-width: 100%; */
    position: relative;
    perspective: 3000px;
    padding: 0px;
    left: 9.5%;
}

/* #carousel { */
  /* position: relative; */
/* } */

/* #carousel figure { */
  /* display: block; */
  /* animation: rotate 20000ms ease-in-out infinite; */
  /* position: absolute; */
  /* background-color: white; */
  /* padding: 12em; */
  /* text-align: center; */
  /* min-width: 66%; */
/* } */


/* #carousel figure { */
    /* display: block; */
    /* animation: rotate 20000ms ease-in-out infinite; */
    /* position: absolute; */
    /* background-color: white; */
    /* padding: 0em; */
    /* text-align: center; */
    /* min-width: 66%; */
/* } */
/* #carousel figure:nth-child(0) { */
  /* animation-delay: -20s; */
/* } */
/* #carousel figure:nth-child(1) { */
  /* animation-delay: -15s; */
/* } */
/* #carousel figure:nth-child(2) { */
  /* animation-delay: -10s; */
/* } */
/* #carousel figure:nth-child(3) { */
  /* animation-delay: -5s; */
/* } */
/* #carousel figure:nth-child(4) { */
  /* animation-delay: 0s; */
/* } */
/* #carousel figure:nth-child(5) { */
  /* animation-delay: 5s; */
/* } */
/* #carousel figure:nth-child(6) { */
  /* animation-delay: 10s; */
/* } */

/* @keyframes rotate { */
  /* 0%, 20%, 96%, 100% { */
    /* transform: rotateY(45deg) scale(0.6); */
    /* right: 0; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
    /* z-index: -1; */
    /* -webkit-filter: opacity(80%) blur(3px); */
  /* } */
  /* 21%, 45% { */
    /* transform: rotateY(0deg) scale(1); */
    /* right: 40%; */
    /* box-shadow: 0 0 20px black; */
    /* z-index: 100; */
    /* -webkit-filter: opacity(100%) blur(0px); */
  /* } */
  /* 46%, 70% { */
    /* transform: rotateY(-45deg) scale(0.6); */
    /* right: 81%; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
    /* z-index: -1; */
    /* -webkit-filter: opacity(80%) blur(3px); */
  /* } */
  /* 71%, 95% { */
    /* transform: rotateY(-90deg) scale(0.6); */
    /* right: 80%; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0); */
    /* z-index: 0; */
    /* -webkit-filter: opacity(0%) blur(0px); */
  /* } */
/* } */



.section-padding{
	width:1170px;
	margin: 0 auto;
	padding:80px 0;
}

.owl-item .item {
   transform: translate3d(0, 0, 0); /* DO NOT REMEMBER WHERE TU PUT THIS, SEARCH FOR 3D ACCELERATION */
  // transform: scale(0.9);

  // transition: all .25s ease-in-out; 
  margin: 50px 0; /* OVERWRITE PLUGIN MARGIN */
 }

.screenshot_slider .owl-item .item img {
    -webkit-transition: 0.3s;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0.80);
    -ms-transform: scale(0.80);
    transform: scale(0.80);
}

.screenshot_slider .owl-item.center .item img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.screenshot_slider .owl-nav {
    text-align: center;
    // margin: 40px 0;
}

.screenshot_slider .owl-nav button {
	font-size: 24px !important;
	margin: 10px;
	color: #033aff !important;
}







.owl-item.active > div:after {
  content: '';
}
.owl-item.center > div:after {
  content: '';
}
.owl-item.active.center > div:after {
  content: '';
}
.owl-item > div:after {
  font-family: sans-serif;
  font-size: 24px;
  font-weight: bold;
}

.active.center {
  transform: scale(1);
  /* -webkit-filter: grayscale(0);  */
    /* filter: grayscale(0); */
}
.active {
  transform: scale(.8);
  transition: .6s ease;
  /* -webkit-filter: grayscale(100%);  */
    /* filter: grayscale(100%); */
}



/*********************** sports-sponsorship *************************/



.sports-sponsorship{
	  background-image: linear-gradient(
    180deg,
    hsl(260deg 9% 6%) 0%,
    hsl(261deg 18% 9%) 25%,
    hsl(258deg 24% 11%) 38%,
    hsl(258deg 29% 14%) 48%,
    hsl(258deg 33% 16%) 57%,
    hsl(258deg 36% 18%) 65%,
    hsl(259deg 38% 20%) 73%,
    hsl(259deg 41% 23%) 79%,
    hsl(260deg 42% 25%) 86%,
    hsl(261deg 44% 27%) 91%,
    hsl(262deg 46% 30%) 97%,
    hsl(263deg 47% 32%) 100%
  );
  min-height:2500px;
	
	
}

.logo-section{
	
	
}
.top-logo-kkr{
	border-right:1px solid #fff;
	padding-right:40px;
}

.top-logo-joy{
	padding-left:40px;
}

.sports-spon-banner{
	/* min-height:750px; */
	
}
.kkr-and-joy-spon{
	min-height:600px;
}
.nitish{
	margin-top:-14% !important;
}

.sponser-brand img{
	border-right:1px solid #fff;
	padding-right: 40px;
}
.sponser-brand p {
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    padding-top: 8%;
	font-weight:700;
}







.single-img {
  position: relative;
  /* width: 30%; */
  /* float: left; */
  /* margin: 0 1%; */
}

.imag {
  display: block;
  width: 100%;
  height: auto;
  margin:1rem;
}

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 0;
  background-color: rgba(0,0,0,0.8);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.single-img:hover .img-overlay {
  height: 100%;
}

.text {
    position: absolute;
    top: 72%;
    left: 40%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    /* text-align: center; */
    font-size: 18px;
    font-family: poppins;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}
.text span{
  font-weight: 300;
}





/* ignore the code below */


.link-area
{
  position:fixed;
  bottom:20px;
  left:20px;  
  padding:15px;
  border-radius:40px;
  background:tomato;
}
.link-area a
{
  text-decoration:none;
  color:#fff;
  font-size:25px;
}

.sports-sponsorship2{
	background-image:url(../image/Sports-Sponsorship-bg-2.jpg);
		background-position:center;
		background-size:cover;
		min-height:800px;
		/* padding:10px; */
}

.kkr-and-joy-spon h2{
	margin-top:35%;
	
	
}

.sports-sponsorship3{
	background-image:url(../image/Sports-Sponsorship-bg3.jpg);
		background-position:center;
		background-size:cover;
		min-height:800px;
	
}
.top-logo-gujrat-logo{
	width:50%;
	border-right:1px solid #fff;
	padding-right:40px;
}
/* .sports-spon-banner-gujrat{ */
	/* background-image:url(../image/gujrat-titan-background.jpg); */
		/* background-position:center; */
		/* background-size:cover; */
		/* min-height:300px; */
		/* position:relative; */
/* } */
/* .sports-spon-banner-gujrat img{ */
	/* position:absolute; */
/* } */


.carousel-wrap {
  margin: 90px auto;
  padding: 0 5%;
  width: 80%;
  position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}

/* end fix */
.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 52px;
}

.owl-nav .owl-prev {
  left: -30px;
}

.owl-nav .owl-next {
  right: -30px;
}












.mobile img {
    height: 240px;
    width: 230px;
    
    box-shadow: 0px 5px 14px #000;
	
}

.mobile{
	display:none;
	
}
@media only screen and (max-width: 600px) {
  .mobile{
	display:block;
	
}
.expand-images-block{
	display:none;
}
}


            /**************** music****************    */

.music{
	background:url('../image/Music-bg.jpg');
	min-height:1000px;
	background-size:cover;
	background-position:center;
	padding:10px;
}
.gap-d{
	min-height:925px;
	
}
.latest-track{
	min-height:800px;
	background:#101113;
	padding:20px;
}


/**************** contact start ****************/



.contact{
	background:url("../image/contact-bg.jpg");
	min-height:800px;
	background-position:center;
	background-size:cover;
	padding:20px;
}
.lbel{
	color:#fff !important;
}
.cstm{
	background:#1d74f9;
	border:none;
	color:#fff;
}
.cstm:hover{
	background:#0097ed ;
	color:#fff;
}
.contact-right-side{
	background:url(../image/Contact-small-bg.png);
	min-height:130px;
	background-position:center;
	background-size:cover;
	border-radius:20px;
     margin-top:25% !important;
	
}
.contact-right-side1{
	background:url(../image/Contact-small-bg.png);
	min-height:130px;
	background-position:center;
	background-size:cover;
	border-radius:20px;
     margin-top:10% !important;
	
}

.contact-right-side p, .contact-right-side1 p{
	color:#fff;
}



/* talent management spots hover effect */
.image-container {
  position: relative;
  overflow: hidden;
  /* display: inline-block; */
  width: 100%;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease; /* Slow zoom effect */
}

.image-container:hover img {
  transform: scale(1.1);
}

/* Overlay */
.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease; /* Slow fade-in effect */
}

.image-container:hover .overlay-content {
  opacity: 1;
}

/* Overlay Text */
.overlay-content h2 {
  color: #fff;
  font-size: 24px;
  margin: 10px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.image-container:hover .overlay-content h2 {
  opacity: 1;
  transform: translateY(0);
}

/* Overlay Button */
.overlay-content button {
  background-color: #00a3df;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.image-container:hover .overlay-content button {
  opacity: 1;
  transform: translateY(0);
}

.overlay-content button:hover {
  background-color: #00a3df;
}

.spn-fllow-us{
	color:#18ff6a;
	font-weight:700;
	font-size:4rem;
}
    /******************8 about us *********************/
	
.up-txtr{
	
    color: #fff;
    font-size: 60px;
    font-family: "Poppins", serif;
    padding: -11px;
    margin: 0px ;
    padding-top: 45px;

}

.txtr {
    font-size: 60px;
    font-family: "Poppins", serif;
    color: #14ce56;
    /* margin: -20px; */
	font-weight:bold;
}
.about-p, .about-p1{
	font-size:16px;
	color:#fff;
	padding-top:5%;

}
.about-p1{
	padding-top:2%;
}
.about-ttx{
	list-style:inherit;
}
.about-ttx li{
	color:#fff;
	font-size:16px;
	line-height:40px;
	
}
.about{
	
    background: url(../image/TALENT-MANAGEMENT.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 660px;
    padding: 2px;
}










/*********************** rresponsive pages start ************************* */

/***** parambrata***** */

@media only screen and (max-width: 600px) {

.mimi-head-txt {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mimi-head-txt1 {
    color: #0abada;
    font-size: 2rem;
   
    padding-top: 15px;
    text-align: center;
}


/* *****talent-management page ********/
.up-txt {
    color: #fff;
    font-size: 2rem;
    font-family: "Poppins", serif;
    /* padding: -11px; */
    margin: 0px !important;
    padding-top: 20px;
}



.down-txt {
    font-size: 2rem;
    font-family: "Poppins", serif;
    color: #14ce56;
    margin: 0px;
}
.wrapper h2 {
    padding: 10px;
    font-family: "Poppins";
    font-weight: 700;
    font-style: normal;
    color: #fff;
}

.talent-management {
   
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 1270px;
    padding: 10px;
}

.snd-blk-hd-txt1 {
    color: #e7ebf2;
    font-size: 2rem;
    padding: 0px 0px 0px 0px;
    margin: 0;
    text-align: center;
}
.snd-blk-hd-txt{
	font-size: 2rem;
        line-height: 20px;
		padding:0;
}
.mobile{
	min-height:650px !important;
	 display: block;
	 background-image: linear-gradient(to bottom, #131f33, #162946, #1a3359, #1d3d6d, #224782);

	 
	
}
#slider{
margin-top: 10% !important;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
	display:none;
	
}
.flow-us-txt{
	font-size:2rem;
}

.spn-fllow-us{
	color:#18ff6a;
	font-weight:700;
	font-size:2rem;
}

.sldr-t{
	z-index: 9999;
    font-size: 18px;
    top: 5px;
    margin-top: -140%;
}

/*********** sports sponsership ********/

.film-marketing-h1-uptxt {
    text-align: center;
    font-size: 2rem;
    font-family: "Poppins";
    font-weight: 600;
    /* font-style: normal; */
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 25px;
}
.film-marketing-h1-downtxt {
    
    font-size: 2rem; 
}



.top-logo-joy {
    padding-left: 15px;
    width: 115px;
}


.top-logo-kkr {
    border-right: 1px solid #fff;
    padding-right: 15px;
    width: 115px;  
}

.nitish {
    margin-top: 10% !important;
    width: 175px;
}
.sponser-brand img {
    border-right: 0px solid #fff;
    padding-right: 0px;
}

    .imag {
        margin: 0;
        margin-top: 15px;
    }

.kkr-and-joy-spon h2 {
    margin-top: 5%;
}

.top-logo-gujrat-logo {
    width: 35%;
    border-right: 1px solid #fff;
    padding-right: 18px;
}

.mat-3d-h1-downtxt {
    text-align: center;
    font-size: 1.8rem;
    
}

.mat-3d-h1-uptxt {
    text-align: center;
    font-size: 1.8rem;
}
.poster-text{
	text-align:center;
	padding-top:15%;
}
.poster-text1{
	text-align:center;
}

.stadium-branding {
    background-image: url(../image/stadium-branding.jpg);
    background-position: center;
    background-size: cover;
    min-height: 285px;
    padding: 10px;
}
    .film-marketing-h1-uptxt {
        text-align: center;
        font-size: 2rem;
        font-family: "Poppins";
        font-weight: 600;
       
        text-transform: uppercase;
        color: #fff;
        margin: 0;
        line-height: 25px;
        margin-top: -50px;
    }

.owl-nav{
	display:none;
}

.t-logo {
    margin-top:5%;
    margin: auto;
    display: block;
}

.t-logo-txt {
    font-size: 25px;
    text-align: center;
}

.nav-link > a > i {
        font-size: 22px;
        transform: rotate(-90deg);
        transition: .7s;
        margin: 0;
        padding: 0px;
    }


.fttr-left {
    padding-top: 8%;
}


.lerge{
	display:none !important;
}
.small{
	display:block !important;
}

}


@media only screen and (min-width: 601px) and (max-width:1920px){
	
.lerge{
	display:block!important;
}
.small{
	display:none!important;
}

}












