@keyframes zoomInOut {
	0% {
	  transform: scale(1);
	  /* original size */
	}

	50% {
	  transform: scale(1.05);
	  /* zoom in */
	}

	100% {
	  transform: scale(1);
	  /* zoom out */
	}
  }

  .breath-banner {
	height: auto;
	/* Maintain aspect ratio */
	animation: zoomInOut 20s infinite;
	/* Animation lasts 5 seconds and loops infinitely */
	transition: transform 20s ease;
	/* Optional: smooth transition on hover */
  }

  /*  */
  .slide-in-left {
	-webkit-animation: slide-in-left 1s ease-in 150ms both;
	animation: slide-in-left 1s ease-in 150ms both;
  }

  @-webkit-keyframes slide-in-left {
	0% {
	  -webkit-transform: translateX(-10px);
	  transform: translateX(-10px);
	  opacity: 0;
	}

	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	  opacity: 1;
	}
  }



  .slide-in-left-delay-1 {
	-webkit-animation: slide-in-left-delay-1 1s ease-in 300ms both;
	animation: slide-in-left-delay-1 1s ease-in 300ms both;
  }

  @-webkit-keyframes slide-in-left-delay-1 {
	0% {
	  -webkit-transform: translateX(-10px);
	  transform: translateX(-10px);
	  opacity: 0;
	}

	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	  opacity: 1;
	}
  }


  .slide-in-left-delay-2 {
	-webkit-animation: slide-in-left-delay-2 1s ease-in 500ms both;
	animation: slide-in-left-delay-2 1s ease-in 500ms both;
  }

  @-webkit-keyframes slide-in-left-delay-2 {
	0% {
	  -webkit-transform: translateX(-10px);
	  transform: translateX(-10px);
	  opacity: 0;
	}

	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	  opacity: 1;
	}
  }


  .slide-in-left-delay-3 {
	-webkit-animation: slide-in-left-delay-3 1s ease-in 700ms both;
	animation: slide-in-left-delay-3 1s ease-in 700ms both;
  }

  @-webkit-keyframes slide-in-left-delay-3 {
	0% {
	  -webkit-transform: translateX(-10px);
	  transform: translateX(-10px);
	  opacity: 0;
	}

	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	  opacity: 1;
	}
  }

  .slideInLeft {
	animation-duration: 0.5s;
  }

  .slideInRight {
	animation-duration: 0.5s;
  }

  .slideInUp {
	animation-duration: 0.5s;
  }

  .switch-bg-white {
	background-color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 1;
  }

  .about-img1 {
	transition: transform 0.8s ease-in-out;
  }

  .spotlight-block:hover .about-img1 {
	transform: translate3d(-10px, 0, 0);
  }

  .index-img-move {}

  .index-img-move img {

width: 100%;

}

	.index-img-move:hover img {

		transform: scale(1.1) translateZ(0);
		transition: all .6s ease-in-out;

	}
	.index-img-move img {

		-webkit-transition: -webkit-transform 350ms ease;
	transition: -webkit-transform 350ms ease;
	transition: transform 350ms ease;
	transition: transform 350ms ease, -webkit-transform 350ms ease;

}
	.index-img-container{
		overflow: hidden;
	}

	.arti-news-p p{
		color: #8C8C8C!important;
	}

  .sno-bord::before {
	content: none!important;
  }

.social-icons{background: #000; padding: 10px; position: absolute; right: 0; top: 0;z-index: 10;}
.social-icons a{color: #fff; display: block; padding: 8px;}
.block-link2 {
	height: 100% !important;
}


/*Slider Moses */
.wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
      height: 300px;
      z-index: 1;
    }

    .slides {
      display: flex;
      position: relative;
      top: 0;
      left: 0;
      width: 10000px;
    }

    .slides.shifting {
      transition: left 0.8s ease-out;
    }

    .slides .slide {
    width: 209px;
    /* cursor: pointer; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 1s;
    position: relative;
    background: #ffcf47;
    border-radius: 2px;
    margin: 0px 15px;
    text-align: center;
    height: 18.4375rem;
}
    .control {
      position: absolute;
      top: 50%;
      width: 50px;
      height: 50px;
      margin-top: -20px;
      z-index: 2;
    }

    .prev,
    .next {
      background-size: 22px;
      background-position: center;
      background-repeat: no-repeat;
      cursor: pointer;
    }

    .prev {
      background-image: url(images/left-arrow-orange.png);
      left: -55px;
    }

    .next {
      background-image: url(images/right-arrow-orange.png);
      right: -55px;
    }

    .prev:active,
    .next:active {
      transform: scale(0.8);
    }

    .dots {
      text-align: center;
      padding-top: 20px;
    }

    .dots i {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #000;
    margin: 5px;
}

    .dots i.active {
      background: #000;
    }



    /*Styles for the content inside*/
    .focus-block {
      background: transparent;
      height:18.4375rem;
    }

    .focus-block:hover {
      background: linear-gradient(180deg, rgba(238, 126, 41, 1) 60%, rgba(247, 169, 27, 1) 78%);
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      position: relative;
      transition: ease-in all 0.3s;

    }

    .focus-block .img-behind {
      position: inherit;
      z-index: -1;
      width: 100%;
      height: 100%;
    }

    .focus-block .icon {
      position: absolute;
      left: 50%;
      top: 30%;
      transform: translate(-50%, -50%);
      transition: ease-inall 0.3s;
      opacity: 0;
    }

    .focus-block:hover .icon {
      left: 50%;
      top: 35%;
      transform: translate(-50%, -50%);
      opacity: 1;
    }

    .focus-block .caption {
      position: absolute;
      display: block;
      bottom: 15%;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      width: 100%;
      text-align: center;
      text-transform: uppercase;
      transition: ease-inall 0.3s;
      z-index: 5;
    }

    /* Ensure that the gradient effect is applied to areas around the buttons */
    .gradient-effect {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 150px;
      z-index: 1;
      pointer-events: none;
    }

    .gradient-effect.left {
      left: 0;
      top: 0;
      width: 7%;
      background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0, #fff 50%);
    }

    .gradient-effect.right {
      right: 0;
      top: 0;
      width: 7%;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, #fff 50%);
    }

    /* Styling for the slider arrows */
    .control {
      position: absolute;
      top: 50%;
      width: 50px;
      height: 50px;
      margin-top: -20px;
      z-index: 2;
    }

    .prev {
      background-image: url(../images/left-arrow-orange.png);
      left: -30px;
    }

    .next {
      background-image: url(../images/right-arrow-orange.png);
      right: -30px;
    }

    .prev:active,
    .next:active {
      transform: scale(0.8);
    }

    .slid-container {
      padding: 0px 60px;
    }

    .img-behind {
      position: relative;
      display: block;
    }

    .focus-block::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
      transition: opacity 0.3s ease-in-out;
      pointer-events: none;
      z-index: 1;
    }

    .focus-block::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(0deg, rgba(213, 98, 54, 0) 0, #d56236 100%);
      pointer-events: none;
      z-index: 2;
    }

    .focus-block:hover::before,
    .focus-block:hover::after {
      opacity: 0;
      visibility: hidden;
    }

    .connect-txt {
      display: block;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
    }

    .focus-block:hover .connect-txt {
      opacity: 1;
    }


/*End slider */



.carousel-caption {
	bottom: auto;
	top: 0px;
	text-align: left;
	height: 100%;
	padding: 60px 0;
}

.carousel-caption h5 {
	font-size: 80px;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.1;
	margin-top: 0px;
	margin-bottom: 30px;
}

.carousel-caption p {
	margin-bottom: 30px;
	color: #fff;
	font-size: 20px;
}

.home-intro{font-size: 17px;}

.carousel-caption h5 span {
	color: #F7A91B
}

a.home-btn {
	display: inline-block;
	text-decoration: none;
	color: #fff !important;
	position: relative;
	font-size: 14px;
	padding: 10px 35px;
	padding-right: 60px;
	place-items: center;
	transition: all .3s ease-in-out;
	border: 2px solid #fff;
	font-weight: 500;
	background: linear-gradient(100deg, rgba(3, 80, 154, 1) 13%, rgba(38, 163, 219, 1) 98%);
}

a.home-btn:hover {
	background: linear-gradient(100deg, rgba(38, 163, 219, 1) 13%, rgba(3, 80, 154, 1) 98%);
}

a.home-btn::before {
	content: url(../images/arrows.svg);
	font-size: 10px;
	position: absolute;
	right: 35px;
	font-weight: 600;
	top: 14px;
	transition: all .3s ease-in-out;
}

.carousel-indicators {
	bottom: 40px;
	right: 15%;
    left: 15%;
	justify-content: start;
	padding-left: 15px;
	margin-right: auto;
    margin-left: auto;
}

a.home-btn:hover::before {

	right: 30px;

}

.carousel-indicators li {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	border: 1px solid #fff;
	background-color: transparent;
	opacity: 1;
	margin-right: 6px;
    margin-left: 6px;
	display:none;
}

  
.carousel-indicators .active {
	background-color: #fff;
}

.highlights-block {
	background: linear-gradient(white, white) padding-box, linear-gradient(to right, #D66637, #EDB151) border-box;
	border-bottom: 5px solid transparent;
	display: block;
	position: relative;
	overflow: hidden;
}

.highlights-block img {

	transition: all .6s ease-in-out;
}

.highlights-block::after {
	content: '';
	height: 50%;
	width: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
}

.highlights-block:hover img {
	transform: scale(1.1);
	transition: all .6s ease-in-out;
}

.h-block2 {
	background: linear-gradient(white, white) padding-box, linear-gradient(to right, #A12D30, #CC3631) border-box !important;
}

.h-block3 {
	background: linear-gradient(white, white) padding-box, linear-gradient(to right, #D86C38, #EBA741) border-box !important;
}

.h-block4 {
	background: linear-gradient(white, white) padding-box, linear-gradient(to right, #7F307F, #C42F7A) border-box !important;
}



.highlights-box {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 10px;
	z-index: 2;
}

.highlights-box h4 {
	font-weight: 600;
}

.highlights-box h4,
.highlights-box p {
	color: #fff;
}

.image-container {
	padding-left: 155px;
	padding-bottom: 70px;
	position: relative;
}

.about-img1 {
	position: relative;
	margin-left: 30px;
	margin-bottom: 30px;
}

.about-img1::before {
	content: '';
	height: calc(90% - 30px);
	width: calc(100% - 30px);
	left: 0px;
	bottom: 0px;
	position: absolute;
	background: #29ABE2;
}

.about-img2 {
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.about-arrow {
	position: absolute;
	top: 25%;
	left: 40px;
}

.h2-home {
	font-size: 60px;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 20px;
}

.spotlight-block {
	position: relative;
	padding: 20px 0;

}

.spotlight-block::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50%;
	height: 4px;
	background: linear-gradient(100deg, rgba(214, 102, 55, 1) 15%, rgba(235, 168, 65, 1) 100%);
}

.spotlight-block::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 4px;
	background: linear-gradient(100deg, rgba(154, 44, 48, 1) 15%, rgba(199, 53, 49, 1) 100%);
}

.purple-grad:before {
	background: linear-gradient(100deg, rgba(34, 3, 85, 1) 15%, rgba(112, 44, 125, 1) 100%) !important;
}

.purple-grad:after {
	background: linear-gradient(100deg, rgba(235, 168, 65, 1) 15%, rgba(215, 103, 55, 1) 100%) !important;
}


.red-link {
	background: #fff;
	border-bottom: 4px solid #952B30;
	box-shadow: 5px -1px 20px 0px;
}

.news-wrap {
	margin-top: -30px;
}

a:hover .red-link {
	background: transparent;
	box-shadow: 0 0 0 0;
}

a:hover .red-link .block-hover {
	background: linear-gradient(to right, #972C30 0%, #C93531 100%);
}

.title-link {
	font-weight: 700;
	text-transform: uppercase;
	color: #000000;
}

p.image-catergory {
	text-transform: uppercase;
}

.read-more-icon {
	position: relative;
	margin: 10px 0;
	font-size: 14px;
}

.read-more-icon::before {
	content: url(../images/icons/chevron-right.svg);
	position: absolute;
	top: 2px;
	left: 88px;
	width: 15px;
	height: 15px;
}

a:hover .title-link {
	color: #fff;
}

a:hover .read-more-icon span {
	color: #fff;
}

a:hover .read-more-icon::before {
	content: url(../images/icons/chevron-right-white.svg);
	left: 83px;
	transition: all 500ms ease-in-out;
}

.read-more-icon span {
	color: #000;
	font-weight: 500;
}

.btw-btn {
	position: relative;
}

.btw-btn:before {
	content: url(../images/icons/chevron-right.svg);
	position: absolute;
	top: 2px;
	left: 88px;
	width: 15px;
	height: 15px;
}

a:hover .btw-btn::before {
	content: url(../images/icons/chevron-right-white.svg);
	left: 83px;
	transition: all 500ms ease-in-out;
}

.view-more-text img,
p.view-more-text img {
	width: 15px;
	height: auto;
}
a:hover p.image-catergory {
    color: #C78385;
}
a:hover .news-description  p {
    color: #C78385;
    font-weight: 500;
}
.news-description p {
	font-weight: 500;
	color: #8C8C8C;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
}

.inner-square-news img {

	width: 100%;
}

.title-news {
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	height: 75px;
	font-weight: 700;
	text-transform: uppercase;
	color: #000;
}

a:hover .title-news {
	color: #fff;
}

.news-block {
	text-decoration: none !important;
	padding: 15px;
	border-bottom: 3px solid #952B30;
	z-index: 3;
	position: relative;
	width: 100%;
	padding-left: 0;

}
.news-block  .title-link {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    height: 75px;
}
a:hover .news-block {
	border-bottom: none;
}

.news-hover {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	transition: all 0.3s ease-in-out;
	width: 100%;
	height: 100%;
	z-index: -1;
}

a:hover .news-hover {
	/* background-color: purple; */
	left: -10px;
	top: -10px;
	background: linear-gradient(to right, #992C30 0%, #C73531 100%);

}

.carousel-control-prev-icon {
	background-image: url(../images/icons/slider-arrow-prev.svg);
}

.carousel-control-next-icon {
	background-image: url(../images/icons/slider-arrow.svg);
}


.carousel-control-next-icon,
.carousel-control-prev-icon {

	width:0px;
	height: 0px;
	/* width: 42px;
	height: 42px; */

}

@media screen and (max-width:1540px) {
	.carousel-indicators {
	
		right: 8%;
		left: 8%;
	}
	.carousel-control-next {
		right: 0;
	}

	.carousel-control-next,
	.carousel-control-prev {
		width: 8%
	}

	.carousel-caption {
		right: 8%;
		left: 8%;
	}

	.carousel-caption h5 {
		margin-top: 0;
	}
}

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

	.carousel-caption h5 {
		margin-top: 0;
		margin-bottom: 25px;
		font-size: 50px;
	}

	.h2-home {
		font-size: 70px;
	}

}

@media screen and (max-width:1080px) {
	.carousel-indicators {
		bottom: 10px;
	}
	.carousel-caption h5 {      
        font-size: 30px;
	}
}
@media screen and (max-width:1019px) {
  
}
@media screen and (max-width:991px) {
	.about-img1 {
		margin-left: 0px;
	}

	.about-img1::before {

		left: -30px;
	}

	.carousel-control-prev-icon {
		background-image: url(../images/icons/slider-arrow-prev-blk.svg);
	}

	.carousel-control-next-icon {
		background-image: url(../images/icons/slider-arrow-blk.svg);
	}
	.carousel-control-next, .carousel-control-prev {
		opacity: .9;
	}

	.carousel-caption {
		position: relative;
		left: 0;
	}

	.carousel-caption h5,
	.carousel-caption p {
		color: #000;
	}

	.highlights-block {
		margin-bottom: 20px;
	}

	.carousel-indicators {
		bottom: 0px;
	}

	.carousel-indicators .active {
		background-color: #000;
	}

	.carousel-indicators li {
		border: 1px solid #000;
	}
}

@media screen and (max-width:688px) {
	#slider{padding: 0 30px;}
	.next {		
		right: 0px;
	}
	.prev {
		left: 0px;
	}
}
@media screen and (max-width:650px) {
	
	.carousel-caption {
        left: 0%;
        padding-right: 55px;
        padding-left: 55px;
        width: 100%;
        right: 0;
	}
	.carousel-control-next, .carousel-control-prev {
              z-index: 9999;
	}

}
@media screen and (max-width:575px) {
	.highlights-block {
margin:  0 45px;
margin-bottom: 20px!important;
	}
}

@media screen and (max-width:485px) {
	.highlights-block {margin:  0 0px;}
}