/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap'); */

* {
	/* font-family: 'Poppins' !important; */

	font-family: "Exo 2", sans-serif;
	box-sizing: border-box;
}

:root {
	--blue:  rgb(29, 29, 119);
	--white: #f1fbff;
	--black: #000;
	--bs-orange: #fd7e14;
}


body {
	background: var(--white);
	height: 100vh !important;
}


.text-base{
    color: var(--base) !important   ;
}
.icon {
	position: absolute;
	width: 10%;
	top: 4% !important;
	right: 2%;
	/* background-color: red; */
	z-index: 1032;

}

.icon-img {
	scale: 0.9;
	animation-delay: 2s;
	animation: rotate 4s linear infinite;
	top: 15vh !important;


}

.first-name {
	color: var(--blue) !important;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

h2 {
	font-weight: 900;
	color: var(--blue);
	text-shadow: 1px 0 var(--black);
}

h4 {
	font-weight: 500;
	color: var(--blue);
	text-shadow: 1px 0 var(--black);
}

#banner {
	width: 100%;
	height: 100vh;
	position: relative;
	background-image: url("../img/banner.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--blue);
	


}


.banner-bottom {
	/* background-color: var(--blue); */
	background: rgba(29,29,119,1.1);
	margin-top: -2vw;
	border-radius: 5px;
	position: relative;



}

.banner-bottom-coloumn {
	padding: 20px;
	text-align: center;

}

.banner-bottom-sup {
	color: #eabd37;
}

.banner-bottom-num {
	font-size: 5vw;
	font-family: "Exo 2", sans-serif;
	color: var(--white);
	margin: 0 auto;

}

.banner-bottom-coloumn-second {
	border-right: 2px solid var(--white);
	border-left: 2px solid var(--white);
}

.banner-bottom-para{
	color: var(--white);
}
.banner-bottom-heading{
	color: var(--white);
	font-weight: bolder;
}
/* .banner-bottom-text {
	color: var(--white) !important;
	position: absolute;
	top: 50%;
	left: 30%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);	
} */

.banner-bottom .banner-btn {
	position: absolute;
	top: 50%;
	right: 10%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


.navbar {
	animation: fadeInDown 2s ease-in-out;
	background-color: rgba(240, 251, 255, .001);
	;
}
#main-nav {
	background: transparent;
	transition: background  550ms ease-in; /*duration of fade transition */
  }
  
  #main-nav.scrolled {
	background: var(--white);
  }

.dropdown-menu {
	background: var(--white);
	border: 2px solid var(--blue);
	animation: fadeAppear.3s ease-in-out;

}

.dropdown-menu[data-bs-popper] {
	margin-top: 1rem;

}

.banner-text {
	height: 70vh;
	margin-top: 2vh;
	position: absolute;
	left: 10%;
	top: 20%;
	font-size: 30px;
}

.banner-text h1 {
	font-size: 3.5vw;
	width: 50%;
	line-height: 8.5vh;
	text-transform: uppercase;
	color: var(--black);
	text-shadow: 1px 0 #eabd37;
	letter-spacing: 2px;
	font-weight: bold;

}

.banner-text h1 .inner-text {
	color: var(--white);
	text-shadow: 1px 0 #eabd37;
	;
}

.banner-text p {
	animation: fadeInLeft 2s ease-in-out;
	font-size: 1vw;
}

.banner-text p.first-para {
	border-left: 4px solid var(--blue);
	padding-left: 1vw;
}

.banner-text p.second-para {
	width: 40%;
	padding-left: 0;
	color: var(--white);
}

.heading-first {
	transform: translateY(0%);
	animation: fadeInDown 1.5s ease-in-out;

}

.banner-image {
	margin-top: 2vh;
	/* opacity: 1; */
	animation: appear 1s ease-in infinite;
}

.banner-btn {
	color: var(--blue) !important;
	background-color: var(--white);
	border: 2px solid #8e9e5f !important;
}

.banner-btn:hover {
	color: var(--white) !important;
	background-color: var(--blue);
}

.btn {
	width: 200px;
	padding: 10px;
	border: 2px solid blue;
	/* border-radius: 25px; */
	color: var(--blue);
	background-color: none;
	transition: 0.3s;
	animation: fadeIn 3s ease-in;
	opacity: 1;
	border-radius: 5px 50px;


}

.btn:hover {
	background-color: var(--blue);
	border-radius: 5px;
	color: var(--white);
}

img.banner-img {
	/*-webkit-animation: mover 2s infinite alternate-reverse;*/
	/*animation: mover 2s infinite alternate-reverse;*/
	filter: drop-shadow(50px 5px 10px #555);

}

@keyframes mover {
	0% {
		transform: translateY(-30px);
		filter: drop-shadow(50px 5px 10px #555);
	}

	100% {
		transform: translateY(0px);
		filter: drop-shadow(5px 5px 10px #555);
	}
}



@keyframes fadeAppear {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

}


@keyframes fadeInDown {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}

	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

@keyframes fadeInLeft {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}

	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		/* transform: translateX(-100%); */
		opacity: 0;
	}

	100% {
		/* transform: translateX(0%); */
		opacity: 1;
	}
}

#about {
	/* background-image: url("../img/world-bg.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;	
	background-color: rgba(255,255,255,0.6);
    background-blend-mode: lighten; */
}

.about-text h2 {
	font-weight: 900;
	color: var(--blue);
	text-shadow: 1px 0 var(--black);
}

.section-padding {
	padding: 100px 0;
}

.carousel-item {
	height: 100vh;
	min-height: 300px;
}

.carousel-caption {
	bottom: 220px;
	z-index: 2;
}

.carousel-caption {
	opacity: 0;
	animation: fadeIn 0.7s ease-in-out 1s forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.carousel-caption h5 {
	font-size: 45px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 25px;
}

.carousel-caption p {
	width: 60%;
	margin: auto;
	font-size: 18px;
	line-height: 1.9;
}

.carousel-inner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1;
}

.navbar .getstarted {
	background: #106eea;
	margin-left: 30px;
	border-radius: 4px;
	font-weight: 400;
	color: var(--white);
	text-decoration: none;
	padding: .5rem 1rem;
	line-height: 2.3;
}

.navbar-nav a {
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 500;
}

.navbar-light .navbar-brand {
	color: var(--black);
	font-size: 25px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
	color: var(--black);
}

.navbar-light .navbar-nav .nav-link {
	color: var(--black);
	/* background-color: #fff; */
	text-decoration: none;
	border-radius: 5px;
	transition: 0.5s;
	font-weight: bold;
	width: 100%;

}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: var(--blue);
	background-color: var(--white);
	font-weight: bolder;

}

.nav-link:hover {
	/* color: #000; */

}

.w-100 {
	height: 100vh;
}

.navbar-toggler {
	padding: 1px 5px;
	font-size: 18px;
	line-height: 0.3;
	background: var(--white);
}

.about-img img {

	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.5);
	width: 100%;



}

.hr {
	width: 100%;
	color: var(--blue);
}

.services .card {
	background-image: url("../img/common2.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.card-body .rounded-circle {
	height: auto;
	width: 50%;
	border: 2px solid var(--black);
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);

}

.card-body-services {
	position: relative;
	min-height: 300px;
	padding: 10px;
}

.card-title-services {
	width: 90%;
	margin: 0 auto;
	height: 70px;
	border-bottom: 2px solid var(--white);
}

.lead-services {
	margin: 0;
	position: absolute;
	top: 40%;
	font-size: 1rem !important;
	left: 0px !important;


}

.card-button-services {
	margin: 0;
	position: absolute;
	top: 90%;
	left: 50%;
	transform: translate(-50%, -50%);

}

.card-body-projects {
	position: relative;
	box-sizing: border-box;
	font-size: 1rem !important;
	overflow: hidden;


}



.card-title-projects {
	height: 55px;
	border-bottom: 2px solid var(--blue);
	font-size: calc(1.3rem);
}

.lead-projects {

	font-size: 1rem !important;
	height: 80px;


}

.card-button-projects {
	margin: 0 auto;


}

#portfolio-child {
	background-image: url(../img/common2.jpg);
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 100px;

	box-sizing: border-box;
}

.portfolio .card {
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-child-text {
	color: var(--white);
}

.img-area {
	scale: 1;
	transition-duration: 1s;
	cursor: pointer;

}

.img-area:hover {
	scale: 1.2;
}

.founder-img img {
	width: 70%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.7);
	border-radius: 50%;
}

/* .team .card {
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
} */
.team .card {
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
	position: relative;
	height: 30vh;
	border-radius: 50px 0 50px 0;
}

.services .card-body i {
	font-size: 50px;
}

.team .card-body i {
	font-size: 20px;
}

.form-row {
	border: 2px solid var(--blue);
}

.footer {
	/* background-image: url("../img/site-footer-bg.png");
background-size: cover;
background-repeat: no-repeat; */
	border-top: 2px solid var(--blue);

}

.footer-first,
.footer-second,
.footer-third {
	/* background-color: var(--black); */
	color: var(--blue);

}

.footer-logo {
	width: 20%;
	scale: 1.5;
}

.top {
	text-align: center;
	font-size: 2rem;
	padding: 1rem;
}

.mid ul li,
.bottom ul li {
	list-style: none;
	text-align: center;
	padding: .2rem;
	cursor: pointer;
}

.mid ul li a {
	text-decoration: none;
	color: var(--blue);
	transition-duration: .5s;

	border-bottom: 2px solid var(--white);
}

.mid ul {
	padding-left: 0px !important;
}

.mid {
	width: 50%;
	margin: 0 auto;
}

.footer-first {
	position: relative;

}

.bottom {
	padding-top: 2rem;
	/* position: relative; */
}

.bottom .icon {
	scale: 2;
	margin-top: 2vh;

}

.bottom li a {
	text-transform: lowercase;
	text-decoration: none;
	transition-duration: .5s;

	border-bottom: 2px solid var(--white);
}

.mid ul li a:hover,
.bottom li a:hover {
	text-shadow: 0 0 1px var(--blue);
	border-bottom: 2px solid var(--blue);
}

.icons {
	width: 100px;
	position: absolute;
	right: 2vw;
	bottom: 2vh;
	background-color: blue;
	position: fixed;
}

.icon-phone img {
	display: none;
	height: 6vh;
	position: absolute;
	right: 2vw;
	bottom: 2vh;
	scale: 2.8;
	cursor: pointer;
}

.icon-wp img {
	height: 6vh;
	position: absolute;
	right: 2vw;
	bottom: 12vh;
	scale: 2;
	cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

	/* .carousel-caption {
		bottom: 370px;
	}

	.carousel-caption p {
		width: 100%;
	}

	.card {
		margin-bottom: 30px;
	} */
	.icon-img {
		display: none;
	}

	.navbar-light .navbar-nav .nav-link {
		text-align: center;
	}

	.section-padding {
		padding-top: 100px;
		padding-bottom: 0;
	}

	.icon-img {
		display: none !important;
	}

	.banner-text p {
		font-size: 16px;
		width: 80% !important;
	}

	.banner-text h1 {
		line-height: 50px;
	}

	.about-img img {
		margin-top: 10vw;
		margin-bottom: 10vw;
	}

	.services .card {
		margin-bottom: 50px;
	}

	.card-body-projects {
		/* position: relative; */
		height: 800px;
	}

	.portfolio .card {
		margin-bottom: 20px;
		box-sizing: border-box;
	}

	.portfolio .card h3 {
		text-align: center !important;
	}

	.card-title-projects {
		top: 550px;
		width: 90%;
	}

	.lead-projects {
		top: 650px;
	}

	.card-button-projects {
		top: 750px;
	}

	.team .text-center {
		margin-bottom: 20px;
	}

	.footer-third .bottom ul {
		padding-left: 0 !important;


	}
}


@media only screen and (max-width: 767px) {

	/* #banner {
		margin-top: 8vh !important;
	} */
	.icon-img {
		display: none;
	}

	.section-padding {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.banner-text {
		height: 500px;
		margin-top: 100px;
	}

	.banner-text {
		position: relative;
		left: 0%;
		top: 0%;
	}

	.dropdown-menu {
		text-align: center;
	}

	.banner-text p {
		font-size: 12px;
	}

	.banner-text p.second-para {
		width: 100%;
		letter-spacing: 1px !important;
	}

	.about-img {
		width: 100%;
		margin: 0 auto;
		margin-bottom: 10vw;
	}

	.about-text {
		padding-top: 50px;
		text-align: center;
	}

	.banner-text h1 {
		font-size: 10vw;
		line-height: 6vh;
		text-align: center;
		width: 100%;
	}

	.btn {
		width: 100%;
	}

	.services .card {
		margin-bottom: 50px;
	}

	.card-body-projects {
		/* position: relative; */
		height: auto;
	}

	.portfolio .card {
		margin-bottom: 20px;
		box-sizing: border-box;
	}

	.portfolio .card h3 {
		text-align: center !important;
	}

	.card-title-projects {
		top: 350px;
		width: 100%;
	}

	.lead-projects {
		top: 450px;
	}

	.card-button-projects {
		top: 580px;
	}

	.team .text-center {
		margin-bottom: 20px;
	}

}