.wrapper{
	background: #f8f8f8;
	height: 100%;
	width: 100%;
	max-width: 1920px;
	font-family: sans-serif !important;
	line-height: 2em;
	font-size: 1.2em;
}

.navbar{
	border: none !important;
	border-color: transparent !important;
	margin: 0 !important;
	height: auto !important;
	color: #fff !important;
	z-index: 100;
}

.navbar-right{
	margin-right: 0 !important;
}

.navbar-default .navbar-nav > li > a{
    color: black !important;
    font-size: 15px;
    font-family: sans-serif;
}

.navbar-brand{
	opacity: 0;
	font-size: 2.5vw !important;
	font-family: 'Ramabhadra', sans-serif !important;
	background: linear-gradient(to left bottom, rgba(90, 74, 199, 1) 30%, rgba(173, 96, 223, 1) 60%) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
}

.navbar-header > button{
	border: none !important
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
	background-color: transparent !important;
}

.navbar-default .navbar-toggle {
	border-color: transparent !important;
}

.active > a{
	background: transparent !important;
	border-bottom: 2px solid #106eb8;
}

.icon-bar{
	background-color: black !important; 
}

.fcover{
	background-image: url("images/3.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	width: 100%;
	height: 100vh;
}

.gradient{
	height: 100%;
	width: 100%;
	background: linear-gradient(to left bottom, hsla(0, 0%, 0%, 0.07) 45vw, rgba(0, 0, 0, 0.14)45vw);
	position: relative;
}

.comp{
	position: absolute;
	text-align: center;
	width: 100%;
	font-size: 4vw;
	top: 40vh;
}

.comp > h1{
	font-size: 10vw;
	text-shadow: 0.3vw 0.2vw 3px rgba(0, 0, 0, 0.6);
}

.down-arrow{
	text-align: center;
	width: 100%;
	top: 90vh;
	position: absolute;
}

@keyframes down {
	0%{
		transform: translateY(-2px);
	}
	25%{
		transform: translateY(0px);
	}

	50%{
		transform: translateY(2px);
	}

	75%{
		transform: translateY(0px);
	}
	100%{
		transform: translateY(-2px);
	}
}

#arrow{
	font-size: 2em;
	margin-top: -15px;
	-webkit-animation: down 0.8s ease-in-out infinite;
	-moz-animation: down 0.8s ease-in-out infinite;
	-o-animation: down 0.8s ease-in-out infinite;
	animation: down 0.8s ease-in-out infinite;
}

.profile{
	width: 100%;
	background: #fff;
	font-size: 0.9em;
	margin: 10px 0px 10px;
    font-size: 14px;
    font-family: inherit;
}

.heading > h1{
	display: inline-block;
	padding: 20px 0;
	font-size: 7.1vw;
	margin-top: 50px;
}

.image{
	text-align: center;
}

.break{
	height: 60px;
	background: #fff;
}

.back{
	position: relative;
	background: #fff;
	width: 100%;
	height: auto;
	padding: 10px 0;
}

.tilt{
	position: relative;
	z-index: 2;
	background-color: #043f6d;
	color: white;
}

.tilt:before, .tilt:after{
	top: 0;
	right: 0;
	left: 0;
	content: "";
	position: absolute;
	background: inherit;
	z-index: -2;
	height: 100%;
}

.tilt:before{
	border-top: 20px solid rgb(234, 34, 44);
	transform: skewY(1.5deg);
	transform-origin: 130%;
}

.tilt:after{
	border-top: 20px solid rgb(234, 34, 44);
	transform: skewY(-1.5deg);
	transform-origin: 100%;
}

.flexes{
	padding: 20px;
	font-size: 0.8em;
}

.box{
	margin: 20px 0;
	color: black;
	background: #fff;
	padding: 20px;
	flex-basis: 30%;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
	border-radius: 1%;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.3s ease-in-out;
}

.trans{
	opacity: 1 !important;
	transform: translateX(0px) !important;
}

@media(min-width:1000px){
	.flexes{
		display: flex;
		align-items: stretch;
		justify-content: space-between;
		font-size: 16px;
	}

	.down-arrow{
		display: none;
	}

	.profile{
		font-size: 16px;
	}
}

.tab{
	flex: 1;
	padding: 10px;
	margin: 5px 5px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	text-align: center;
	border: 10px solid transparent;
	border-image: linear-gradient(to bottom, rgb(4, 63, 108), rgb(234, 34, 44));  border-image-slice: 1;
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.3s ease-out;
}

.flow{
	opacity: 1;
	transform: translateX(0px);
}

.tab:hover{
	opacity: 0.5;
	border-image: linear-gradient(to bottom, rgb(4, 63, 108), rgb(234, 34, 44));
	border-image-slice: 1;
}

a, a:hover, a:visited{
	text-decoration: none !important;
	color: inherit !important;
	cursor: pointer;
}

#asso{
	color: #fff;
	animation: gradien 20s ease-in-out infinite;
}

@keyframes gradien {
	0%{
		background-color: rgb(4, 63, 107);
	}

	25%{
		background-color: rgb(234, 34, 44);
	}

	50%{
		background-color: rgb(4, 63, 107);
	}

	75%{
		background-color: rgb(234, 34, 44);
	}

	100%{
		background-color: rgb(4, 63, 107);
	}
}

.slide{
	margin: 60px 20px !important;
	text-align: center;
}

.carousel-inner {
	font-size: 2em;
}

.carousel-control.left, .carousel-control.right{
	background-image: none !important;
}

.card{
	margin: 20px 40px;
	flex-basis: 50%;
	background: #fff;
	color: #000;
	text-align: center;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.3s ease-in-out;
}

.card:hover{
	box-shadow: 5px 0px 40px rgba(0, 0, 0, .2);
}

.user{
	display: block;
	text-align: center;
	font-size: 1.2em;
	width: 30%;
	float: left;
	padding: 75px 0;
	background: linear-gradient(to right top, rgb(234, 34, 44), rgb(4, 63, 109));
}

.user > i{
	padding: 20px;
}

.info{
	display: inline-block;
	width: 70%;
	text-align: left;
	background: #fff;
	color: rgb(51, 51, 51);
	float: right;
}

footer{
	background: #f7f7f7;
    color: rgb(17, 74, 102);
    line-height: normal;
    font-size: 13px;
}

.grad-text > h1{
	font-family: 'Ramabhadra', sans-serif !important;
	background: linear-gradient(to right bottom, rgba(90, 74, 199, 1) 35%, rgba(173, 96, 223, 1) 55%) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	padding: 2px 4px;
}

.up{
	text-align: center;
}

.ico{
	font-size: 21px!important;
    padding: 13px 4px;
}

.modal-header{
	border-bottom: 5px solid transparent !important;
    border-image: linear-gradient(to right, rgb(0, 80, 140), rgb(234, 34, 44));
	border-image-slice: 1;
}

.modal-open .modal {
	overflow-y: scroll !important;
}

.close{
	color: rgb(3, 83, 136) !important;
}

.close:focus, .close:hover{
	color: rgb(173, 96, 223) !important;
}

#card1{
	order: 2;
}

#card2{
	order: 1;
}