
a,
a:hover,
a:focus,
a:active,
button {
	text-decoration: none;
}


/* ------------------------------------------------------------------ */
/* 1. CLASSES CSS PART START
/* ------------------------------------------------------------------ */

.bg-img {
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.fixed {
	position: fixed;
	left: 0;
	right: 0;
}

.fixed-top {
	top: 0;
}

.fixed-left-corner{
	bottom: 25px;
	padding-left: 25px;
}

.fixed-middle {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
}

.positon-fix-style-1.fixed-middle {
    top: 55%;
}


.fixed-bottom {
	bottom: 0;
}

.body-bg {
	background-image: url('../img/homepage_01_bg.jpg');
}



.text-light {
	font-weight: 300;
}

.primary-title {
	margin-bottom: 20px;
}

.color-white * {
	color: #fff;
}

.white-bg-1 {
	background-color: rgba(255, 255, 255, 0.4);
}

/* ------------------------------------------------------------------ */
/*BUTTON*/
/* ------------------------------------------------------------------ */

.btn {
	text-transform: capitalize;
	font-size: 12px;
	font-weight: 700;
	border: none;
	padding: 13.5px 30px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.btn-purple {
	background-color: #762ecd;
	background-image: linear-gradient(141deg, #a14ae3 0%, #8b3fdd 51%, #762ecd 75%);
	-webkit-box-shadow: 0px 3px 7px 0px rgba(39, 201, 220, 0.2);
	-moz-box-shadow: 0px 3px 7px 0px rgba(39, 201, 220, 0.2);
	box-shadow: 0px 3px 7px 0px rgba(39, 201, 220, 0.2);
	color: #fff;
}

.btn-round {
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.padding-big {
	padding: 50px 0;
}
.pt-70 {
	padding-top: 70px;
}

/* ------------------------------------------------------------------ */
/*BUTTON HOVER*/
/* ------------------------------------------------------------------ */
.btn {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 5px;
}

.btn:before,
.btn:after {
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	z-index: -1;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.btn:before {
	left: 0;
}

.btn:after {
	right: 0;
}

.btn:hover:before,
.btn:hover:after {
	width: 50%;
}

.btn-purple:hover {
	color: #fff;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.btn-purple:before,
.btn-purple:after {
	background-color: #762ecd;
}

/* ------------------------------------------------------------------ */
/*COLOR CSS*/
/* ------------------------------------------------------------------ */
.bg-header-dark{
	background-color: #01000235;
}

.bg-header-dark-home2{
	background-color: #210f4b;
}
.bg-footer{
	background-color: #140c31;
}

/* ------------------------------------------------------------------ */
/* CLASSES CSS PART END
/* ------------------------------------------------------------------ */



/* ------------------------------------------------------------------ */
/*2.HEADER PART CSS START*/
/* ------------------------------------------------------------------ */


/* ------------------------------------------------------------------ */
/*3.MAIN CONTENT CSS START*/
/* ------------------------------------------------------------------ */


/* ------------------------------------------------------------------ */
/*TITLE CSS*/
/* ------------------------------------------------------------------ */
.title{
	text-align: center;
}

.small-title{
	font-size: 17px;
	font-weight: 500;
	color: #f4f1f9;
	position: relative;
	display: inline-block;
	line-height: 1.8;
	margin: 10px 0px;
}


.main-title{
	font-size: 70px;
	font-weight: 700;
	color: #fff;
	text-transform:capitalize;
	position: relative;
	display: block;
}

.about-main-title{
	font-size: 50px;
	font-weight: 700;
	color: #fff;
	position: relative;
	display: block;
	margin-bottom: 30px;
	/*line-height: 55px;*/
}

.contact-small-title{
	font-size: 17px;
	font-weight: 500;
	color: #fff;
	text-transform:capitalize;
	position: relative;
	display: inline-block;
	line-height: 1.8;
	margin-bottom: 30px;
}

.contact-main-title{
	font-size: 50px;
	font-weight: 700;
	color: #fff;
	text-transform:capitalize;
	position: relative;
	display: block;
}


