@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;500;600;700&family=Montserrat:wght@400;600&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
html,body{
	overflow-x: hidden;
}
html{
	scroll-behavior: smooth;
	
	/* Variables For Storing Colors */
	--primary-clr: #208245;
	--primary-medium-clr: #d8e9df;
	--primary-light-clr: #edfaf1;
	--bg-clr-1: #ffffff;
	--dark-heading-clr: #232d39;
	--dark-text-clr: #6c757d;
	--light-heading-clr: #efefef;
	--light-text-clr: #cecece;
}
/*   === Global Styling Starts ===   */
button.btn{
	padding: 10px 18px;
	background-color: var(--primary-clr);
	color: var(--light-heading-clr);
	font-size: 15px;
	border: 1px solid transparent;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s;
}
button.btn:hover{
	background-color: var(--light-heading-clr);
	color: var(--primary-clr);
	border: 1px solid var(--primary-clr);
}
button.btn a{
	text-decoration: none;
	color: var(--light-heading-clr);
}
.section-header h1{
	position: relative;
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: 1px;
	color: var(--dark-heading-clr);
	margin-bottom: 20px;
}
.section-header h1::before{
	position: absolute;
	content: '';
	width: 100px;
	height: 1px;
	left: 0;
	top: calc(100% + 5px);
	background-color: var(--dark-text-clr);
}
.section-header h1::after{
	position: absolute;
	content: '';
	width: 50px;
	height: 3px;
	left: 0;
	top: calc(100% + 4px);
	background-color: var(--primary-clr);
}
.section-header p{
	color: var(--dark-text-clr);
	margin-bottom: 40px;
	line-height: 1.5;
	font-weight: 300;
	max-width: 700px;
}
/*   === Global Styling Ends ===   */
body{
	width: 100%;
	min-height: 100vh;
}
.website-container{
	width: 100%;
	max-width: 1400px;
	min-height: 100vh;
	margin: 0px auto;
	background: url(./images/kilimanjarophoto/pattern-bg-white.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
/*   === Home Section Styling Starts ===   */
section.home{
	position: relative;
	width: 100%;
	height: 60px;
	background-color: var(--primary-light-clr);
}
.home .main-navbar{
	position: absolute;
	width: 100%;
	max-width: 1400px;
	height: 12vh;
	max-height: 80px;
	background-color: var(--primary-clr);
	padding: 0px 8%;
	margin: 0px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
}
.home.active .main-navbar{
	position: fixed;
	top: 0;
	margin: 0px auto;
	box-shadow: 0px 2px 10px rgba(0,0,0,0.25);
	animation: showMenu 0.6s ease-in;
}
@keyframes showMenu{
	from{
		transform: translateY(-100px);
	}
	to{
		transform: translateY(0px);
	}
}
.main-navbar .logo{
	text-decoration: none;
}
.main-navbar .logo img{
	width: 200px;
	height: auto;
}
.main-navbar .nav-list{
	list-style: none;
}
.main-navbar .nav-list li{
	display: inline-block;
	margin: 0px 10px;
}
.main-navbar .nav-list li a{
	position: relative;
	color: var(--light-heading-clr);
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
}
.main-navbar .nav-list li a::after{
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	background-color: var(--light-heading-clr);
	left: 0;
	top: calc(100% + 2px);
	transition: all 0.3s;
	transform: scaleX(0);
}
.main-navbar .nav-list li a:hover::after{
	transform: scaleX(1);
}
.main-navbar .get-started-btn{
	background-color: var(--light-heading-clr);
	color: var(--primary-clr);
}
.main-navbar .get-started-btn:hover{
	background-color: var(--primary-clr);
	color: var(--light-heading-clr);
	border: 1px solid var(--light-heading-clr);
}
.main-navbar .menu-btn{
	min-width: 30px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	display: none;
}
.main-navbar .menu-btn span{
	position: relative;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--light-heading-clr);
	border-radius: 5px;
	transition: all 0.4s;
}
.main-navbar .menu-btn span::before,
.main-navbar .menu-btn span::after{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background-color: var(--light-heading-clr);
	transition: all 0.4s;
}
.main-navbar .menu-btn span::before{
	transform: translateY(-9px);
}
.main-navbar .menu-btn span::after{
	transform: translateY(9px);
}

.states .total-courses .icon{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary-clr);
	margin-right: 7px;
}
.states .total-courses .icon i{
	font-size: 22px;
	color: var(--light-heading-clr);
}
.states .total-courses .desc{
	display: flex;
	flex-direction: column;
}
.states .total-courses .desc span:nth-child(1){
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 2px;
}
.states .total-courses .desc span:nth-child(2){
	font-size: 15px;
	color: var(--dark-text-clr);
}

/*   === Home Section Styling Ends ===   */
.banner{
	width: 100%;
	height: 90vh;
	position: relative;
	overflow: hidden;
}
.banner-slider{
	width: 100%;
	height: 90vh;
	position: absolute;
	top: 0;
}
#slideImg{
	width: 100%;
	height: 90vh;
	animation: zoom 1s linear infinite;
}
/* 
@keyframes zoom{
	0%{
		transform: scale(1.3);
	}
	15%{
		transform: scale(1);
	}
	85%%{
		transform: scale(1);
	}
	100%{
		transform: scale(1.3);
	}
} */
.overlay{
	width: 100%;
	height: 100vh;
	background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7));
	position: absolute;
	top: 0;
}
.banner-content{
	width: 60%;
	margin: 160px auto 0;
	text-align: center;
	color: #fff;
}
.banner-content h1{
	font-size: 40px;
	text-transform: capitalize;
	letter-spacing: 2px;
}
.banner-content h3{
	width: 80%;
	margin: 20px auto 100px;
	line-height: 25px;
}
@media(max-width: 668px){
	.banner-content{
		width: 90%;
		margin: 130px auto 0;
		
	}
	.banner-content h1{
		font-size: 18px;
	}
	.banner-content h3{
		font-size: 16px;
	}
}
/*   === Partners Section Styling Starts ===   */
section.partners{
	width: 100%;
	padding: 30px 8%;
	background-color: var(--primary-medium-clr);
}
.partners h3{
	margin-bottom: 40px;
	color: var(--dark-heading-clr);
	font-size: 22px;
}
.partners .partners-slider .brand-item{
	text-align: center;
	background-color: var(--light-heading-clr);
	padding: 5px;
}
.partners .partners-slider .brand-item img{
	width: 120px;
	display: inline-block;
}
.owl-carousel .owl-nav{
	position: absolute;
	right: 0;
	top: -80px;
}
.owl-carousel .owl-nav button{
	border-radius: 5px !important;
}
.owl-carousel .owl-nav .owl-prev i,
.owl-carousel .owl-nav .owl-next i{
	padding: 8px 14px !important;
	border-radius: 5px;
	font-size: 16px !important;
	background-color: var(--primary-clr) !important;
	color: var(--light-heading-clr);
	border: 1px solid transparent;
	cursor: pointer;
	transition: 0.3s;
}
.owl-carousel .owl-nav .owl-prev i:hover,
.owl-carousel .owl-nav .owl-next i:hover{
	background-color: var(--light-heading-clr) !important;
	color: var(--primary-clr);
	border: 1px solid var(--primary-clr);
}
.owl-carousel .owl-dots{
	margin-top: 20px;
}
.owl-carousel .owl-dots .owl-dot span{
	padding: 4px !important;
}
.owl-carousel .owl-dots .owl-dot.active span{
	background-color: var(--primary-clr) !important;
}
/*   === Partners Section Styling Ends ===   */

/*   === Services Section Styling Starts ===   */
section.services{
	width: 100%;
	padding: 100px 8% 20px;
}
.services .services-contents{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.services-contents .service-box{
	flex-basis: calc(calc(100% / 3) - 2%);
	padding: 25px 20px;
	cursor: pointer;
	transition: all 0.3
	s;
}
.services-contents .service-box:hover{
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}
.service-box .service-icon{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: var(--primary-clr);
	outline: 1px solid var(--primary-medium-clr);
	outline-offset: 10px;
}
.service-box .service-icon i{
	font-size: 24px;
	color: var(--light-heading-clr);
}
.service-box .service-desc{
	margin-top: 25px;
}
.service-box .service-desc h2{
	margin-bottom: 10px;
	color: var(--dark-heading-clr);
	font-size: 22px;
}
.service-box .service-desc p{
	line-height: 1.4;
	color: var(--dark-text-clr);
}
.service-box:nth-child(1) .service-icon{
	background-color: #fef0ef;
	outline-color: #fef0ef;
}
.service-box:nth-child(1) .service-icon i{
	color: #f76250;
}
.service-box:nth-child(2) .service-icon{
	background-color: #e8f9ef;
	outline-color: #e8f9ef;
}
.service-box:nth-child(2) .service-icon i{
	color: #2f9355;
}
.service-box:nth-child(3) .service-icon{
	background-color: #f1f0fe;
	outline-color: #f1f0fe;
}
.service-box:nth-child(3) .service-icon i{
	color: #5a49f3;
}
/*   === Services Section Styling Ends ===   */

/*   === Courses Section Styling Starts ===   */
section.courses{
	width: 100%;
	padding: 100px 8% 20px;
}
.courses .section-header{
	position: relative;
	display: flex;
	justify-content: space-between;
}
.courses .section-header .courses-btn{
	position: absolute;
	right: 0;
	bottom: 40px;
	padding: 10px 26px;
}
.courses .course-contents{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.courses .course-contents .course-card{
	flex-basis: calc(calc(100% / 3) - 1.2%);
	border: 1px solid #eee;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 20px;
	cursor: pointer;
	transition: all 0.3s;
}
.courses .course-contents .course-card:hover{
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}
.course-contents .course-card img{
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 5px;
	transition: 0.3s ease;
}
.course-contents .course-card:hover img{
	transform: scale(1.05);
	overflow: hidden;
}
.course-contents .course-card .category{
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 10px 0px;
}
.course-card .category img{
	position: absolute;
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 50%;
	right: 15px;
	top: -50%;
	outline: 1px solid var(--primary-clr);
	outline-offset: 3px;
}
.course-card .category .subject{
	padding: 8px 10px;
	background-color: var(--primary-light-clr);
	border-radius: 5px;
}
.course-card .category .subject h3{
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-clr);
}
.course-card .course-title{
	font-size: 16px;
	color: var(--dark-heading-clr);
	line-height: 1.5;
}
.course-card .course-desc{
	margin: 20px 0px;
	display: flex;
	justify-content: space-between;
}
.course-card .course-desc span{
	font-size: 14px;
	font-weight: 500;
	color: var(--dark-text-clr);
}
.course-card .course-desc span i{
	color: var(--primary-clr);
}
.course-card .course-ratings{
	padding: 15px 0px 0px;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #ccc;
}
.course-card .course-ratings span{
	color: var(--primary-clr);
	font-size: 18px;
	font-weight: bold;
}
.course-card .course-ratings a{
	background-color:#208245;
	padding: 10px 15px;
	border-radius: 13px;
	text-decoration: none;
}
.course-card .course-ratings a:hover{ 
	background-color: #232d39;
	color: #fff;

}
.course-card .course-ratings a span{
	transition: 0.3s ease;
	color: #fff;
 }
.course-card .course-ratings a:hover span{
	color: #fff;
 }

.course-card .course-ratings span:nth-child(1) i{
	color: gold;
	font-size: 14px;
}
.course-card .course-ratings span b{
	font-size: 24px;
}
/*   === Courses Section Styling Ends ===   */

/*   === Courses Categories Section Styling Starts ===   */
section.categories{
	width: 100%;
	padding: 100px 8% 20px;
}
.categories .categories-contents{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.categories-contents .category-item{
	flex-basis: calc(calc(100% / 4) - 1%);
	background-color: var(--primary-light-clr);
	padding: 25px 15px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s;
}
.categories-contents .category-item:hover{
	box-shadow: 0px 0px 10px rgba(32, 130, 69, 0.2);
	transform: translateY(-3px);
}
.category-item .category-icon{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary-clr);
}
.category-item .category-icon i{
	color: var(--light-heading-clr);
	font-size: 20px;
}
.category-item .category-desc{
	margin-top: 20px;
	text-align: center;
}
.category-item .category-desc h3{
	color: var(--dark-heading-clr);
	font-size: 20px;
	margin-bottom: 10px;
}
.category-item .category-desc p{
	color: var(--dark-text-clr);
	font-size: 15px;
	line-height: 1.4;
}
/*   === Courses Categories Section Styling Ends ===   */

/*   === Teacher Section Styling Starts ===   */
section.instructor{
	width: 100%;
	padding: 100px 8% 20px;
}
.instructor .instructor-container{
	width: 100%;
	padding: 70px 8%;
	background-color: var(--primary-light-clr);
	border-radius: 0px 100px 0px 100px;
}
.instructor-container h2{
	font-size: 24px;
	color: var(--dark-heading-clr);
}
.instructor-container p{
	margin: 20px 0px 35px;
	color: var(--dark-text-clr);
}
/*   === Teacher Section Styling Ends ===   */

/*   === Testimonials Section Styling Starts ===   */
section.testimonials{
	width: 100%;
	padding: 100px 8%;
}
.testimonials .section-header{
	width: 70%;
	max-width: 700px;
}
.testimonials-slider .testimonials-item{
	position: relative;
	padding: 20px 25px;
	background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)) ,url(./images/courses/birds.jpg);
	background-position: center;
	background-size: cover;
	width: 350px;
	height: 350px;
}
.testimonials-item .profile{
	display: flex;
	align-items: center;
}
.testimonials-item .profile .profile-image{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}
.testimonials-item .profile .profile-image img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.testimonials-item .profile .profile-desc{
	display: flex;
	flex-direction: column;
}
.profile .profile-desc span:nth-child(1){
	font-size: 24px;
	font-weight: bold;
	color: var(--primary-clr);
}
.profile .profile-desc span:nth-child(2){
	font-size: 15px;
	color: var(--dark-heading-clr);
}
.testimonials-item > p{
	margin: 15px 0px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--dark-text-clr);
}
.testimonials-item .quote{
	text-align: center;
}
.testimonials-item .quote i{
	font-size: 25px;
	color: var(--dark-text-clr);
	margin-right: 20px;
}
.testimonials-item .ratings{
	margin-top: 20px;
}
.testimonials-item .ratings i{
	font-size: 17px;
	color: gold;
	cursor: pointer;
}
/*   === Testimonials Section Styling Ends ===   */

/*   === Footer Section Styling Starts ===   */
section.footer{
	width: 100%;
	padding: 70px 8% 30px;
	background: url(./images/home/bg_gradient_footer.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.footer .footer-contents{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.footer-contents .footer-col{
	flex-basis: calc(calc(100% / 4) - 20px);
}
.footer-contents .footer-col .col-title{
	min-height: 60px;
	display: flex;
	align-items: flex-end;
	margin-bottom: 30px;
}
.footer-col .col-title h3{
	font-size: 24px;
	color: var(--light-heading-clr);
}
.footer-col .col-contents{
	display: flex;
	flex-direction: column;
}
.footer-col .col-contents.social-media{
	flex-direction: row;
	justify-content: center;
}

.footer-col .col-contents.social-media i{
	font-size: 2rem;
	color: #fff;
}
.footer-col .col-contents.social-media i.fa-square-instagram{
	color: rgb(129, 52, 175);
}
.footer-col .col-contents.social-media i.fa-facebook-f{
	color: rgb(81, 91, 212);
}
.footer-col .col-contents.social-media i:last-child{
	margin-left: 20px;
}
.footer-col-1 .col-title img{
	width: 120px;
}
.footer-col-1 .col-contents p{
	color: var(--light-text-clr);
	font-size: 15px;
	line-height: 1.3;
	margin-bottom: 15px;
}
.footer-col-2 .col-contents .contact-row{
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
}
.footer-col-2 .col-contents .contact-row a{
	text-decoration: none;
}
.footer-col-2 .col-contents .contact-row a span{
	transition: 0.5s ease;
}
.footer-col-2 .col-contents .contact-row a span:hover{
	color: #208245;
}
.footer-col-2 .col-contents .contact-row span{
	color: var(--light-text-clr);
	font-size: 16px;
}
.footer-col-2 .col-contents .contact-row span:nth-child(1){
	color: var(--light-heading-clr);
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 2px;
}
.footer-col-3 .col-contents a{
	text-decoration: none;
	color: var(--light-text-clr);
	margin-bottom: 20px;
	align-self: flex-start;
	transition: all 0.3s;
}
.footer-col-3 .col-contents a:hover{
	letter-spacing: 2px;
	text-decoration: none;
}
.footer-col-4 .col-contents input{
	width: 100%;
	padding: 15px;
	background-color: var(--light-heading-clr);
	color: var(--dark-text-clr);
	border: none;
	border-radius: 5px;
}
.footer-col-4 .col-contents .newsletter-btn{
	background-color: var(--light-heading-clr);
	color: var(--primary-clr);
	margin-top: 20px;
}
.footer-col-4 .col-contents .newsletter-btn:hover{
	background-color: transparent;
	color: var(--light-heading-clr);
	border: 1px solid var(--light-heading-clr);
}
.footer .copy-rights{
	padding: 30px 0px 0px;
	border-top: 1px solid var(--light-text-clr);
	text-align: center;
}
.footer .copy-rights p{
	color: var(--primary-light-clr);
}
.footer .copy-rights p b{
	color: yellow;
}
/*   === Footer Section Styling Ends ===   */





/*   === Media Query Starts ===   */
@media(max-width: 968px){
	/* Home Section */
	.main-navbar .menu-btn{
		display: flex;
		margin-left: 40px;
		z-index: 101;
	}
	.main-navbar .menu-btn.active span,
	.main-navbar .menu-btn.active span::before,
	.main-navbar .menu-btn.active span::after{
		width: 100%;
	}
	.main-navbar .menu-btn.active span::before{
		transform: rotate(45deg) translateY(0px);
	}
	.main-navbar .menu-btn.active span::after{
		transform: rotate(-45deg) translateY(0px);
	}
	.main-navbar .menu-btn.active span{
		background-color: transparent;
	}
	.main-navbar .nav-list{
		position: fixed;
		width: 60%;
		height: 100vh;
		top: 0;
		/*right: 0;*/
		right: -100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		background-color: var(--primary-clr);
		transition: right 0.3s cubic-bezier(.15, .61, .94, .25);
		z-index: 100;
	}
	.main-navbar .nav-list.active{
		right: 0;
	}
	.main-navbar .nav-list li{
		margin: 25px 0px 0px;
		
	}
	.main-navbar .nav-list li:nth-child(1){
		margin-top: 100px;
	}
	.main-navbar .nav-list li a{
		font-size: 14px;
		letter-spacing: 1px;
		padding-bottom: 10px;
	}
	.main-navbar .get-started-btn-container{
		margin-left: auto;
	}
	
	/* Services Section */
	.services-contents .service-box{
		flex-basis: calc(calc(100% / 2) - 2%);
	}
	.services-contents .service-box:not(:last-child){
		margin-bottom: 20px;
	}
	/* Courses Section */
	.courses .course-contents .course-card{
		flex-basis: calc(calc(100% / 2) - 1.2%);
	}
	.courses .section-header{
		flex-direction: column;
	}
	.courses .section-header .courses-btn{
		position: relative;
		align-self: flex-start;
		margin-top: 20px;
	}
	/* Courses Categories Section */
	.categories-contents .category-item{
		flex-basis: calc(calc(100% / 2) - 1%);
		margin-bottom: 15px;
	}
	/* Footer Section */
	.footer-contents .footer-col{
	flex-basis: calc(calc(100% / 2) - 20px);
	}
}

@media(max-width: 768px){
	/* Home Section */
	
	/* Testimonials Section */
	.testimonials .section-header{
		width: 100%;
		margin-bottom: 70px;
	}
}

@media(max-width: 668px){
	/* Partners Section */
	.partners h3{
		margin-right: 150px;
	}
	/* Services Section */
	.services-contents .service-box{
		flex-basis: 100%;
	}
	/* Courses Section */
	.courses .course-contents .course-card{
		flex-basis: 100%;
	}
}

@media(max-width: 568px){
	/* Courses Categories Section */
	.categories-contents .category-item{
		flex-basis: 100%;
	}
	.main-navbar .logo img{
		width: 150px;
		height: auto;
	}
	/* Footer Section */
	.footer-contents .footer-col{
		flex-basis: 100%;
	}
}

@media(max-width: 468px){
	
	.main-navbar .get-started-btn-container{
		margin-left: 5px;
	}

	button.btn{
		padding: 10px 10px;
		font-size: 12px;
		
	}
	/* Partners Section */
	.partners h3{
		margin-right: 0px;
		margin-bottom: 80px;
	}
}
/*   === Media Query Ends ===   */
/* =======------------===safari header start ================*/
.safari-header{
	width: 100%;
	height: 80vh;
	background: linear-gradient( to bottom, rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(./images/courses/antelope.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.safari-header.kilimanjaro{
	background: linear-gradient( to bottom, rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(./images/kilimanjarophoto/bohama-kilimanjarobg.jpg);
	height: 60vh;
}
.safari-header.safari{
	background: linear-gradient( to bottom, rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(./images/safariphoto/safari-bg.jpg);
}
.safari-header h2{
	font-size: 1.5rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
}
/* =================================itinary styling start===================================== */
.itinary-container{
	vertical-align: baseline;
	padding: 20px 6%;
	background-color: #f0f0f0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/* =========================left sidebar========================== */
.left-sidebar{
	flex-basis: 60%;
	align-items: flex-start;
	padding: 20px;
	
}
.it-box{
	margin-top: 15px;
	background: #fff;
	padding: 30px;
}
.it-box h2{
	display: flex;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 17px;
	color: #333;
	text-transform: uppercase;
}
.it-box h2 span{
	margin-right: 20px;
	text-transform: uppercase;
}
.it-box p{
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	color: #333;
	font-family: 'Montserrat', sans-serif; 
	text-align: justify;
 /* font-family: 'Montserrat Alternates', sans-serif;  */
}
/* ========================right sidebar======================================= */
.right-sidebar{
	flex-basis: 37%;
	align-items: flex-start;
	padding: 20px;
	margin-top: 15px;
}
.inclusion-exclusion{
background-color: #fff;
padding: 30px;
}
.inclusion-exclusion h3{
	font-size: 20px;
	text-align: center;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.inclusion-exclusion li{
	list-style: none;
	line-height: 1.5;
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #888;
	margin: 3px 0;
	font-family: 'Montserrat', sans-serif; 
}
.inclusion-exclusion li img{
	width: 25px;
	margin-right: 10px;
}
.exc{
	margin-top: 20px;
}
@media(max-width: 680px){
	.itinary-container{
		flex-direction: column;
		padding: 20px 0%;
	}
	.left-sidebar,.right-sideba{
		flex-basis: 100%;
	}
	.it-box h2{
		font-size: 14px;
	}
	.it-box p{
		font-size: 13px;
	}
}
/* =================================our team design start============================================== */
.team-container{
	width: 100%;
	height: 100%;
	
}
.team-container h1{
	color: #333;
	text-align: center;
	margin: 100px auto 50px;
	text-transform: capitalize;
}
.team-row{
	width: 85%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	row-gap: 10px;
	column-gap: 20px;
}
.team-col{
	flex-basis: 30%;
	flex-wrap: wrap;
}
.team-card{
	width: 350px;
	height: 350px;
	margin: auto;
	perspective: 1000px;
	cursor: pointer;
}
.inner-box{
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	border-radius: 10px;
	transition: transform 1s;
	transform-style: preserve-3d;
}
.card-front,.card-back{
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 10px;
}
.card-front{
	background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
	 url(./images/teamimg/user-1.png);
	background-position: center;
	background-size: cover;
}
.card-front.mwirongos{
	background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
	 url(./images/teamimg/boniface.jpg);
	background-position: center;
	background-size: cover;
}
.card-front.magesa{
	background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
	 url(./images/teamimg/magesa.jpg);
	background-position: center;
	background-size: cover;
}
.card-front.harmo{
	background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
	 url(./images/teamimg/harno.jpg);
	background-position: center;
	background-size: cover;
}
.card-front.marwa{
	background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
	 url(./images/teamimg/marwa.jpg);
	background-position: center;
	background-size: cover;
}
.card-front.mzaile{
	background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
	 url(./images/teamimg/zaile.jpg);
	background-position: center;
	background-size: cover;
}
.card-front span{
	display: inline-block;
	padding: 10px;
	font-size: 16px;
	border-radius: 4px;
	margin-top: 310px;
	font-weight: 600;
	background-color: #fff;
	color: var(--primary-clr);
	transition: transform 1s;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.card-back{
	background:var(--primary-clr);
	transform: rotateX(180deg);
}
.team-card:hover .inner-box{
	transform: rotateX(-180deg);
}
.team-card:hover .span{
	transform: rotateY(100px);
}
.card-back h2{
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
	color: #fff;
	letter-spacing: 3px;
	padding-bottom: 10px;
	border-bottom: 1px solid #fff;
	margin-top: 50px;
	text-transform: uppercase;
}
.card-back p{
	margin-top: 20px;
	padding: 0 20px;
	color: #fff;
	line-height: 1.5;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Montserrat', sans-serif; 
    text-align: justify;
}
/* =============zanzibar styling start =================*/
.mvv-containe{
	max-width: 90%;
	margin: 50px auto 0;
	
  }
  .mvv-containe .mvv-block{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 50px;
	justify-content: space-between;
  }
  .mvv-containe .mvv-block .image{
	flex-basis: 43%;
	overflow: hidden;
  }
  .mvv-containe .mvv-block .image img{
	width: 100%;
	border-radius: 5px;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, .3);
	transition: .5s;
	transform: scale(1);
  }
  .mvv-containe .mvv-block .image:hover img{
	transform: scale(1.05);
  }
  .mvv-containe .mvv-block .zanz-content{
	flex-basis:48%;
	padding: 10px;
	box-sizing: border-box;
	align-self: center;
  }
  .mvv-containe .mvv-block .zanz-content h5{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
	color: #303441;
	text-align: center;
	letter-spacing: 2px;
  }
  .mvv-containe .mvv-block .zanz-content p{
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
	text-align: justify;
  }
  /* nav section style start */
  .nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 55px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    display: flex;
    overflow-x: auto;
}

.nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    font-family: sans-serif;
    font-size: 13px;
    color: #444444;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
}

.nav__link:hover {
    background-color: #eeeeee;
}

.nav__link--active {
    color: #009578;
}

.nav__icon {
    font-size: 24px;
	color: #009578;
}

  /* nav style section end */
  @media only screen and (min-width: 1024px) {
	.mvv-containe .mvv-block:nth-child(odd) .image
	{
	  order: 1;
	}
	.mvv-containe .mvv-block:nth-child(even) .image
	{
	  order: 2;
	}
	.mvv-containe .mvv-block:nth-child(odd) .zanz-content
	{
	  order: 2;
	  padding-left: 30px;
	}
	.mvv-containe .mvv-block:nth-child(even) .zanz-content
	{
	  order: 1;
	  padding-right: 30px;
	}
  }
  @media only screen and (max-width: 600px) {
	.mvv-containe{
	  max-width:95% ;
	  padding: 10px 2%;
	}
	.mvv-containe .mvv-block{
	  flex-direction: column;
	}
	.mvv-containe .mvv-block .zanz-content{
	  width: 100%;
	}
	.mvv-containe .mvv-block .image{
	  width: 100%;
	}
  
  }
  /* ================================contact us section start=================================== */
.contact-body{
	width: 85%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}
.contact-info{
    margin: 2rem 0;
    text-align: center;
    padding: 2rem 0;
}
.contact-info span{
    display: block;
}
.contact-info div{
    margin: 0.8rem 0;
    padding: 1rem;
}
.contact-info div a{
	text-decoration: none;
}
.contact-info div a span{
	color: #333;
	transition: 0.5s;
}
.contact-info div a:hover span{
	color: var(--primary-clr);
}


.contact-info span .fas{
    font-size: 2rem;
    padding-bottom: 0.9rem;
    color: var(--primary-clr);
}
.contact-info div span:nth-child(2){
    font-weight: 500;
    font-size: 1.1rem;
}
.contact-info .text{
    padding-top: 0.4rem;
}
.contact-form{
    padding: 2rem 0;
    border-top: 1px solid #c7c7c7;
}
.contact-form form{
    padding-bottom: 1rem;
}
.form-control{
    width: 100%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.6rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    outline: 0;
}
.form-control:focus{
    box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}
.contact-form form div{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.6rem;
}
.send-btn{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    background: #f7327a;
    border: none;
    border-radius: 5px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
}
.send-btn:hover{
    opacity: 0.8;
}
.contact-form > div img{
    width: 85%;
}
.contact-form > div{
    margin: 0 auto;
    text-align: center;
}

.social-links{
    display: flex;
    justify-content: center;
}
.social-links a{
    text-decoration: none;
    width: 40px;
    height: 40px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.4rem;
    transition: all 0.4s ease;
}
.social-links a:hover{
    color: #f7327a;
    border-color: #f7327a;
}

@media screen and (min-width: 768px){
    .contact-bg .text{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-info{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 992px){
    .contact-bg .text{
        width: 50%;
    }
    .contact-form{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media screen and (min-width: 1200px){
    .contact-info{
        grid-template-columns: repeat(4, 1fr);
    }
}