@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


/*
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

*/

/*top section*/

.top-sec {
  background: #4775A3;
    padding: 14px;
}

.email-contact {
    display: flex;
    justify-content: space-between;
    margin-left: 32px;
    margin-right: 33px;
	align-items: center;
}
.email-sec span{
	margin-left:20px;
}
.email-sec span a{
	text-decoration:none;
	color:#fff;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
}
.email-sec span a i{
	margin-right:10px;
	/* color:#ff0046; */
  color: white;
}

.social-icons a{
	text-decoration:none;
	display:inline-block;
	width:40px;
	height:40px;
	/* border:1px solid black; */
	border-radius:50%;
	text-align:center;
	line-height:40px;
	color:#ff0046;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	margin:0px 5px;
	background:#fff;
}
.social-icons a i {
  color: black;
}

/*end top section*/

/*navbar start*/

.mynav{
	background: yellow;
	box-shadow: 0 2px 2px #a89a9ad1;
}
.nav-logo img{
	height:100px;
}
.nav-item .nav-link{
	text-transform:capitalize;
	font-size:19px;
	color:black;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	margin:0px 6px;
	padding:41px 8px;
}

.nav-btn a{
	text-decoration:none;
	border:2px solid  #ff0046;
	padding: 11px 10px;
}
.nav-btn .first{
	margin-right:10px;
	color:#fff;
	font-size:18px;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	position:relative;
	z-index:1;
	text-transform:capitalize;
	transition:0.4s;
}
.nav-btn .first:hover{
	color:black;
}
.nav-btn .first:before{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	background:#ff0046;
	top:0px;
	left:0;
	z-index:-1;
	transition:0.4s;
}
.nav-btn .first:hover:before{
	width:0;
}
.nav-btn .second{
	color:black;
	font-size:18px;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	text-transform:capitalize;
	position:relative;
	z-index:1;
	transition:0.4s;
	display:none;
}
.nav-btn .second:hover{
	color:#fff;
}
.nav-btn .second:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	background:#ff0046;
	width:100%;
	height:0%;
	z-index:-1;
	transition:0.4s;
}
.nav-btn .second:hover:before{
	height:100%;
}
.dropdown-menu {
    border: 0;
    border-radius: 0;
    border-bottom: 3px solid #ff0046;
    box-shadow: 0px 3px 6px;
}
.dropdown-item{
	padding:1rem 1rem;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	transition:0.4s;
	font-size:14px;
}
.dropdown-item:hover{
	background:#ff0046;
	color:#fff;
}
.dropdown-toggle::after{
	display:none;
}

.dropdown:hover .dropdown-menu{
	animation:slide 0.4s;
}
@keyframes slide{
	0%{
		margin-top:60px;
	}
	100%{
		margin-top:0px;
	}
}
/*end navabr*/


/*home page*/
/* .home {
    height: 79vh;
    position: relative;
}
video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-content {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000070;
	display:flex;
	justify-content:center;
	align-items:center;
} */


.home-1 {
  margin-top: 187px;
}

.home-content-slide{
  width: 100%;
  height: 500px;
  color: white;
}
.home-slide{
  position: relative;

}

.sl-img1{
  width: 100%;
  height: 500px;
  background-image:url(../img/air-baner-img4.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sl-img2{
  width: 100%;
  height: 500px;
  background-image:url(../img/air-baner-img5.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sl-img3{
  width: 100%;
  height: 500px;
  background-image:url(../img/air-baner-img6.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sl-img-dark{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0000003d;
}
.home-txt1{
  margin-top: 205px;
 
}
.home-slide-imgh3{
  color: #55acee;
  font-size: 45px;
  margin-left: 50px;
}
.home-slide p{
  margin-left: 50px;
  color:#55acee;
}
.home-slide-h1{
  width: 50%;
  margin-left: 780px;
}

.slick-prev:before, .slick-next:before {
  font-size: 50px !important;
}
.slick-prev {
  left: 100px !important;
  width: 50px !important;
  height: 50px !important;
  /* background-color: #000000 !important; */
  color: white !important;
  z-index: 99999;
}
.slick-next {
  right: 150px !important;
}

/*slider*/
.home-txt h1{
	color:#fff;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	text-transform:capitalize;
	font-size:50px;
}
.home-txt p{
	color:#fff;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: italic;
	text-transform:capitalize;
	font-size:20px;
}
.h-t h1{
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	text-transform:capitalize;
}
.h-t h1 span{
	color:#ff0046;
}
.h-t p{
	color:grey;
	font-size:22px;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style:italic;
	word-spacing:2px;
}
.img-content p{
	text-transform:capitalize;
	font-size:20px;
	color:#fff;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	text-align:justify;
}
.content-btn a{
	color: #fff;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-transform: capitalize;
    transition: 0.4s;
	border:2px solid #ff0046;
	padding:11px 25px;
	position:relative;
	text-decoration:none;
}
.content-btn a:hover{
	color:black;
}
.content-btn a:before{
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff0046;
    top: 0px;
    left: 0;
    z-index: -1;
    transition: 0.4s;
}
.content-btn a:hover:before{
	width:0%;
}

/*box*/

.one-box {
    background: #2f4c68;
    box-shadow: 0px 0px 2px;
    padding: 10px;
    border-top-left-radius: 46px;
    border-bottom-right-radius: 46px;
	transition:0.4s;
}
.one-box:hover{
	box-shadow:2px 2px 3px black;
}
.one-box h4{
	text-align:center;
}
.one-box h4 a{
	text-transform:capitalize;
	text-align:center;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	text-decoration:none;
	color:#fff;
}
.one-box p{
	color:#dacece;
	font-size:18px;
	font-family: "Poppins", sans-serif;
	font-weight:400;
}

.one-box i{
	font-size:40px;
	color:#ff0046;
}

.txt-bg{
	background: #374b68;
    padding: 20px;
    border-radius: 10px;
}

/*end*/

/*bg banner*/
.bg-banner{
	background-image:url(../img/images/plane.jpg);
	background-size:cover;
	background-position:center;
	object-fit:cover;
	width:100%;
	height:350px;
	position:relative;
	background-attachment:fixed;
}
.overlay-bg{
	width:100%;
	height:350px;
	background:#00000066;
	display:flex;
	justify-content:center;
	align-items:center;
}

/*play btn waves animation*/
.wrapper {
  display: inline-block;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translate(-50%,-50%)
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  background: #ff0046;
  z-index: 999;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.fa-play:before {
  content: "\f04b";
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #ff0046;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
   -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}
        
.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
/*end*/

/*waves txt*/
.course-h h1{
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	text-transform:capitalize;
	text-align:center;
}
.course-h h1 span{
	color:#ff0046;
}
.course-sec{
	background:#fff;
	box-shadow:0px 2px 3px black;
	border-radius:10px;
	padding-bottom:10px;
	overflow:hidden;

}

.waves-content h1{
	color:#fff;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	text-transform:capitalize;
	text-align:center;
	font-size:45px;
}
.waves-content p{
	color:#fff;
	font-size:20px;
	font-family: "Poppins", sans-serif;
	font-weight:400;
	font-style:italic;
	text-align:center;
}
/*end txt*/

/*courses sec start*/

.course-sec:hover .course-sec-img img{
	transform:scale(1.1);
	border-radius:10px;
}
.course-sec-img{
	overflow:hidden;
}
.course-sec-img img{
	border-radius:10px;
	transition:0.4s;
	width:100%;
	height:416px;
}
.course-content h5{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	text-align:center;
	color:grey;
}
.course-content h4{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}
.course-content h4 a{
	text-decoration:none;
	color:black;
}
.course-content h5 a{
	text-decoration:none;
	color:black;
}

/*end*/


/*featrue*/

.featre-h h1{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	text-align:center;
}
.featre-h h1 span{
	color:#ff0046;
}
/*end feature*/
.featrue-box{
	 background: #214d68;
    box-shadow: 0px 3px 6px;
    padding: 10px;
    border-top-left-radius: 46px;
    border-bottom-right-radius: 46px;
	height:250px;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	text-align:center;
	border-top:4px solid #214d68;
	border-bottom:4px solid #214d68;
	transition:0.4s;
}
.featrue-box.study{
	height:355px;
}
.featrue-box:hover{
	box-shadow:4px 6px 6px black;
}
.feature-icon i{
	font-size:40px;
	color:#ff0046;
}
.featrue-box h4{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	text-align:center;
	color:#fff;
}
.featrue-box p{
	color:#dacece;
	font-size:18px;
	font-family: "Poppins", sans-serif;
	font-weight:400;
}
/*footer start*/

.about-sec h4{
	color:#fff;
	font-family: "Lato", sans-serif;
    font-weight: 700;
	text-transform:capitalize;
}
.about-sec p{
	color:#fff;
	font-family: "Poppins", sans-serif;
    font-weight: 300;
	text-transform:capitalize;
	font-size:17px;

}
.about-sec ul li{
	list-style:none;
	line-height:40px;
}
.about-sec ul li a{
	text-decoration:none;
	color:#fff;
	font-family: "Lato", sans-serif;
    font-weight: 400;
	text-transform:capitalize;
	font-size:18px;
}
.myli h4{
	position:relative;
	left:27px;
}
.f-icons span a{
	text-decoration:none;
	color:#fff;
	border:2px solid #264653;
	display:inline-block;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	border-radius:50%;
	margin:0px 5px;
	background:#264653;
}
.location p{
	font-size:18px;
	font-family: "Lato", sans-serif;
    font-weight: 400;
	line-height:40px;
}
.location p a{
	text-decoration:none;
	color:#fff;
}
.location p i{
	margin-right:10px;
	font-size:20px;
	color:#cfdce2;
}
.myli i{
	color:#cfdce2;
	margin-right:10px;
}

.copyright p{
	color:#fff;
	font-family: "Lato", sans-serif;
    font-weight: 400;
	text-transform:capitalize;
	text-align:center;
	font-size:20px;
}
.over{
	overflow:hidden;
}
.custom-row{
	text-align:-webkit-center;
}
.starts-i{
	text-align:left;
}

/*end footer*/

/*about page*/
.about-bg{
	background-image:url(../img/images/about01.jpg);
	width:100%;
	height:350px;
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
  margin-top: 187px;
}
.about-overlay{
	width:100%;
	height:350px;
	background:#00000075;
	display:flex;
	justify-content:center;
	align-items:center;
}
.about-content h4{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	color:#fff;
	text-align:center;
}
.about-content h1{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	color:#fff;
}
.about-img{
	position:relative;
	z-index:1;
}
.about-img:after{
	content: "";
    position: absolute;
    width: 89%;
    height: 80%;
    background: #ff002d;
    top: 40px;
    left: 0;
    z-index: -1;
}
/*.about-img:before{
	content: "";
    position: absolute;
    width: 89%;
    height: 80%;
    background: #ff002d;
    top: 40px;
    left: -26px;
    z-index: -1;
}*/
.about-content-start h4{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	color:#ff002d;
}
.about-content-start h4{
	color:#fff;
}
.about-content-start h1{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	color:#fff;
}
.about-content-start p{
	text-transform:capitalize;
	font-family: "Poppins", sans-serif;
	font-weight:300;
	color:#fff;
	font-size:21px;
	text-align:justify;
}
.st-h h1{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}
.st-h h1 span{
	color:#ff002d;
}
.award-h h1{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}
.award-h h1 span{
	color:#ff002d;
}
.about-img-history{
	position:relative;
}
.about-img-history:after{
	content: "";
    position: absolute;
    width: 100%;
    height: 80%;
    background: #ff002d;
    top: 40px;
    left: 30px;
    z-index: -1;
}
.story-img{
	position:relative;
}
.story-img:after{
	content: "";
    position: absolute;
    width: 89%;
    height: 80%;
    background: #ff002d;
    top: 40px;
    left: -26px;
    z-index: -1;
}
/*end about*/

/*testimonial section*/

/*client*/
.client-bg{
	background-image: url(../img/client-bg.webp);
	width:100%;
	height:auto;
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
	background-attachment:fixed;
}
.dark-overlay{
	width:100%;
	height:auto;
	background:#000000a3;
}
.client-h h2{
	color:#fff;
	font-family: "Lato", sans-serif;
    font-weight: 500;
	word-spacing:6px;
}
.client-h h4{
	color:#fff;
	font-family: "Lato", sans-serif;
    font-weight: 400;
}
.review-sec h4{
	color:#fff;
	font-family: "Lato", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 32px;
    letter-spacing: 3px;
}
.review-sec i{
	font-size:30px;
}
.review-sec h5{
	color:#fff;
	font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 24px;
}
.g-img-sec img {
	height:55px;
}
.img-client-sec span{
	color:#fff;
	font-family: "Lato", sans-serif;
    font-weight: 500;
}
.main-client-box{
	background: #252525;
    padding: 20px 15px;
	width:360px !important;
}
.img-client-sec {
    display: flex;
    align-items: center;
    gap:16px;
	position:relative;
}
.img-client-sec img{
	width:40px;
	height:40px;
}

.second-img-sec img{
	position:absolute;
	right:10px;
	bottom:12px;
}
.content-of-client p{
	color:#fff;
	font-family: "Lato", sans-serif;
    font-weight: 500;
	text-align:justify;
	line-height:30px;
}


/*end testimonnial section*/

/*marquee tag*/

.Marquee {
  width: 100%;
  height: 100px;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.marquee-tag img {
  width: 60px !important;
  height: 60px !important;
}

.Marquee-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-animation: marquee 10s linear infinite running;
  -moz-animation: marquee 10s linear infinite running;
  -o-animation: marquee 10s linear infinite running;
  -ms-animation: marquee 10s linear infinite running;
  animation: marquee 20s linear infinite running;
}

.Marquee-content:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  -ms-animation-play-state: paused;
  animation-play-state: paused;
}

.Marquee-tag {
  width: 200px;
  padding: 15px;
    height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.Marquee-tag:hover {
  background: rgba(255, 255, 255, 0.5);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: pointer;
}

@-moz-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}

@-o-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}

/*end marqueen*/

/*coursese pages start*/

.ariport-bg{
	background-image:url(../img/images/airport-worksp.jpg);
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
	width:100%;
	height:350px;
  margin-top: 187px;
}
.ariport-overlay{
	width:100%;
	height:350px;
	background:#0000005c;
	display:flex;
	justify-content:center;
	align-items:center;
}

.airport-h h1{
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	text-transform:capitalize;
}
.airport-h h1 span{
	color:#ff0046;
}
.content-airport p{
	text-transform:capitalize;
	font-family: "Lato", sans-serif;
    font-weight: 400;
	color:#fff;
	font-size:20px;
	text-align:justify;
}
.content-airport h4{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	color:#fff;
}
.ariport-img-sec{
	position:relative;
	z-index:1;
}
.ariport-img-sec:after{
	content:"";
	position:absolute;
	width:100%;
	height: 82%;
    background: #ff0046;
    top: 33px;
    left: 23px;
	z-index:-1;
}
.ad-txt h4{
	color:#fff;
	font-weight:500;
}
.ad-txt p{
	text-transform:capitalize;
	font-family: "Lato", sans-serif;
    font-weight: 400;
	color:#fff;
	font-size:20px;
	text-align:justify;
}
.next-airport-content-img{
	position:relative;
	z-index:1;
}
.next-airport-content-img:after{
	content:"";
	position:absolute;
	width:100%;
	height: 82%;
	top: 33px;
	left: -23px;
	background:#ff0046;
	z-index:-1;
}
/*course end*/

/*aviation */
.avi-bg{
	background-image:url(../img/images/baner-avaition.jpg);
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
	width:100%;
	height:350px;
  margin-top: 187px;
}
.airport-h p{
	color:grey;
	font-family: "Lato", sans-serif;
    font-weight: 400;
	font-size:20px;
	font-style:italic;
}
/*cabin crew*/

.cabin-bg{
	background-image:url(../img/images/cabin3.jpg);
	width:100%;
	height:350px;
	background-position: center;
	background-size:cover;
	background-repeat:no-repeat;
  margin-top: 187px;
}
.cabin-overlay{
	background:#00000052;
	width:100%;
	height:350px;
	display:flex;
	justify-content:center;
	align-items:center;
}
.cabin-h h1{
	color:#fff;
	font-family: "Lato", sans-serif;
    font-weight: 400;
}
.accordion-button:not(.collapsed){
	color:black !important;
	font-weight:bold !important;
	font-family: "Lato", sans-serif;
	background-color:transparent !important;
}
/*hotel page*/
.hotel-bg{
	background-image:url(../img/images/ht-manage1.jpg);
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
	width:100%;
	height:350px;
  margin-top: 187px;
}
.hotel-overlay{
	background:#0000003b;
	width:100%;
	height:350px;
	display:flex;
	justify-content:center;
	align-items:center;
}
.hotel-h h1{
	text-transform:capitalize;
	font-family: "Lato", sans-serif;
	font-weight:400;
	color:#fff;
}
/*end*/
    /* --------------poppin-class--------------- */
        .air-hostess-bg {
            height: 350px;
            width: 100%;
            background-image: url(../img/ticketcounter-bannerps-02.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            margin-top: 187px;
        }

        .air-hostess-overlay {
            width: 100%;
            height: 350px;
            top: 0;
            left: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.232);
        }

        .air-hostess-content h1 {
            color: white
        }

        .air-hostess-content h1 {
            font-family: "Poppins", sans-serif;
            font-weight: 500;
        }

        .hostess-content p {
            font-weight: 400;
            color: #fff;
            font-size: 20px;
            text-align: justify;
        }

        .contain-airhost-heading h1 span {
            color: #ff0046;
        }

        .contain-airhost-heading p {
            font-size: 17px;
            font-style: italic;
            color: grey;
        }

        .hostess-content-2 p {
            font-weight: 400;
            color: #fff;
            font-size: 20px;
            text-align: justify;
        }

        .airhost-image1 {
            position: relative;
        }

        .airhost-image1:before {
            content: "";
            position: absolute;
            top: 40px;
            right: -17px;
            width: 17px;
            height: 82%;
            background-color: #ff0046;
        }

        .airhost-image2 {
            position: relative;
        }

        .airhost-image2:before {
            content: "";
            position: absolute;
            top: 45px;
            left: -17px;
            width: 17px;
            height: 82%;
            background-color: #ff0046;
        }
/*end*/
/*cursh ship*/
 .cruise-ship-bg {
            height: 350px;
            width: 100%;
            background-image: url(../img/images/cruise1.jpeg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            margin-top: 187px;
           
        }

        .cruise-ship-overlay {
            width: 100%;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgb(0 0 0 / 33%);
        }

        .cruise-ship-content h1 {
            font-size: 40px;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            color: white;
        }

        .cruise-ship-content p {
            font-weight: 400;
            color: #fff;
            font-size: 20px;
            text-align: justify;
        }

        .contain-cruise-ship-heading h1 span {
            color: #ff0046;
        }

        

        .cruiseship-image1 {
            position: relative;
        }

        .cruiseship-image1:before {
            content: "";
            position: absolute;
            top: 40px;
            right: -17px;
            width: 17px;
            height: 82%;
            background-color: #ff0046;
        }
		
/*login*/

.popup-btn{
	
}
.main-btn-rect,
.main-btn-circle{
	
}
.main-btn-rect {
	
}
.main-btn-rect:before, 
.main-btn-rect:after{
  position: absolute;
  content: '';
  top:0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 240, 0.2);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.main-btn-rect:before {
  left: 0;
}
.main-btn-rect:after {
  right: 0;
}
.main-btn-rect:hover:before, 
.main-btn-rect:hover:after{
  width: 50%;
}
.main-btn-circle{
	height: 40px;
	width: 40px;
	-webkit-border-radius: 50%;
	border-radius: 100%;
	line-height: 40px;
  -webkit-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}
.main-btn-circle:hover{   
  -webkit-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  -moz-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
}
.popup{
  position: fixed;
	top: 100%;
  width: 100%;
  height: 100%;
  z-index: 10001;
}
.popup.active{
  top:50px;
  
  transition: background-color .6s ,opacity .6s;
}
.popup .main-btn-rect{
  padding: 10px 100px;
}
.popup .popup-content{
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 568px;
  min-width: 320px;
  margin-top: 150px;
  padding: 25px;
  background-color: #FFFFF0;
  color: #070000;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transition: margin .6s;
  -webkit-transition: margin .6s;
  -moz-transition: margin .6s;
  -o-transition: margin .6s;
}
.popup.active .popup-content{
  margin-top: 0px;
}
.popup-content h6{
  display: table;
  font-size: 16px;
  text-align: center;
  margin: 10px auto;
  font-family: 'Roboto',sans-serif;
  text-transform: uppercase;
  font-weight: 100;  
}
.form-group{
	position: relative;
	width: 90%;
	margin: 0px auto;
}
form#send input, form#send textarea{
	position: relative;
	margin-bottom: 32px;
	width: 100%;
	height: 29px;
	font-family: 'RobotoLight', sans-serif;
	text-indent: 20px;
  background-color: transparent;
	outline: 0;
	border: none;
	border-bottom: 1px solid #070000;
	-webkit-transition: border 0.6s;
	-o-transition: border 0.6s;
	transition: border 0.6s;
}
form#send input:focus,
form#send textarea:focus{
	border-bottom: 1px solid rgb(63, 173, 168); 
}
form#send label{
	position: absolute;
	top: 0;
	line-height: 28px;
	-webkit-transition: color .5s;
	-o-transition: color .5s;
	transition: color .5s;
}
form#send input:focus + label,
form#send textarea:focus + label{
  color: rgb(63, 173, 168);
}
form#send .txt{
	line-height: 22px;
	left: 2px;
}
form#send .main-btn-rect {
	position: relative;
	display: block;
	padding: 12px 80px;
	margin: 0px auto;
	font-size: 14px;
}
form#send .main-btn-rect i {
	margin-right: 5px;
}
.popup .fade-out{
  position: absolute;
  top: -3px;
    right: -1px;
  text-align: center;
  font-size: 15px;
  cursor:pointer;
}
.share-wrap{
	position: absolute;
  display: inline-table;
	top: 67%;
	left: 50%;
	transform: translate(-50%, -50%);
  padding: 15px;
  text-align: center;
}
.share-btn{
  color: #FFFFF0;
  padding: 7px 25px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 100;
  font-size: 14px;
  font-family:'Lobster', sans-serif;
  background-color: rgba(63, 173, 168, .8);
  text-transform: uppercase;
  border-radius: 5px;
  transition: background-color .5s;
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
  -o-transition: background-color .5s;
}
.share-btn:hover{
  color: #FFFFF0;
  text-decoration: none;
  background-color: rgba(63, 173, 168, 1.0);
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
  
}
.resp-sharing-button__link {
  
}
.resp-sharing-button {
  border-radius: 5px;
  transition: 25ms ease-out;
  padding: 6px 9px;
  transition: background-color .5s;
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
  -o-transition: background-color .5s;
}
.resp-sharing-button__icon svg {
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: top
}
.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle
}
.resp-sharing-button__icon,
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none
}
.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}
.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}
.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}
.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}
.resp-sharing-button--linkedin {
  background-color: #0077b5;
  border-color: #0077b5;
}
.resp-sharing-button--linkedin:hover,
.resp-sharing-button--linkedin:active {
  background-color: #046293;
  border-color: #046293;
}
@media only screen and (max-width: 768px){
  h1 {font-size: 25px;}
  h2 {font-size: 14px;}
  form#send .main-btn-rect {padding: 7px 60px; font-size: 14px;}
  .popup-btn{padding: 7px 60px; font-size: 14px;}
}

/*end login*/		

.contact_form .form-control {
    background-color: #fff;
    margin-bottom: 30px;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    color: #1c1a1a;
    font-size: 16px;
    outline: 0 none;
    padding: 10px 25px;
    height: 55px;
    resize: none;
    box-shadow: none !important;
    width: 100%;
}
.form-horizontal{
	padding:20px;
}

/*placement*/
.airtech-placement-bg {
            height: 350px;
            width: 100%;
            background-image: url(../img/placement02photo.jpg);
            background-size: cover;
            background-position: cover;
            background-repeat: no-repeat;
            margin-top: 187px;
        }

        .airtech-placement-overlay {
            width: 100%;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.232);
        }

        .airtech-placement-content h1 {
            font-size: 45px;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            color: #ffffff;
			text-align:center;
        }

        .airtech-placement-content p {
            font-weight: 400;
            color: #fff;
            font-size: 20px;
            text-align: justify;
        }

        .contain-airtech-placement-heading h1 span {
            color: #ff0046;
        }
        .airtech-placement-content2 p {
            font-weight: 400;
            color: #fff;
            font-size: 20px;
            text-align: justify;
        }
.cer-bg{
	background-image:url(../img/cer.jpg);
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
	width:100%;
	height:350px;
  margin-top: 187px;
}
.cer-overlay{
	width:100%;
	height:350px;
	background:#0000008c;
	display:flex;
	justify-content:center;
	align-items:center;
}
.cer-h h1{
	text-transform:capitalize;
	font-family: "Poppins", sans-serif;
    font-weight: 500;
	color:#fff;
}

/*contact page*/
.contact-bg{
	 height: 350px;
            width: 100%;
            background-image: url(../img/call.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            margin-top: 187px;
}
.overlay-contact{
	width:100%;
	height:350px;
	background:#00000000;
	display:flex;
	justify-content:flex-start;
	align-items:center;
	padding-left:15px;
}

/*form*/
.mainform h4{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	color:#fff;
}
.mainform h1{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	color:#fff;
}
.my-inputs input{
	padding:15px;
	width:49%;
	margin-top:10px;
}
.my-inputs ::placeholder{
	color:grey;
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}
.myselect input{
	padding:15px;
	width:49%;
	margin-top:15px;
}
.myselect select{
	padding:15px;
	width:49%;
	margin-top:15px;
}
.myarea textarea{
	margin-top:15px;
	width:100%;
}
.form-btn input[type="submit"]{
	border: 2px solid #ff0046;
    margin-top: 20px;
    padding: 10px 40px;
    text-transform: capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	background:#ff0046;
	font-size:20px;
	transition:0.4s;
	color:#ffff;
}
.form-btn input[type="submit"]:hover{
	background:transparent;
}

.mycontainer{
	box-shadow:0px 3px 6px;
	padding:20px;
	background:#006f95;
}
.my-border {
    border: 2px solid #ffc102;
    padding: 20px;
}
.my-content-us {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.my-content-us i{
	display:inline-block;
	width:70px;
	height:70px;
	line-height:70px;
	text-align:center;
	font-size:25px;
	background:#ffc102;
	transition:0.4s;
}
.contact-content h4{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
}
.contact-content span{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}
.my-border:hover .my-content-us i{
	border-radius:50%;
}
.myh h1{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
}
.mylocation iframe{
	width:100%;
	filter: hue-rotate(45deg);
}
.choss-content h1{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
}
.choss-content p{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	text-align:justify;
	color: grey;
    font-size: 18px;
}


/*end contact*/

/*term & condition*/
.term-bg{
	background-image:url(../img/term.webp);
	background-size:cover;
	background-position:center;
	object-fit:cover;
	width:100%;
	height:350px;
}
.term-overlay{
	width:100%;
	height:350px;
	background:#00000045;
	display:flex;
	justify-content:center;
	align-items:center;
}
.term-h h1{
	color:#fff;
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size:45px;
}
.about-text p {
    font-size: 19px;
    line-height: 1.7;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	text-align:justify;
}
.condition-h h3{
	text-transform:capitalize;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}
/*fied button*/
.call-buton .cc-calto-action-ripple {
	z-index: 99999;
	position: fixed;
	right: 2rem;
	bottom: 8rem;
	background: #ff002d;
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; }
	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 2.2rem; }
	.call-buton .cc-calto-action-ripple:hover i {
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg); }
  
  @-webkit-keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }
  
  @keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }

	span.num{
		position: absolute;
    color: #ec8b00;
	font-weight:400;
    left: -30%;
    bottom: -70%;
	font-size: 21px;
    text-transform: capitalize;
	}
	
/*second eamil animmation button*/
.action-ripple{
	z-index: 99999;
	position: fixed;
	right: 2rem;
	bottom: 17rem;
	background: #ff002d;
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
}	
.action-ripple i{
	 -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 2.2rem;
}
@-webkit-keyframes action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }
  
  @keyframes action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }

	span.email{
		position: absolute;
    color: #ec8b00;
	font-weight:400;
    left: 2%;
    bottom: -82%;
	font-size: 21px;
    text-transform: capitalize;
	}
	

/*second*/
.customSwalBtn{
		background-color: rgb(115, 181, 30);
    border-left-color: rgba(214,130,47,1.00);
    border-right-color: rgba(214,130,47,1.00);
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    margin: 10px 5px 0px 5px;
    padding: 10px 32px;
	}
	.customSwalBtn1{
		background-color: rgb(115, 181, 30);
    border-left-color: rgba(214,130,47,1.00);
    border-right-color: rgba(214,130,47,1.00);
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    margin: 5px 5px 0px 5px;
    padding: 10px 32px;
	}
	.swal2-image {
    max-width: 100%;
    margin: 0.25em auto !important;
}
	.close {
    position: absolute;
    left: 96%;
    top: 13px;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    color: #000000;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    border-radius: 50%;
    /* background-color: #5c5c5c; */
    cursor: pointer;
    text-decoration: none;
}
	input.fip {
		margin:auto;
    width: 80%;
    background: #f5f5f5;
    border: 0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}
	.form-control {
    display: block;
    width: 100%;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #55595c;
    background-color: #f9f9f9;
    background-image: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}
.margin-below{
    margin-bottom: 1.2rem;
}
.form-control:focus {
    border-color: #7743ff;
    box-shadow: inset 0 1px 1px rgba(45, 45, 45, 0.07), 0 0 8px rgba(129, 129, 129, 0.6);
}
.btn2 {
	cursor:pointer;
    width: 80%;
    padding: 12px;
    border: 0;
    background: #3e7fb9;
    font-size: 1.1em;
    color: #fff;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, .4);
    box-shadow: 0px 3px 0px #3e7fb9;
    margin-top: 1.2rem;
    border-radius: .25rem;
}
.btn2:hover {
    color: #fff;
    background: #3e7fb9;
    border-color: #3e7fb9;
}
	.swal2-title {

    color: #3e7fb9 !important;
	}
	#pop-msg{
    font-size: 14px;
    color: red;
    font-weight: 700;
}
	.swal2-container{
		z-index:999999999 !important;
	}
@media(min-width: 325px) and (max-width: 767px) {
  
  .swal2-title {

    font-size: 25px !important;
	}
  input.fip {
		margin:auto;
	  width: 100%;
	}
	.btn2{
		width:100%;
	}
}

.fixedoffer {
	position: fixed;
	width: 200px;
	height: 30px;
	margin: 0;
	padding: 0;
	top: 18%;
	right: -135px;
	z-index: 999;
	border-radius: 10px 0 0 10px;
	overflow: hidden;
	background: #fff;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.fixedoffer .phonenumber {
	display: block;
	font-size: 14px;
	line-height: 16px;
	text-align: left;
	font-weight: 600;
	letter-spacing: .6px;
	text-decoration: none;
	color: #fff;
	margin: 0;
	padding: 0;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.fixedoffer .phonenumber span{
	width: 65px;
	height: 35px;
	float: left;
	background: #3e7fb9;
	font-size: 18px;
	margin: 0 15px 0 0;
	text-align: center;
	line-height: 30px;
	color: #fff;
}
.fixedoffer .phonenumber p{
	margin: 0;
	padding: 7px;
	color: #3e7fb9;
}
.phn{
  
    color: #3e7fb9;
  	font-size: 14px;
	line-height: 16px;
	text-align: left;
	font-weight: 600;
	letter-spacing: .6px;
	text-decoration: none;
}
.fixedoffer .phonenumber span i {
	color: #fff;
	-webkit-animation: flipInY 1.25s infinite;
	-moz-animation: flipInY 1.25s infinite;
	-ms-animation: flipInY 1.25s infinite;
	animation: flipInY 1.25s infinite;
}
/*******/
.fixedcall1 {
	position: fixed;
	width: 180px;
	height: 45px;
	margin: 0;
	padding: 0;
	top: 28%;
	right: -135px;
	z-index: 999;
	border-radius: 10px 0 0 10px;
	overflow: hidden;
	background: #fff;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.fixedcall1 .phonenumber {
	display: block;
	font-size: 14px;
	line-height: 16px;
	text-align: left;
	font-weight: 600;
	letter-spacing: .6px;
	text-decoration: none;
	color: #fff;
	margin: 0;
	padding: 0;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.fixedcall1 .phonenumber span{
	width: 45px;
	height: 45px;
	float: left;
	background: #ff002d;
	font-size: 25px;
	margin: 0 15px 0 0;
	text-align: center;
	line-height: 45px;
	color: #fff;
}
.fixedcall1 .phonenumber p{
	margin: 0;
	padding: 7px;
	color: #3e7fb9;
}
.phn{
  
    color: #3e7fb9;
  	font-size: 14px;
	line-height: 16px;
	text-align: left;
	font-weight: 600;
	letter-spacing: .6px;
	text-decoration: none;
}
.fixedcall1 .phonenumber span i {
	color: #fff;
	-webkit-animation: flipInY 1.25s infinite;
	-moz-animation: flipInY 1.25s infinite;
	-ms-animation: flipInY 1.25s infinite;
	animation: flipInY 1.25s infinite;
}

.fixedcall {
	position: fixed;
	width: 196px;
    height: 57px;
	margin: 0;
	padding: 0;
	top: 48%;
	right: -135px;
	z-index: 999;
	border-radius: 10px 0 0 10px;
	overflow: hidden;
	background: #fff;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.fixedcall a {
	display: block;
    font-size: 14px;
    line-height: 16px;
    text-align: left;
    font-weight: 600;
    letter-spacing: .6px;
    text-decoration: none;
    color: #fff;
    margin: 0;
    padding: 0;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.fixedcall a span{
	width: 60px;
    height: 60px;
    float: left;
    background: #ff002d;
    font-size: 25px;
    margin: 0 15px 0 0;
    text-align: center;
    line-height: 45px;
    color: #fff;
}
.phonenumber span i {
    font-size: 38px;
    line-height: 55px;
}
.fixedcall a p{
    margin: 0;
    padding: 7px;
    color: #fff;
    background: #a41e24;
    font-size: 18px;
    line-height: 24px;
}

.fixedcall a svg {
	color: #fff;
	-webkit-animation: tada 1.25s infinite;
	-moz-animation: tada 1.25s infinite;
	-ms-animation: tada 1.25s infinite;
	animation: tada 1.25s infinite;
}
.fixedwhatapp {
	position: fixed;
    width: 196px;
    height: 57px;
    margin: 0;
    padding: 0;
    top: 60%;
    right: -135px;
    z-index: 999;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    background: #a41e24;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.fixedwhatapp a {
	display: block;
    font-size: 14px;
    line-height: 16px;
    text-align: left;
    font-weight: 600;
    letter-spacing: .6px;
    text-decoration: none;
    color: #fff;
    margin: 0;
    padding: 0;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.fixedwhatapp a span{
	width: 60px;
    height: 60px;
    float: left;
    background: #ff002d;
    font-size: 25px;
    margin: 0 15px 0 0;
    text-align: center;
    line-height: 45px;
    color: #fff;
}
.phonenumber span i {
    font-size: 38px;
    line-height: 55px;
}
.fixedwhatapp a p{
	margin: 0;
    padding: 7px;
    color: #fff;
    line-height: 44px;
    text-transform: capitalize;
    font-size: 21px;
}
.fixedwhatapp a svg {
	color: #fff;
	-webkit-animation: flipInY 1.25s infinite;
	-moz-animation: flipInY 1.25s infinite;
	-ms-animation: flipInY 1.25s infinite;
	animation: flipInY 1.25s infinite;
}
.fixedwhatapp:hover {
	right: 0;
}
@-webkit-keyframes tada {
 0% {
 -webkit-transform: scale(1);
 transform: scale(1);
}
 10%, 20% {
 -webkit-transform: scale(0.9) rotate(-3deg);
 transform: scale(0.9) rotate(-3deg);
}
 30%, 50%, 70%, 90% {
 -webkit-transform: scale(1.1) rotate(3deg);
 transform: scale(1.1) rotate(3deg);
}
 40%, 60%, 80% {
 -webkit-transform: scale(1.1) rotate(-3deg);
 transform: scale(1.1) rotate(-3deg);
}
 100% {
 -webkit-transform: scale(1) rotate(0);
 transform: scale(1) rotate(0);
}
}
 @keyframes tada {
 0% {
 -webkit-transform: scale(1);
 -ms-transform: scale(1);
 transform: scale(1);
}
 10%, 20% {
 -webkit-transform: scale(0.9) rotate(-3deg);
 -ms-transform: scale(0.9) rotate(-3deg);
 transform: scale(0.9) rotate(-3deg);
}
 30%, 50%, 70%, 90% {
 -webkit-transform: scale(1.1) rotate(3deg);
 -ms-transform: scale(1.1) rotate(3deg);
 transform: scale(1.1) rotate(3deg);
}
 40%, 60%, 80% {
 -webkit-transform: scale(1.1) rotate(-3deg);
 -ms-transform: scale(1.1) rotate(-3deg);
 transform: scale(1.1) rotate(-3deg);
}
 100% {
 -webkit-transform: scale(1) rotate(0);
 -ms-transform: scale(1) rotate(0);
 transform: scale(1) rotate(0);
}
}
.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}
.fixedcall:hover {
	right: 0;
}
.fixedcall1:hover {
	right: 0;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
/* ------------nav-bar-fix------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff; /* Adjust background color as needed */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for a raised effect */
}

/* Adjust top section styles */
.top-sec {

    padding: 10px 0;
}

.email-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.email-sec {
    display: flex;
}

.email-sec span {
    margin-right: 20px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    margin-right: 10px;
}
/* -----------------------count-volunt------------------------- */
.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  margin-top: 10px;
}
.frmclr{
  background: #4775a3;
  color: #fff;
}
textarea.form-control {
  margin-left: -14px;
  width: 105%;
}
button.btn-1.ml-5 {
  margin-top: 20px;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  margin-left: 20px;
  background: yellow;
  color: #212529 !important;
}
.volunteer-dark-sub-right h3{
  margin-left: 20px;
  font-size: 40px;
  font-weight: 800;
}
.col-xl-9 p{
  margin-left: 20px;
}

/* ----------------------why-choose-------------------------- */
.need-course{
  background: #006f95;
  color: #fff;
}
.need-ul li{
  list-style: none;
  margin-top: 10px;
}
.need-course-content h5{
  font-weight: 600;
  color:#FFF;
}
.need-course-content h1{
  font-weight: 900;
  color:#FFF;
}
.ml-35{
  margin-left: 35px;
}
/* -------------------------why-choose--------------------- */

/* ---------------------counter----------------------- */
.business-count-list{
  width: 100%;
  height: 300px;
  background-image: url(../img/counter-img1.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.business-count-list-overlay{
  width: 100%;
  height: 300px;
  top: 0;
  left: 0;
  background: #000000c7;

}
.counter{
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  /* margin-top: 40px; */
}
span4{
  font-size: 50px;
  color: #fff;
}
/* span.counter{
  margin-top: 40px;
} */
.count-list p{
  font-size: 25px;
  color: #fff;
}
.cont-35{
  margin-top: 40px;
}
