/*HELPER CLASS*/
.mt-6 {
	margin-top: 6em !important;
}

.mt-10 {
	margin-top: 8em !important;
}

.mb-10 {
	margin-bottom: 8em !important;
}

.color-gray {
	color: #7a7a7a;
}

.weight-700 {
	font-weight: 700;
}

.background-box-gray {
	background-color: #eee;
}

.background-white {
	background-color: #fff;
}

.border-radius-4 {
	border-radius: 4px;
}

.border-radius-8 {
	border-radius: 8px;
}
/*ADDING LINE*/
.line-left, .line-center, .line-beside {
	position: relative;
}

.line-left:after, .line-center:after, .line-beside:after {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	position: absolute;
	bottom: -10px;
	background-color: #222222;
	transition: 0.3s;
	animation: lineUp 0.3s forwards ease-out;
}

.line-left:after {
	left: 0px;
}

.line-center:after {
	left: 50%;
	transform: translateX(-50%);
}

.line-beside {
	color: #222;
}
.line-beside:after {
	top: 50%;
	left: -40px;
	margin-top: -2px;
}


@keyframes lineUp {
	0%   { width: 0px; }
	100% { width: 30px; }
}

/*BUTTON*/
/*Primary Button*/
.primary-btn {
	display: inline-block;
	width: 150px;
    height: 45px;
    line-height: 45px;
	text-transform: uppercase;
	border: 2px solid #222222;
	outline: none;
	background-color: transparent;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
	transition: 0.2s;
}

.primary-btn:hover {
	background-color: #222222;
	color: #fff;
}

.secondary-btn {
	text-transform: uppercase;
	border: none;
	outline: none;
	background-color: transparent;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	cursor: pointer;
	transition: 0.2s;
	position: relative;
}

.secondary-btn:after {
	content: url(./../icons/solutions/triangle-arrow.svg);
	display: block;
	position: absolute;
	top: 0px;
	right: -25px;
	transition: 0.2s;
}

/*INPUT*/

.input {
	border: 1px solid #e1e1e1;
	outline: none;
	height: 50px;
	width: 240px;
	padding-left: 15px;
	padding-right: 15px;
	background-color: #f7f7f7;
	color: #7a7a7a;
}

/*PAGE NUMBER*/
.page-number li{
	width: 44px;
	height: 44px;
	margin-left: 5px;
	cursor: pointer;
}

.page-number li:hover{
	font-weight: 700;
}


.animated-icon svg {
	width: 80px !important;
}
