/***

====================================================================
	Attachment Css Files
====================================================================

***/

@import url('global.css');
@import url('header.css');
@import url('footer.css');
@import url('owl.css');
@import url('animate.css');
@import url('swiper.min.css');
/*
/***

====================================================================
	Background
====================================================================

***/

.body-bg{
	background-color: white;
}
 
.bg {
	height: auto;
	background-color:#ffffff;
  }

  .bg:after {
	animation: grain 8s steps(10) infinite;
	content: "";
	height: 300%;
	width: 300%;
	left: -100%;
	top: -110%;
	opacity: 0.1;
	position: fixed;
	z-index: -999;
  }

  @keyframes grain {
	0%, 100% { transform:translate(0, 0) }
	10% { transform:translate(-5%, -10%) }
	20% { transform:translate(-15%, 5%) }
	30% { transform:translate(5%, -25%) }
	40% { transform:translate(-5%, 25%) }
	50% { transform:translate(-15%, 10%) }
	60% { transform:translate(15%, 0%) }
	70% { transform:translate(0%, 15%) }
	80% { transform:translate(5%, 35%) }
	90% { transform:translate(-10%, 10%) }
  }

  .heading-1{
	color: #B82828;
	font-size: 20px;
  }
  .heading-2{
	color: #F25835;
	font-weight: 600;
	line-height:40px;
  }
  .heading-3{
	color: #F28241;
  }

  .section__header{
	margin-bottom: 45px;
  }

  /* Button */
.animated-button {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 10px 30px;
	border: 1px solid;
	border-color: transparent;
	font-size: 16px;
	background-color: inherit;
	border-radius: 100px;
	font-weight: 600;
	color: #F25835;
	/* box-shadow: 0 0 0 2px #F25835; */
	cursor: pointer;
	overflow: hidden;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button svg {
	position: absolute;
	width: 24px;
	fill: #F25835;
	z-index: 9;
	transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .arr-1 {
	right: 16px;
  }
  
  .animated-button .arr-2 {
	left: -25%;
  }
  
  .animated-button .circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	background-color: #F25835;
	border-radius: 50%;
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
  
  .animated-button .text {
	position: relative;
	z-index: 1;
	transform: translateX(-12px);
	transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	
  }

  
  .animated-button:hover {
	box-shadow: 0 0 0 12px transparent;
	color: #fff;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
}
  
  .animated-button:hover .arr-1 {
	right: -25%;
  }
  
  .animated-button:hover .arr-2 {
	left: 16px;
  }
  
  .animated-button:hover .text {
	transform: translateX(12px);
	color:#fff;
  }
  
  .animated-button:hover svg {
	fill: #ffffff;
  }
  
  .animated-button:active {
	scale: 0.95;
	box-shadow: 0 0 0 4px #F25835;
  }
  
  .animated-button:hover .circle {
	width: 220px;
	height: 220px;
	opacity: 1;
  }
  

/***

====================================================================
	Main Slider Section
====================================================================

***/


.slider-one{
	position:relative;
}

.slider-one .auto-container{
	position: relative;
}

.slider-one-arrow{
	position: absolute;
	left: 20px;
	bottom: 240px;
	right: 0px;
	max-width: 1320px;
	margin: 0 auto;
	z-index: 1;
}

.slider-one .main-slider-prev{
	position: relative;
	z-index: 1;
	cursor: pointer;
	margin-right: 15px;
	display: inline-block;
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.slider-one .main-slider-next{
	position: relative;
	z-index: 1;
	cursor: pointer;
	display: inline-block;
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.main-slider_pagination{
	position: absolute;
	right: -50px;
	bottom: 0px;
}

.main-slider_pagination .swiper-pagination-bullet{
	position: relative;
	width: 30px;
	height: 2px;
	opacity: 1;
	display: block;
	margin: 15px 0px;
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	background-color: var(--white-color);
}

.main-slider_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: 60px;
	background-color: var(--main-color);
}

.slider-one .swiper-slide{
	position:relative;
	overflow:hidden;
	background-size:cover;
	height: 700px;
}

.slider-one_image-layer{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:70px;
	z-index:1;
	opacity: 0;
	background-size:cover;
	background-position: center center;
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
	-webkit-transition: all 1000ms linear;
	-moz-transition: all 1000ms linear;
	-ms-transition: all 1000ms linear;
	-o-transition: all 1000ms linear;
	transition: all 1000ms linear;
}


.slider-one .swiper-slide-active .slider-one_image-layer{
	opacity: 1;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.slider-one .upper-box{
	position: relative;
	z-index: 1;
}

.slider-one .lower-box{
	position: relative;
	z-index: 1;
	margin-top: 30px;
}

.slider-one_heading{
	font-weight: 500;
	text-transform: capitalize; 
	font-family: "Arima", system-ui;
	color: var(--white-color);
	padding-top: 15%;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one .swiper-slide-active .slider-one_heading{
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-ms-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one_text{
	position: relative;
	line-height: 24px;
	font-weight: 400;
	font-size: 14px;
	color: var(--white-color);

	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one .swiper-slide-active .slider-one_text{

	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);

}

.slider-one_button{
	position: relative;
	margin-top: 30px;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one .swiper-slide-active .slider-one_button{

	-webkit-transition-delay: 1300ms;
	-moz-transition-delay: 1300ms;
	-ms-transition-delay: 1300ms;
	-o-transition-delay: 1300ms;
	transition-delay: 1300ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);

}

.slider-one_button .discover-btn{
	position: relative;
	font-size: 16px;
	padding-left: 25px;
	color: var(--white-color);
}

.slider-one_button .discover-btn:hover{
	color: var(--main-color);
}

.slider-one_button .discover-btn:hover::before{
	background-color: var(--main-color);
}

.slider-one_button .discover-btn::before{
	position: absolute;
	content: '';
	left: 0px;
	top: 2px;
	width: 14px;
	height: 14px;
	border-radius: 50px;
	display: inline-block;
	border: 2px solid var(--main-color);
}

.slider-one .slider-one_button{
	display:inline-block;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

.slider-one .swiper-slide-active .slider-one_button{
	-webkit-transition-delay: 1300ms;
	-moz-transition-delay: 1300ms;
	-ms-transition-delay: 1300ms;
	-o-transition-delay: 1300ms;
	transition-delay: 1300ms;
}

.slider-one_image{
	position: relative;
	opacity: 0;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0 48%, 100% 48%, 100% 50%, 0 50%);
}

.slider-one_image img{
	position: relative;
	width: 100%;
	display: block;
}

.slider-one .swiper-slide-active .slider-one_image{
	opacity: 1;
	-webkit-transition-delay: 1300ms;
	-moz-transition-delay: 1300ms;
	-ms-transition-delay: 1300ms;
	-o-transition-delay: 1300ms;
	transition-delay: 1300ms;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);

}

/***

====================================================================
	Welcome One
====================================================================

***/


  /* do */
  

/*****************************--------------------------------------------------------------
                                              hero icon
--------------------------------------------------------------*******************************/
.herobtn{
      position: absolute;
	  top: 180px;
	  right: 4%;
	  z-index: 999;
	  font-weight: 550;
	  display: grid;
	 gap: 10px;
  }

@keyframes blink {
	0%, 100% {background-color:#00047f;}
	50% {background-color: #e354d1;}
  }
  #blinking-button {
	background-color: #8EDDBE;
	color: white;
	animation: blink 1s linear infinite;
	border-radius: 6px;
	padding: 7px 18px;
  }
  a{
	text-decoration: none !important;
  }
  

.logo-hero{
	background-image: url(../images/ogborder.svg);
	background-repeat: no-repeat;
	position: absolute;
	top: 160px;
	left: 5%;
	padding: 34px 32px 47px 29px;
	z-index: 9;
	overflow: hidden;
  }
  
  .logo-h1{
	background: linear-gradient(to right,#12ff86, #92c9ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 650;
  }
.one{
	background: linear-gradient(to right,#F2A766, #b6d7f8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
}
  .logo-h2 {
	position: relative;
	border: none;
	background: transparent;
	--stroke-color: #ffffff7c;
	--ani-color: rgba(95, 3, 244, 0);
	--color-gar: linear-gradient(90deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
	letter-spacing: 3px;
	font-size: 20px;
	font-family: "Arial";
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke: 1px var(--stroke-color);
	cursor: pointer;
  }
  
  .front-text {
	position: absolute;
	top: 0;
	left: 0;
	/* width: 0%; */
	background: var(--color-gar);
	-webkit-background-clip: text;
	background-clip: text;
	background-size: 200%;
	overflow: hidden;
	transition: all 1s;
	animation: 8s ani infinite;
	
  }
  
  .logo-h2  {
	width: 100%;
	-webkit-text-stroke: 2px var(--ani-color);
  }
  
  @keyframes ani {
	0% {
	  background-position: 0%;
	}
  
	50% {
	  background-position: 400%;
	}
  
	100% {
	  background-position: 0%;
	}
  }
  

  .image-logo{
	  height: 130px;
	  width: 130px;
	  border-radius: 50%;
	  /*animation: fadeIn ease 3s;
	  */z-index: 1;
	  animation: anime 5s ease 	  ;
	  -webkit-animation: anime 5s ease 	  ;
}
  .imglogo-hero{
	display: flex;
	justify-content:center
}
  
  @media (max-width: 766px) {
	.image-logo{
	  display: none;
	  opacity: 0;
	}
	}
  
  @media (max-width: 766px) {
	.logo-name .animate {
	  display: none;
	  opacity: 0;
	}
	}
  
	@media (max-width: 766px) {
	  .logo-name-sub  {
		display: none;
		opacity: 0;
	  }
	  }

	  /*  */
	  .white-wrp {
		/* background-color: #ffffff; */
		color: whitesmoke;
		width: 100%;
		height: auto;
		position: relative;
		z-index: 99;
	}


	/* flip logo */
.bowtie {
	-webkit-animation: bowspin 5s infinite;
	transform-origin: bottom center;
	animation: bowspin 5s infinite;
	
  }
	
	
	@-webkit-keyframes bowspin {
	  0% {
		transform: rotateX(0deg);
		transform-origin: center;
		transform-box: fill-box;
		-webkit-transform: rotateX(0deg);
		-moz-transform: rotateX(0deg);
		-ms-transform: rotateX(0deg);
		-o-transform: rotateX(0deg);
  }
	  100% {
		transform: rotateY(360deg);
		transform-origin: center;
		transform-box:fill-box;
  }
  
		  }

/*****************************--------------------------------------------------------------
                                              AIM
--------------------------------------------------------------*******************************/	

.services-section {
    position: relative;
    margin-top: -185px;
    z-index: 1;
}
.about__bg{
	background-image: url(../images/abg.svg);
    height: 285px;
    width: 100%;
    position: absolute;
    top: 115px;
    left: 0;
    object-fit: cover;
    background-size: cover;
}

.img-aim {
    height: auto;
    width: 65px;
    margin-left: auto;
    margin-right: auto;
}



.service-block {
    position: relative;
    margin-bottom: 30px;
    z-index: 1
}

.service-block:nth-child(2) {
    margin-top: 60px
}

.service-block .inner-box {
  position: relative;
  background: #fff;
  padding: 72px 23px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}


.service-block .inner-box:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #F25835;
	content: "";
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.service-block .inner-box:hover {
    transform: translateY(-20px);
    box-shadow: 0 10px 20px rgba(0,0,0,.4)
}

.service-block .icon {
   
    top: -40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    border-radius: 50%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.service-block .inner-box:hover .icon {
    background-color:#c24755
}

.service-block .icon:after {
    position: absolute;
    height: 130px;
    width: 130px;
    left: -10px;
    top: -10px;
    background: hsla(0,0%,100%,.1);
    content: "";
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* ***************************************** */

.service-block:hover .title {
	color: #333;
  }
  .service-block:hover .inner-box {
	-webkit-transform: translateY(-10px);
			transform: translateY(-10px);
  }
  .service-block:hover .inner-box:before {
	height: 0;
  }
  .service-block:hover .inner-box:before .icon {
	background-color:#18191c;
	fill: #fff;
	-webkit-transition-delay: 150ms;
	transition-delay: 150ms;
  }
  .service-block:hover .inner-box .service-icon-area .icon {
	fill: #fff;
  }
  .service-block:hover .inner-box .service-icon-area .icon:before {
	-webkit-transform: scaleX(1);
			transform: scaleX(1);
  }
  .service-block:hover .inner-box .text {
	color: #303132;
  }
  
  .service-block .inner-box .service-icon-area {
	position: relative;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin-top: -90px;
  }
  
  .service-block .inner-box .service-icon-area .icon {
    height: 110px;
    width: 110px;
	background-color: #ffff;
	line-height: 120px;
	fill: #F25835;
	border-radius: 50%;
	margin: 0 auto 0;
	position: relative;
	/* overflow: hidden; */
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	z-index: 1;
  }
  
  .service-block .inner-box .service-icon-area .icon:before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	content: "";
	border-radius: 50%;
	z-index: -1;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
	transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
	background-color: #F25835;
	fill: white;
  }
  

.service-block h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px
}

 .service-block .inner-box  h4 a {
    color: white;
    transition: all .3s ease
}

.service-block:hover .inner-box h4 a {
	color: #8c8f94;
  }
.service-block .text {
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    padding: 0 20px;
    margin-bottom: 20px
}


@media only screen and (max-width: 1199px) {
    .services-section {
        margin:0;
    }

    .services-section:before {
        display: none
    }

    .service-block:nth-child(2) {
        margin-top: 0
    }

    .service-block {
        margin-top: 70px!important;
        margin-bottom: 30px
    }
}


/*****************************--------------------------------------------------------------
#                                            ABOUT
--------------------------------------------------------------*******************************/	
 .about-one {
	position: relative;
	background-color: #ffe6e0;
  }
  .about-one--about .about-one__image {
	position: relative;
  }
  .about-one--about .about-one__image__inner {
	position: relative;
	max-width: 100%;
	height: auto;
	z-index: 1;
  }
  .about-one--about .about-one__image__shape {
	max-width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: -97px;
	transform: translateY(-50%);
	animation: aboutShapeZump 2s linear infinite;
  }
  @media (max-width: 575px) {
	.about-one--about .about-one__image__shape {
	  display: none;
	}
  }
  .about-one--about .about-one__list {
	gap: 9px;
  }
 

  .about-one .container {
	position: relative;
	z-index: 1;
  }
  @media (min-width: 992px) {
	.about-one__left {
	  display: grid;
	  grid-template-columns: 200px auto;
	  align-items: center;
	}
  }
  .about-one__image {
	position: relative;
	display: table;
  }
  @media (max-width: 991px) {
	.about-one__image {
	  margin-top: 50px;
	}
  }
  .about-one__image__one {
	max-width: 100%;
	height: auto;
}
.abt{
    position: relative;
    overflow: hidden;
  }
  
  .abt::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 0;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
  }
  
  .abt:before {
    -webkit-animation:shine 5s infinite;
    animation:shine 5s infinite;
}
  
  @-webkit-keyframes shine {
    100% {
      left: 125%;
    }
  }
  
  @keyframes shine {
    100% {
      left: 125%;
    }
  }

  .about-one__image__two {
	max-width: 100%;
	height: auto;
	position: absolute;
	right: 0;
	bottom: 0;
	border-top: 12px solid  #ffffff;
	border-left: 12px solid  #ffffff;
	animation: bounce-x 8s infinite linear;
	-webkit-animation: bounce-x 8s infinite linear;
}
  @keyframes bounce-x {
	0% {
	  -webkit-transform: translateX(0);
			  transform: translateX(0);
	}
	50% {
			  -webkit-transform: translateX(20px);
			  transform: translateX(20px);
			  -moz-transform: translateX(20px);
			  -ms-transform: translateX(20px);
			  -o-transform: translateX(20px);
}
	100% {
	  -webkit-transform: translateX(0);
			  transform: translateX(0);
	}
  }
  @media (min-width: 992px) and (max-width: 1199px) {
	.about-one__image__two {
	  max-width: 150px;
	}
  }
  .about-one .sec-title {
	margin-bottom: 30px;
  }
  .about-one__text {
	margin-bottom: 20px;
	padding-top: 18px
  }
  .about-one__list-box {
	margin-bottom: 24px;
	max-width: 360px;
  }
  @media (max-width: 1199px) {
	.about-one__list-box {
	  max-width: 100%;
	}
  }
  .about-one__list-box .row {
	--bs-gutter-y: 15px ;
  }
  .about-one__list {
	display: flex;
	gap: 9px;
  }
  .about-one__list__icon {
	position: relative;
	top: 1px;
	font-size: 16px;
	color:  #0f3564;
	transition: all 500ms ease;
  }
  .about-one__list__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
  }
  .about-one__list:hover .about-one__list__icon {
	color:  #0365d3;
  }
  .about-one__list__link {
	color: #333333;
	font-weight: 500;
	transition: all 500ms ease;
  }
  .about-one__list:hover .about-one__list__link {
	color: #0365d3;
	text-decoration: underline;
  }
  .about-one__bottom {
	padding-top: 31px;
	position: relative;
  }
  .about-one__bottom::after {
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	top: 0px;
	left: 0;
	background-color:  #dddddd;
  }
  .about-one__founder {
	position: relative;
	margin-bottom: 40px;
	display: inline-flex;
	align-items: center;
	gap: 20px;
	z-index: 2;
  }
  @media (max-width: 575px) {
	.about-one__founder {
	  margin-bottom: 50px;
	  display: flex;
	}
  }


  .funfact--home-1 .funfact__row {
	--bs-gutter-x: 0px;
  }
  @media (max-width: 991px) {
	.funfact--home-1 .funfact__row {
	  --bs-gutter-x: 30px;
	  --bs-gutter-y: 30px;
	}
  }
  .funfact--home-1 .funfact__row > * {
	border-left: 2px solid  #FFB800;
	border-right: 2px solid  #FFB800;
	border-bottom: 2px solid  #FFB800;
  }
  .funfact--home-1 .funfact__row > *:first-child {
	border-top: 2px solid  #FFB800;
  }
  @media (max-width: 991px) {
	.funfact--home-1 .funfact__row > * {
	  border: 0 !important;
	}
  }
  .funfact--home-1 .funfact__item {
	padding: 14px 30px 17.25px;
	flex-direction: column;
	align-items: center;
	background-color: #ffffff;
  }
  @media (max-width: 991px) {
	.funfact--home-1 .funfact__item {
	  border: 2px solid  #FFB800;
	}
  }
  .funfact--home-1 .funfact__content {
	margin: 0;
	text-align: center;
  }
  .funfact--home-1 .funfact__count {
	justify-content: center;
  }  

 
  @media (max-width: 767px) {
	.funfact--portfolio-details .funfact__inner {
	  padding: 80px 0;
	}
  }
  @media (max-width: 575px) {
	.funfact--portfolio-details .funfact__inner {
	  padding: 70px 0;
	}
  }
  .funfact__row {
	--bs-gutter-x: 96px;
  }
  @media (max-width: 1199px) {
	.funfact__row {
	  --bs-gutter-x: 60px;
	}
  }
  .funfact__item {
	position: relative;
	display: flex;
	gap: 19px;
  }
  @media (min-width: 576px) and (max-width: 1199px) {
	.funfact__item {
	  flex-direction: column;
	  align-items: center;
	}
  }
  @media (max-width: 575px) {
	.funfact__item {
	  flex-direction: column;
	  align-items: center;
	}
  }
  @media (max-width: 991px) {
	.funfact__item--2 .funfact__item__shape {
	  display: none;
	}
  }
  .funfact__item__shape {
	position: absolute;
	top: 50%;
	right: -48px;
	transform: translateY(-50%);
  }
  @media (max-width: 1199px) {
	.funfact__item__shape {
	  right: -30px;
	}
  }
  @media (max-width: 575px) {
	.funfact__item__shape {
	  display: none;
	}
  }
  .funfact__icon-box {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: #F25835;
	transition: all 500ms ease;
  }
  .funfact__item:hover .funfact__icon-box {
	background-color:#F2A766 ;
  }
  .funfact__icon {
	display: inline-flex;
	font-size: 42px;
	color: #ffffff;
	transition: all 500ms ease;
  }
  .funfact__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
  }
  .funfact__item:hover .funfact__icon {
	-webkit-animation-name: wobble-horizontal-hover;
	animation-name: wobble-horizontal-hover;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
  }
  .funfact__content {
	margin-top: 6px;
  }
  @media (min-width: 576px) and (max-width: 1199px) {
	.funfact__content {
	  margin: 0;
	  text-align: center;
	}
  }
  @media (max-width: 575px) {
	.funfact__content {
	  margin: 0;
	  text-align: center;
	}
  }
  .funfact__count {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
  }
  @media (min-width: 576px) and (max-width: 1199px) {
	.funfact__count {
	  justify-content: center;
	}
  }
  @media (max-width: 575px) {
	.funfact__count {
	  justify-content: center;
	}
  }
  .funfact__text {
	margin: 0;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
  }
  

/*****************************--------------------------------------------------------------
#                                            PRINCIPAL 
--------------------------------------------------------------*******************************/	

.testimonial {
	padding: 100px 0px 80px;
	background-color: #f6fdff;
	position: relative;
	z-index: 1;
	overflow: hidden;
  }

  .t-name{
	font-family: "Kaushan Script", cursive;
  }
 
  .testimonial__slider{
	  overflow: auto;
	}
	.testimonial__slider::-webkit-scrollbar{
  display: none;
	}
	.testimonial__slider-content p{
font-size: 18px !important;
	}
  .testimonial .testimonial__inner {
	position: relative;
	z-index: 1;
  }
  .testimonial .testimonial__inner::before {
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: 40vw;
	height: 100%;
	background-color: #F25835;
	border-radius: 15px 180.5px 15px 15px;
	z-index: -1;
  }
  .testimonial .testimonial__inner-wrapper {
	padding: 80px 24px;
	border-radius: 15px;
	background: white;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
			box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
  }
  .testimonial .testimonial__slider-thumb {
	padding-right: 30px;
	padding-top: 30px;
	position: relative;
	z-index: 1;
  }
  .testimonial .testimonial__slider-thumb::before {
	content: "";
	position: absolute;
	right: 0px;
	top: 0px;
	width: 80%;
	height: 80%;
	border: 8px solid #FFB800;
	border-left: 0px;
	border-bottom: 0px;
	border-top-right-radius: 70px;
	z-index: -1;
	opacity: 0;
	-webkit-transform: scaleY(0);
		-ms-transform: scaleY(0);
			transform: scaleY(0);
	-webkit-transform-origin: top;
		-ms-transform-origin: top;
			transform-origin: top;
	-webkit-transition: all 1000ms ease;
	transition: all 1000ms ease;
  }
  .testimonial .testimonial__slider-thumb img {
	width: 100%;
	min-height: 240px;
	border-radius: 50px 50px 50px 5px;
	opacity: 0;
	-webkit-transform: scaleY(0);
		-ms-transform: scaleY(0);
			transform: scaleY(0);
	-webkit-transform-origin: top;
		-ms-transform-origin: top;
			transform-origin: top;
	-webkit-transition: all 1000ms ease;
	transition: all 1000ms ease;
  }
  .testimonial .review {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 4px;
	opacity: 0;
	-webkit-transform: scaleY(0);
		-ms-transform: scaleY(0);
			transform: scaleY(0);
	-webkit-transform-origin: top;
		-ms-transform-origin: top;
			transform-origin: top;
	-webkit-transition: all 1000ms ease;
	transition: all 1000ms ease;
  }
  .testimonial p {
	font-size: 18px;
	text-transform: none;
	margin: 25px 0px;
	opacity: 0;
	-webkit-transform: scaleY(0);
		-ms-transform: scaleY(0);
			transform: scaleY(0);
	-webkit-transform-origin: top;
		-ms-transform-origin: top;
			transform-origin: top;
	-webkit-transition: all 1000ms ease;
	transition: all 1000ms ease;
  }
  .testimonial .testimonial__cta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 20px;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	margin-bottom: 80px;
	opacity: 0;
	-webkit-transform: scaleY(0);
		-ms-transform: scaleY(0);
			transform: scaleY(0);
	-webkit-transform-origin: top;
		-ms-transform-origin: top;
			transform-origin: top;
	-webkit-transition: all 1000ms ease;
	transition: all 1000ms ease;
  }
  .testimonial .testimonial__cta .quote-icon {
	width: 50px;
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	background-color: #F28241;
  }
  .testimonial .testimonial__cta .quote-icon i {
	font-size: 24px;
	color: white;
  }
  .testimonial .testimonial__cta span {
	font-size: 18px;
	font-family: "Architects Daughter", cursive;

  }
  .testimonial .testimonial__cta h4 {
	font-weight: 500;
	color: #b90000;
  }
  .testimonial .cloud {
	position: absolute;
	z-index: -1;
	left: 0px;
	right: 0px;
	bottom: -10px;
  }
  .testimonial .cloud img {
	width: 100%;
  }
  .testimonial .swiper-slide-active .testimonial__slider-thumb::before {
	opacity: 1;
	-webkit-transform: scaleY(1);
		-ms-transform: scaleY(1);
			transform: scaleY(1);
	-webkit-transition-delay: 600ms;
			transition-delay: 600ms;
  }
  .testimonial .swiper-slide-active .testimonial__slider-thumb img {
	opacity: 1;
	-webkit-transform: scaleY(1);
		-ms-transform: scaleY(1);
			transform: scaleY(1);
	-webkit-transition-delay: 600ms;
			transition-delay: 600ms;
  }
  .testimonial .swiper-slide-active .review {
	opacity: 1;
	-webkit-transform: scaleY(1);
		-ms-transform: scaleY(1);
			transform: scaleY(1);
	-webkit-transition-delay: 1000ms;
			transition-delay: 1000ms;
  }
  .testimonial .swiper-slide-active p {
	opacity: 1;
	-webkit-transform: scaleY(1);
		-ms-transform: scaleY(1);
			transform: scaleY(1);
	-webkit-transition-delay: 1400ms;
			transition-delay: 1400ms;
  }
  .testimonial .swiper-slide-active .testimonial__cta {
	opacity: 1;
	-webkit-transform: scaleY(1);
		-ms-transform: scaleY(1);
			transform: scaleY(1);
	-webkit-transition-delay: 1800ms;
			transition-delay: 1800ms;
  }
  .testimonial .slider-navigation {
	position: absolute;
	bottom: 80px;
	/* left: 24px;  */
	 left:788px; 
	z-index: 2;
  }

  .slider-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 12px;
	padding: 10px;
  }
  .slider-navigation button {
	width: 50px;
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	background-color: white;
	border: 1px solid #B82828;
	font-size: 20px;
	color: #000000;
  }
  .slider-navigation button:hover {
	background-color:#B82828;
	color: white;
  }

/*****************************--------------------------------------------------------------
#                                            NEWS & EVENTS 
--------------------------------------------------------------*******************************/	

  .blog {
	padding: 80px 0px 100px;
	background-color: white;
  }
  .blog .blog__single-thumb a {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
  }
  .blog .blog__single-thumb{
	overflow: hidden;
	border-radius: 10px;
	padding-top: 20px;

  }
  .blog .blog__single-thumb img {
	width: 100%;
	min-height: 300px;
	border-radius: 10px;
	transition: all 0.4s;
}
  .blog .blog__single:hover .blog__single-thumb img {
	-webkit-transform: scale(1.2) rotate(5deg);
		-ms-transform: scale(1.2) rotate(5deg);
			transform: scale(1.2) rotate(5deg);
			
  }
  .blog .blog__single:hover .blog__single-content::before {
	background-color: #F28241;
  }
  .blog .blog__single:hover .blog__single-content a {
	color: white;
  }
  .blog .blog__single-content {
	padding: 40px 30px;
	background-color: white;
	-webkit-box-shadow:  0px 0px 10px 0px rgba(0, 0, 0, 0.15);
			box-shadow:  0px 0px 10px 0px rgba(0, 0, 0, 0.15);
	position: relative;
	top: -137px;
	margin-bottom: -137px;
	width: calc(100% - 30px);
	border-radius: 10px;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
  }
  .blog .blog__single-content::before {
	content: "";
	position: absolute;
	inset: 0px;
	width: 100%;
	height: 100%;
	z-index: -2;
	border-radius: 10px;
	background-color: white;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}
  .blog .blog__single-content .time {
	position: absolute;
	top: 0px;
	right: 30px;
	border-radius: 0px 0px 5px 5px;
	background: #ffb800;
	padding: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
  }
  .blog .blog__single-content .time span {
	color: black;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
  }
  .blog .blog__single-content .time span:nth-last-of-type(1) {
	font-size: 24px;
	margin-top: 4px;
  }
  .blog .tag a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 8px;
  }
  .blog .tag a i {
	font-size: 18px;
	color: #B82828;
  }
  .blog .tag a  {
	font-size: 16px;
	color: #B82828;
  }
  .blog .blog__single-title {
	margin-top: 25px;
  }
  .blog .blog__single-title a {
	color: #414040;
	font-weight: 700;
  }
  .blog__single-cta {
	border-top: 1px solid #dedede;
	padding-top: 24px;
	margin-top: 27px;
  }
   .blog__single-cta a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 8px;
	font-weight:normal;
	color:#f28240;
  }


/*****************************--------------------------------------------------------------
#                                            YOUTUBE
--------------------------------------------------------------*******************************/	

.video-area{
	padding-top: 80px;
	padding-bottom:80px;
}
.review{
	padding-top: 20px;
	padding-bottom:20px;
}
.video-content {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 80px 80px 80px 0
  }
  
  .video-content::before {
	content: "";
	position: absolute;
	background: rgba(3,2,7,.2);
	border-radius: 80px 80px 80px 0;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0
  }
  
  .video-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	border-radius: 5px;
	height: 350px;
	z-index: 100
  }
  
  .video-wrapper img {
	border-radius: 12px
  }
  
  .video-area .play-btn {
	display: inline-block;
	padding: 0;
	height: 75px;
	width: 75px;
	text-align: center;
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%)
  }
  
  @media all and (max-width: 767px) {
	.video-wrapper {
		height:250px
	}
  }
  .videobg{
	z-index: 9;
  }

  .play-btn {
	display: inline-block;
	padding: 0;
	height: 75px;
	width: 75px;
	line-height: 75px;
	font-size: 20px;
	text-align: center;
	background: #FDA31B;
	color: var(--color-white)!important;
	position: absolute;
	border-radius: 50%;
	z-index: 1
  }
  
  .play-btn i::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: #FDA31B;
	border-radius: 50px;
	animation: ripple-wave 1s linear infinite;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all .5s ease-in-out
  }
  
  @keyframes ripple-wave {
	0% {
		opacity: .8;
		-webkit-transform: scale(.9);
		transform: scale(.9)	;
		-moz-transform: scale(.9);
		-ms-transform: scale(.9);
		-o-transform: scale(.9);
}
  
	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		transform: scale(2)	;
		-moz-transform: scale(2);
		-ms-transform: scale(2);
		-o-transform: scale(2);
}
  }

  .about-text{
  text-align: unset;
  }
   /* animate */

   .review {
    background: #020024;
    background: linear-gradient(148deg,#f7f7f7,#F25835);
    width: 100%;
    position: relative
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: #fff3;
    animation: animate 25s linear infinite;
    bottom: -150px
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
	border-radius: 10px;
    animation-delay: 0s
	
}

.circles li:nth-child(2) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	border-radius: 5px;
	animation-duration: 12s;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.circles li:nth-child(3) {
	left: 70%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 1;
        border-radius: 5%    ;
        -webkit-border-radius: 5%    ;
        -moz-border-radius: 5%    ;
        -ms-border-radius: 5%    ;
        -o-border-radius: 5%    ;
}

    to {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%
    }
}

.pt120 {
    padding-top: 120px
}
  /* **********************************heading */
  .site-title {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 55px;
    color: var(--color-dark);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}






/*****************************--------------------------------------------------------------
#                                            GALLERY
--------------------------------------------------------------*******************************/	

.gallery-one__card {
	position: relative;
	overflow: hidden;
	height: 200px;
	width: 280px;
	width: 100%;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
  }
  .gallery-one__card img {
	background-size: cover;
	display: block;
	min-height: 200px;
	max-height: 230px;
	width: 100%;
	transition: transform 500ms ease, opacity 500ms ease;
	opacity: 1;
	border-radius: 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	width: 100%;
	transform: scale(1.0);
	transition: transform 0.4s ease;
	overflow: hidden;
	max-width: 100%;
	height: auto;
	object-fit: cover;
  }
  .gallery-one__card__hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(148deg,#f1cdcdd6, #ff2f0078);
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(1, 0);
	transition: transform 500ms ease;
	transform-origin: bottom center;
	border-radius: 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
  }
  .gallery-one__card__hover .img-popup {
	position: relative;
  }
  .gallery-one__card:hover img {
	transform: scale(1.05);
  }
  .gallery-one__card:hover .gallery-one__card__hover {
	transform-origin: top center;
	transform: scale(1, 1);
  }
  .gallery-one__card__icon {
	width: 30px;
	height: 30px;
	display: block;
	position: relative;
  }
  .gallery-one__card__icon::after, .gallery-one__card__icon::before {
	content: "";
	width: 2px;
	height: 100%;
	background-color: #ffff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50px;
  }
  .gallery-one__card__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
  }


  /*==========================================================================
* footer application
==========================================================================*/
.app-store-btns {
	/* display: flex; */
	width: 100%;
  }
  .app-store-btns a {
	gap: 5px;
	margin-bottom: 10px;
	margin-left: 8px;
	font-size: 15px;
	flex-grow: 1;
	flex-basis: 0;
	text-decoration: none;
	color: #ffffff;
	background: #000000;
	background-repeat: no-repeat;
	padding: 6px 12px 6px 48px;
	min-height: 40px;
	font-weight: 400;
	background-position: 16px;
	display: inline-flex;
	align-items: center;
	border-radius: 0px;
	border-bottom: none;
	border: 0.5px solid #000;
	border-radius: 3px;
  }

  .app-store-btns a:hover{
	background: #141414d1;
	background-repeat: no-repeat;
	background-position: 10px;
  }


  .app-store-btns a:nth-child(2) {
	margin-left: 8px;
  }
  .app-store-btns a:nth-child(3) {
	margin-left: 8px;
  }
  .app-store-btns a:nth-child(4) {
	margin-left: 8px;
  }
  .app-store-btns a.apple {
	background-image: url("https://psycatgames.com/images/supporting/app-store.svg");
	background-size: 21px 25px;
  }
  .app-store-btns a.google {
	background-image: url("https://psycatgames.com/images/supporting/google-play.svg");
	background-size: 22px 25px;
  }

/* ************************************************************************************************************************ */

.section-title{
	font-size: 1.75rem;
	margin-bottom: 1rem;
	margin-top: 5px;
	line-height: 1.2;
	font-weight: 700;
	/* color: #F28241; */
	background: linear-gradient(to right,#F25835, #F28241);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.section-description{
	margin-bottom: 15px;
	color: color-mix(in srgb, #212529, transparent 20%);
}

/*=============================
	About page
===============================*/
  
.about .about-meta {
	color: #B82828;
	font-weight: 600;
	margin-bottom: 4px;
	display: inline-block;
  }
  
   .about-title {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	line-height: 1.2;
	font-weight: 700;
	color: #F28241;
  }
  
  @media (max-width: 992px) {
	.about .about-title {
	  font-size: 2rem;
	}
  }
  
 .about-description {
	margin-bottom: 24px;
	color: color-mix(in srgb, #212529, transparent 20%);
  }
  
 .about .image-wrapper {
	position: relative;
  }
  
  @media (max-width: 992px) {
	.about .image-wrapper {
	  padding-left: 0;
	  margin-top: 3rem;
	  display: flex;
	  flex-direction: column;
	  gap: 2rem;
	}
  }
  
  @media (max-width: 992px) {
	.about .image-wrapper .images {
	  display: flex;
	  flex-direction: column;
	  gap: 1.5rem;
	}
  }
  
  @media (max-width: 992px) {
	.about .image-wrapper .main-image {
	  margin-left: 0;
	}
  }

  /*--------------------------------------------------------------
# Principal Section
--------------------------------------------------------------*/
.princtitle{
	text-align-last: center;
}
  /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
	background-color: #b82828;
	color: white;
	padding: 3rem;
	border-radius: 1rem;
	height: 100%;
  }
  
  .contact .info-box h3 {
	color: white;
	font-size: 2rem;
	margin-bottom: 1rem;
  }
  
  @media (max-width: 767.98px) {
	.contact .info-box h3 {
	  font-size: 1.75rem;
	}
  }
  
  .contact .info-box p {
	opacity: 0.8;
	margin-bottom: 2rem;
  }
  
  .contact .info-box a {
	color: white;
  }
  
  @media (max-width: 992px) {
	.contact .info-box {
	  padding: 1.5rem;
	}
  }
  
  .contact .info-item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
	margin-top: 3rem;
  }
  
  .contact .info-item:last-child {
	margin-bottom: 0;
  }
  
  .contact .info-item .icon-box {
	width: 3.5rem;
	height: 3.5rem;
	background-color: color-mix(in srgb, white, transparent 85%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: 0.3s;
  }
  
  .contact .info-item .icon-box i {
	font-size: 1.5rem;
	color: white;
  }
  
  .contact .info-item:hover .icon-box {
	background-color: color-mix(in srgb, white, transparent 70%);
  }
  
  .contact .info-item .content h4 {
	color: white;
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	font-weight: 700;
  }
  
  .contact .info-item .content p {
	margin-bottom: 0.25rem;
	font-size: 0.95rem;
  }
  
  .contact .info-item .content p:last-child {
	margin-bottom: 0;
  }
  
  .contact .contact-form {
	background-color:white;
	padding: 3rem;
	border-radius: 1rem;
	height: 100%;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  }
  
  @media (max-width: 992px) {
	.contact .contact-form {
	  padding: 1.5rem;
	}
  }
  
  .contact .contact-form h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #545454;
  }
  
  @media (max-width: 768px) {
	.contact .contact-form h3 {
	  font-size: 1.75rem;
	}
  }
  

  
  .contact .contact-form .form-control,
  .contact .contact-form .form-select {
	padding: 0.875rem 1.25rem;
	border-color: color-mix(in srgb, #212529, transparent 90%);
	border-radius: 0.5rem;
	background-color: color-mix(in srgb,#ffffff 90%, white 5%);
	color: #212529;
  }
  
  .contact .contact-form .form-control:focus,
  .contact .contact-form .form-select:focus {
	box-shadow: none;
	border-color: blue;
  }
  
  
  .contact .contact-form .btn {
	/*background-color: blue;
	color: white;*/
	padding: 1rem 2rem;
	border-radius: 2rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: 0.3s;
  }
  
  .contact .contact-form .btn i {
	font-size: 1.25rem;
  }
  
  .contact .contact-form .btn:hover {
	/*background-color: color-mix(in srgb, blue, white 20%);*/
  }

  .location-map iframe{
	height:500px;
	width: 100%;
  }
  /*--------------------------------------------------------------
# Aim Section
--------------------------------------------------------------*/

  .la-pen-nib{
	margin-top: 6px;
    margin-right: 4px;
}
  
  /*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery-image {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
  }

.img-box img {
	background-size: cover;
	min-height: 280px;
	max-height: 280px;
	width: 100%;
	transform: scale(1.0);
	transition: transform 0.4s ease;
	overflow: hidden;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	  }

.img-box {
	  box-sizing: content-box;
	  margin: 10px;
	  height: 280px;
	  width: 280px;
	  overflow: hidden;
	  display: inline-block;
	  color: #fff !important;
	  position: relative;
	  background-color: rgb(255, 255, 255);
  }

  .caption {
	position: absolute;
	bottom: 5px;
	left: 20px;
	opacity: 0.0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	color: #fff;
  }
  .img-box h5{
	color: #fff !important;
  }

  .transparent-box {
	height: 280px;
	width: 100%;
	background-color:rgba(0, 0, 0, 0.055);
	position: absolute;
	top: 0;
	left: 0;
	transition: background-color 0.3s ease;
  }

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

  .img-box:hover .transparent-box {
	background-color:rgba(0, 0, 0, 0.829);
  }

  .img-box:hover .caption {
	transform: translateY(-20px);
	opacity: 0.8;
  }

  .img-box:hover {
	cursor: pointer;
  }

  .caption > p:nth-child(2) {
	font-size: 0.8em;
	color: white;
  }

  .opacity-low {
	opacity: 0.5;
  }

  /*--------------------------------------------------------------
# School Uniform Section
--------------------------------------------------------------*/
.summer{
text-align: center;
background-image: url(../images/summer.jpg);
}

.Winter{
text-align: center;
background-image: url(../images/winter.jpg);
}

.uniformheading{
	font-size: 26px;
    font-weight: 500;
}

.uniformheading1{
	font-size: 22px;
    font-weight: 450;
}

  /*--------------------------------------------------------------
# Faculty Section
--------------------------------------------------------------*/
.faculty-details h3{
    margin: 0;
    padding: 0;
    margin-top: 0px;
    font-size: 17px;
    font-weight: 600;
	text-align: center;
}

  /*--------------------------------------------------------------
# Birthday Section
--------------------------------------------------------------*/
.bday{
	padding: 20px;
	margin-right: 5px;
	background-image: linear-gradient(to bottom, #734b6d, #42275a);
	animation: gradient 9s infinite alternate linear;
	border-radius: 30px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.bdaytxt{
	font-size: 20px;
	font-family: "Kaushan Script", cursive;
	background: linear-gradient(to right,#b52727, #d93f3f);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.bdaytxt2{
	font-size: 18px;
	font-family: "Architects Daughter", cursive;
	margin-bottom: 0;
}

  @keyframes gradient {
	0% {
	  background-position: 0% 50%;
	  background-image: linear-gradient(-45deg, #fdcbe1, #debff8);
	}
  
	50% {
	  background-position: 100% 50%;
	  background-image: linear-gradient(to bottom, #ffcbeb, #fdc9aa);
	}
  
	100% {
	  background-position: 0% 50%;
	  background-image: linear-gradient(to top, #fdc9aa, #e9d3fc);
	}
  }
  
  .confetti {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 247px;
	height: 60%;
	overflow: hidden;
	z-index: 1000;
  }
  
  .confetti-piece {
	position: absolute;
	width: 10px;
	height: 20px;
	background-color: hsl(39, 100%, 56%);
	top: 0;
	opacity: 0;
	animation: makeItRain 3000ms infinite linear;
  }
  
  .confetti-piece:nth-child(1) {
	left: 7%;
	transform: rotate(-10deg);
	animation-delay: 182ms;
	animation-duration: 2000ms;
  }
  
  .confetti-piece:nth-child(2) {
	left: 14%;
	transform: rotate(20deg);
	animation-delay: 161ms;
	animation-duration: 2076ms;
  }
  
  .confetti-piece:nth-child(3) {
	left: 21%;
	transform: rotate(-51deg);
	animation-delay: 481ms;
	animation-duration: 2103ms;
  }
  
  .confetti-piece:nth-child(4) {
	left: 28%;
	transform: rotate(61deg);
	animation-delay: 334ms;
	animation-duration: 1008ms;
  }
  
  .confetti-piece:nth-child(5) {
	left: 35%;
	transform: rotate(-52deg);
	animation-delay: 302ms;
	animation-duration: 1776ms;
  }
  
  .confetti-piece:nth-child(6) {
	left: 42%;
	transform: rotate(38deg);
	animation-delay: 180ms;
	animation-duration: 1168ms;
  }
  
  .confetti-piece:nth-child(7) {
	left: 49%;
	transform: rotate(11deg);
	animation-delay: 395ms;
	animation-duration: 1200ms;
  }
  
  .confetti-piece:nth-child(8) {
	left: 56%;
	transform: rotate(49deg);
	animation-delay: 14ms;
	animation-duration: 1887ms;
  }
  
  .confetti-piece:nth-child(9) {
	left: 63%;
	transform: rotate(-72deg);
	animation-delay: 149ms;
	animation-duration: 1805ms;
  }
  
  .confetti-piece:nth-child(10) {
	left: 70%;
	transform: rotate(10deg);
	animation-delay: 351ms;
	animation-duration: 2059ms;
  }
  
  .confetti-piece:nth-child(11) {
	left: 77%;
	transform: rotate(4deg);
	animation-delay: 307ms;
	animation-duration: 1132ms;
  }
  
  .confetti-piece:nth-child(12) {
	left: 84%;
	transform: rotate(42deg);
	animation-delay: 464ms;
	animation-duration: 1776ms;
  }
  
  .confetti-piece:nth-child(13) {
	left: 91%;
	transform: rotate(-72deg);
	animation-delay: 429ms;
	animation-duration: 1818ms;
  }
  
  .confetti-piece:nth-child(14) {
	left: 94%;
	transform: rotate(-72deg);
	animation-delay: 429ms;
	animation-duration: 818ms;
  }
  
  .confetti-piece:nth-child(15) {
	left: 96%;
	transform: rotate(-72deg);
	animation-delay: 429ms;
	animation-duration: 2818ms;
  }
  
  .confetti-piece:nth-child(16) {
	left: 98%;
	transform: rotate(-72deg);
	animation-delay: 429ms;
	animation-duration: 2818ms;
  }
  
  .confetti-piece:nth-child(17) {
	left: 50%;
	transform: rotate(-72deg);
	animation-delay: 429ms;
	animation-duration: 2818ms;
  }
  
  .confetti-piece:nth-child(18) {
	left: 60%;
	transform: rotate(-72deg);
	animation-delay: 429ms;
	animation-duration: 1818ms;
  }
  
  .confetti-piece:nth-child(odd) {
	background-color: hsl(0, 100%, 67%);
  }
  
  .confetti-piece:nth-child(even) {
	z-index: 1;
  }
  
  .confetti-piece:nth-child(4n) {
	width: 6px;
	height: 14px;
	animation-duration: 4000ms;
	background-color: #c33764;
  }
  
  .confetti-piece:nth-child(5n) {
	width: 3px;
	height: 10px;
	animation-duration: 4000ms;
	background-color: #b06ab3;
  }
  
  .confetti-piece:nth-child(3n) {
	width: 4px;
	height: 12px;
	animation-duration: 2500ms;
	animation-delay: 3000ms;
	background-color: #dd2476;
  }
  
  .confetti-piece:nth-child(3n-7) {
	background-color: hsl(166, 100%, 37%);
  }
  
  @keyframes makeItRain {
	from {
	  opacity: 0;
	}
  
	50% {
	  opacity: 1;
	}
	
	to {
	  transform: translateY(250px);
	}
  }

  /*--------------------------------------------------------------
# Downlode Section
--------------------------------------------------------------*/

.download {
    display: flex;
    align-items: center;
    background-color: #fbdac7;
    color: #0e0e0e;
    height: 50px !important;
}
.date{
	font-size: 16px;
    color: #B82828;
	gap: 8px;
	display: flex;
	align-items: baseline;
	padding-top: 15px;
}

.main_img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    background-size: cover;
    object-fit: cover;
}

.list-group-item h4 {
    -webkit-column-span: all;
    margin-bottom: 10px;
    margin-top: 10px;
    color: black;
    font-size: 24px;
    line-height: normal;
}