html,
body {
	height: 100%;
}

body {
	background-color: #fff;

}


@font-face {
	font-family: "Montserrat-UltraLight";
	src: url('../font/Montserrat-UltraLight.woff') format('woff'),
		url('../font/Montserrat-UltraLight.otf') format('otf'),
		url('../font/Montserrat-UltraLight.svg') format('svg'),
		url('../font/Montserrat-UltraLight.ttf') format('ttf');
}

@font-face {
	font-family: "Montserrat-Thin";
	src: url('../font/Montserrat-Thin.woff') format('woff'),
		url('../font/Montserrat-Thin.otf') format('otf'),
		url('../font/Montserrat-Thin.svg') format('svg'),
		url('../font/Montserrat-Thin.ttf') format('ttf');
}

@font-face {
	font-family: "Montserrat-Light";
	src: url('../font/Montserrat-Light.woff') format('woff'),
		url('../font/Montserrat-Light.otf') format('otf'),
		url('../font/Montserrat-Light.svg') format('svg'),
		url('../font/Montserrat-Light.ttf') format('ttf');
}

@font-face {
	font-family: "Montserrat-Regular";
	src: url('../font/Montserrat-Regular.woff') format('woff'),
		url('../font/Montserrat-Regular.otf') format('otf'),
		url('../font/Montserrat-Regular.svg') format('svg'),
		url('../font/Montserrat-Regular.ttf') format('ttf');
}

@font-face {
	font-family: "Montserrat-SemiBold";
	src: url('../font/Montserrat-SemiBold.woff') format('woff'),
		url('../font/Montserrat-SemiBold.eot') format('eot'),
		url('../font/Montserrat-SemiBold.otf') format('otf'),
		url('../font/Montserrat-SemiBold.svg') format('svg'),
		url('../font/Montserrat-SemiBold.ttf') format('ttf');
}

@font-face {
	font-family: "Montserrat-Bold";
	src: url('../font/Montserrat-Bold.woff') format('woff'),
		url('../font/Montserrat-Bold.eot') format('eot'),
		url('../font/Montserrat-Bold.otf') format('otf'),
		url('../font/Montserrat-Bold.svg') format('svg'),
		url('../font/Montserrat-Bold.ttf') format('ttf');
}

@font-face {
	font-family: "Montserrat-ExtraBold";
	src: url('../font/Montserrat-ExtraBold.woff') format('woff'),
		url('../font/Montserrat-ExtraBold.eot') format('eot'),
		url('../font/Montserrat-ExtraBold.otf') format('otf'),
		url('../font/Montserrat-ExtraBold.svg') format('svg'),
		url('../font/Montserrat-ExtraBold.ttf') format('ttf');
}

@font-face {
	font-family: "Montserrat-Black";
	src: url('../font/Montserrat-Black.woff') format('woff'),
		url('../font/Montserrat-Black.eot') format('eot'),
		url('../font/Montserrat-Black.otf') format('otf'),
		url('../font/Montserrat-Black.svg') format('svg'),
		url('../font/Montserrat-Black.ttf') format('ttf');
}



* {
	padding: 0;
	margin: 0;
	font-family: "Montserrat-Regular";
	font-size: 16px;
	color: #6F6F6F;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat-Bold";
	margin: 0px 0px 12px;
	line-height: normal;
}

p {
	font-size: 16px;
	line-height: 1.5;
	color: #6F6F6F;
	font-family: "Montserrat-Regular";
	margin-bottom: 15px;
}

a {
	color: #100621;
	font-family: "Montserrat-Regular";
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

a,
a:hover {
	text-decoration: none !important;
}

img {
	max-width: 100%;
}

input,
select,
textarea {
	border: 1px solid #7581ff;
	outline: 0;
	font-size: 18px;
	padding: 8px 14px;
	width: 100%;
	background: #fff;
	border-radius: 12px;
	margin-bottom: 10px;
	transition: 300ms all ease;
}

strong {
	font-family: "Montserrat-Bold";
}

input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #C9C9C9 !important;
}

input::-moz-placeholder {
	/* Firefox 19+ */
	color: #C9C9C9 !important;
}

input:-ms-input-placeholder {
	/* IE 10+ */
	color: #C9C9C9 !important;
}

input:-moz-placeholder {
	/* Firefox 18- */
	color: #C9C9C9 !important;
}


textarea::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #C9C9C9 !important;
}

textarea::-moz-placeholder {
	/* Firefox 19+ */
	color: #C9C9C9 !important;
}

textarea:-ms-input-placeholder {
	/* IE 10+ */
	color: #C9C9C9 !important;
}

textarea:-moz-placeholder {
	/* Firefox 18- */
	color: #C9C9C9 !important;
}




input:focus,
select:focus,
textarea:focus {
	outline: none !important;
	box-shadow: none !important;
	border: 1px solid #EE5013 !important;
}

ol,
ul {
	list-style: none;
	margin-bottom: 0px;
}

.flex-class {
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-flow: wrap;
}

.dark-fill-btn {
	border-radius: 30px;
	background-color: #EE5013;
	padding: 12px 25px;
	font-size: 16px;
	border: 1px solid #EE5013;
	color: #fff;
	font-family: "Montserrat-Regular";
	display: inline-block;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
}

.dark-fill-btn i {
	color: #fff;
}

.dark-fill-btn:hover {
	background-color: #7BB501;
	border: 1px solid #7BB501;
	color: #fff;
}

.dark-fill-btn:hover i {
	color: #fff;
}

.light-btn {
	border-radius: 30px;
	background-color: transparent;
	padding: 12px 25px;
	font-size: 16px;
	border: 1px solid #EE5013;
	color: #EE5013;
	font-family: "Montserrat-Regular";
	display: inline-block;
	font-weight: 600;
	text-transform: uppercase;
}

.light-btn i {
	color: #EE5013;
}

.light-btn:hover {
	background-color: #EE5013;
	border: 1px solid #EE5013;
	color: #fff;
}

.light-btn:hover i {
	color: #fff;
}

.all-heading-row {
	text-align: center;
}

.heading-title {
	font-size: 42px;
	font-family: "Montserrat-UltraLight";
	margin: 0px 0px 10px;
	text-align: center;
	display: inline-block;
	position: relative;
	color: #6F6F6F;
	z-index: 1;
}

.heading-title:before {
	content: none;
	background-color: #F7B501;
	width: 50px;
	height: 50px;
	display: block;
	border-radius: 5px;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: -1;
}

.heading-title span {
	font-size: 42px;
	font-family: "Montserrat-SemiBold";
	color: #6F6F6F;
}

.padding-class {
	padding: 80px 0px;
}

.m-b {
	margin-bottom: 80px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {

	-webkit-text-fill-color: #444444;
	-webkit-box-shadow: 0 0 0px 1000px #0000 inset;
	transition: background-color 5000s ease-in-out 0s;
	caret-color: #fff;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* For Firefox  */

input[type="number"] {
	-moz-appearance: textfield;
}

.container-large {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

.container {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

header {
	background-color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	padding: 25px 0px;
	border-bottom: solid 1px #D9EAF5;
	width: 100%;
}

header.fixed {
	background-color: #ffffff;
	padding: 15px 0px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);
	width: 100%;
	position: fixed;
	top: 0px;
	z-index: 9;
}

.header-bx {
	align-items: center;
	justify-content: space-between;
}

.co-logo {
	width: 215px;
}

.co-logo img {
	height: 60px;
}

.header-bx .number-bx {
	width: 180px;
}

.header-bx .number-bx a {
	max-width: 180px;
	width: 100%;
	align-items: center;
	background-color: #7BB501;
	border-radius: 10px;
	padding: 5px;
	float: right;
}

.header-bx .number-bx a:hover {
	background-color: #EE5013;
}

.header-bx .number-bx a:hover .no-icon {
	background-color: #d9470f;
}

.number-bx .no-icon {
	width: 35px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	background-color: #95D70C;
	border-radius: 5px;
}

.number-bx .no-text {
	width: calc(100% - 35px);
	padding-left: 10px;
	font-family: "Montserrat-SemiBold";
	color: #fff;
	font-size: 14px;
}

#nav-points {
	width: 55%;
	justify-content: center;
}

#nav-points ul {
	text-align: right;
}

#nav-points ul li {
	display: inline-block;
	padding: 0px 8px;
}

#nav-points ul li:first-child {
	padding-left: 0px;
}

#nav-points ul li:last-child {
	padding-right: 0px;
}

#nav-points ul li a {
	font-size: 14px;
	color: #222222;
	font-family: "Montserrat-Regular";
}

#nav-points ul li a:hover {
	color: #EE5013;
}

footer {
	background-color: #F5F5F5;
}

.foot-top-row {
	justify-content: space-between;
	align-items: center;
}

.foot-top-col h6,
.foot-top-col h6 a {
	margin: 0px;
	font-size: 40px;
	color: #756D6D;
	font-family: "Montserrat-UltraLight";
}

.foot-top-col.foot-top-left h6 {
	border-bottom: solid 1px #EE5013;
	padding-bottom: 10px;
}

.social-media li a {
	width: 35px;
	height: 35px;
	background-color: #EE5013;
	margin: 0px 5px;
	display: inline-block;
	text-align: center;
	line-height: 35px;
	border-radius: 30px;
}

.social-media li a i {
	color: #fff;
}

.social-media li a:hover {
	background-color: #7BB501;
}

.foot-center-row {
	padding: 50px 0px;
}

.foot-center-row .heading-title,
.foot-center-row .heading-title span {
	font-size: 36px;
	text-align: center;
	color: #000;
}

.phoenix-bx {
	max-width: 320px;
	width: 100%;
	background-color: #EE5013;
	border-radius: 20px;
	padding: 25px;
	text-align: left;
	margin: 25px auto 0px;
}

.phoenix-bx h5 {
	color: #fff;
	font-family: "Montserrat-Regular";
	font-size: 24px;
}

.phoenix-bx p,
.phoenix-bx p a {
	color: #fff;
}

.phoenix-bx p:last-child {
	margin-bottom: 0px;
}

.foot-col-left {
	width: calc(100% - 420px);
	padding-right: 25px;
}

.foot-col-left p {
	margin-bottom: 10px;
	color: #000000;
}

.f-left-links p storng {
	color: #756D6D;
}

.footer-content {
	margin-top: 25px;
}

.quick-links {
	width: 420px;
	border-top: solid 4px #032548;
	padding-top: 75px;
}

.quick-links ul {
	display: block;
	column-count: 2;
}

.quick-links ul li {
	padding: 4px 0;
	display: block;
	line-height: normal;
}

.quick-links ul li a {
	color: #756D6D;
	font-family: "Montserrat-SemiBold";
}

.quick-links ul li a:hover {
	color: #EE5013;
}


#menu-primary-menu li.current_page_item>a {
	color: #EE5013 !important;
}

#menu-footer-menu li.current_page_item>a {
	color: #EE5013 !important;
	font-weight: bold;
}



@media screen and (max-width: 1366px) {
	.container {
		max-width: 1140px;
	}

	#nav-points ul li a {
		font-size: 12px;
	}

	#nav-points ul li {
		padding: 0px 6px;
	}

	.heading-title,
	.heading-title span {
		font-size: 38px;
	}

	.heading-title:before {
		width: 40px;
		height: 40px;
	}
}


@media screen and (max-width: 1199px) {
	.container-large {
		max-width: 960px;
	}

	.container {
		max-width: 960px;
	}

	.heading-title,
	.heading-title span {
		font-size: 34px;
	}

	.heading-title:before {
		width: 35px;
		height: 35px;
	}

	header {
		padding: 15px 0px;
	}

	#nav-points {
		width: auto;
		order: 3;
	}

	.header-bx .number-bx {
		width: 70%;
	}

	.header-bx .number-bx a {
		max-width: 160px;
	}

	.number-bx .no-text {
		font-size: 14px;
	}

	.mm-ic-box {
		float: right;
		border: 0px;
		display: inline-block;
		text-align: center;
		background-color: transparent;
		width: 26px;
	}

	.mobile-icon span {
		height: 3px;
		margin-bottom: 6px;
		border-radius: 3px;
		background-color: #222;
		display: block;
		-webkit-transition: all .25s ease-in-out;
		-o-transition: all .25s ease-in-out;
		transition: all .25s ease-in-out;
	}

	.mobile-icon span:nth-child(1) {
		width: 13px;
	}

	.mobile-icon span:nth-child(2) {
		width: 26px;
	}

	.mobile-icon span:nth-child(3) {
		width: 13px;
		margin-bottom: 0px;
	}

	.mobile-icon.mobile-icon-open span:nth-child(1) {
		width: 26px;
	}

	.mobile-icon.mobile-icon-open span:nth-child(2) {
		width: 13px;
	}

	.mobile-icon.mobile-icon-open:before {
		content: '';
		background-color: #00000030;
		width: 100%;
		height: 100%;
		display: block;
		position: fixed;
		top: 90px;
		left: 0px;
		z-index: 0;
	}

	.mobile-icon.mobile-icon-open~ul {
		right: 0px;
		-webkit-transition: all .25s ease-in-out;
		-o-transition: all .25s ease-in-out;
		transition: all .25s ease-in-out;
	}

	#nav-points ul {
		position: fixed;
		width: 300px;
		height: 100%;
		right: -300px;
		top: 91px;
		background-color: #fff;
		-webkit-transition: all .25s ease-in-out;
		-o-transition: all .25s ease-in-out;
		transition: all .25s ease-in-out;
		overflow: auto;
		z-index: 9;
	}

	.mobile-icon.mobile-icon-open~ul {
		right: 0px !important;
	}

	#nav-points ul li {
		width: 100%;
		padding: 15px !important;
		text-align: -webkit-auto;
		border-bottom: solid 1px #3636362b;
	}

	#nav-points ul li a {
		font-size: 16px;
	}

	.foot-top-col h6,
	.foot-top-col h6 a {
		font-size: 26px;
	}

	.foot-center-row .heading-title,
	.foot-center-row .heading-title span {
		font-size: 26px;
	}

	.foot-col-left {
		width: calc(100% - 260px);
	}

	.quick-links {
		width: 260px;
	}

	.quick-links ul {
		column-count: 2;
	}

}

@media screen and (max-width: 991px) {
	.container-large {
		max-width: 720px;
	}

	.container {
		max-width: 720px;
	}

	.padding-class {
		padding: 50px 0px;
	}

	.m-b {
		margin-bottom: 50px;
	}

	header,
	header.fixed {
		padding: 10px 0px;
	}

	.co-logo img {
		height: 50px;
	}

	.header-bx .number-bx {
		width: 60%;
	}

	#nav-points ul {
		top: 76px;
	}

	#nav-points ul li {
		padding-left: 25px;
	}

	.heading-title,
	.heading-title span {
		font-size: 30px;
	}

	.heading-title:before {
		width: 30px;
		height: 30px;
		top: -6px;
		right: -5px;
	}

	.foot-top-col h6,
	.foot-top-col h6 a {
		font-size: 20px;
	}

	.foot-center-row .heading-title,
	.foot-center-row .heading-title span {
		font-size: 20px;
	}

	.phoenix-bx {
		padding: 20px;
	}

	.quick-links {
		width: 100%;
		order: 1;
		padding: 40px 0px;
	}

	.quick-links ul {
		column-count: 3;
	}

	.foot-col-left {
		width: calc(100% - 0px);
		padding: 0px;
		order: 2;
	}

	.footer-content {
		border-top: solid 4px #032548;
		padding-top: 30px;
	}

	.mobile-icon.mobile-icon-open:before {
		top: 75px;
		z-index: 2;
	}


}

@media screen and (max-width: 767px) {
	.container-large {
		max-width: 100%;
	}

	.container {
		max-width: 100%;
	}

	.co-logo img {
		height: 40px;
	}

	.header-bx .number-bx {
		display: none;
	}

	#nav-points ul {
		top: 61px;
	}

	.dark-fill-btn {
		padding: 8px 15px;
		font-size: 16px;
	}

	.heading-title,
	.heading-title span {
		font-size: 24px;
	}

	.foot-top-col {
		width: 100%;
		text-align: center;
		padding-bottom: 15px;
	}

	.foot-top-col:last-child {
		padding-bottom: 0px;
	}

	.foot-top-col ul {
		justify-content: center;
	}

	.foot-top-col.foot-top-left h6 {
		display: inline-block;
	}

	.foot-center-row {
		padding: 30px 0px;
	}

	.phoenix-bx {
		padding: 15px;
		margin: 15px auto 0px;
	}

	.phoenix-bx h5 {
		font-size: 20px;
	}

	.phoenix-bx p,
	.phoenix-bx p a {
		margin-bottom: 10px;
	}

	.quick-links {
		padding: 20px 0px;
		border-top: solid 2px #032548;
	}

	.footer-content {
		border-top: solid 2px #032548;
		padding-top: 20px;
		margin-top: 20px;
	}

	.mobile-icon.mobile-icon-open:before {
		top: 60px;
	}


}

@media screen and (max-width: 639px) {
	.quick-links ul {
		column-count: 2;
	}

}




.hero-row input[type="email"],
.hero-row input[type="number"],
.hero-row input[type="password"],
.hero-row input[type="search"],
.hero-row input[type="tel"],
.hero-row input[type="text"],
.hero-row input[type="url"],
.hero-row select,
.hero-row textarea {
    border: 1px solid;
    border-radius: 0;
    padding: 20px 15px;
    max-width: 64%;
    color: #232323;
    background-color: #f7f8f9;
    border-color: #f0f0f0;
    width: 100% !important;
    margin: 0 auto 13px;
    box-shadow: none;
}
