/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.23, autoprefixer: v9.7.3) */

@-webkit-keyframes showPopup {
  0% {opacity: 0;display: block;}
  100% {opacity: 1;display: none; }
}
@keyframes showPopup {
  0% {opacity: 0;}
  100% {opacity: 1;display: none; }
}

@-webkit-keyframes slidePopup {
  0% {opacity: 0;display: block;}
  100% {opacity: 1;display: none; }
}
@keyframes slidePopup {
  0% {opacity: 0;display: block;transform: translateY(0);}
  100% {opacity: 1;display: none; transform: translateY(0);}
}


*
{
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin: 0;
	/*font-family: Roboto;*/
	font-family: 'Sintony';
	/*font-family: 'Barlow';*/
	/*font-family: 'Overpass';*/
}

html
{
	margin: 0;
	max-width: 100%;
}
body
{
	margin: 0;
	padding: 0;
	background-color: #000;
	max-width: 100%;
}
section
{
	max-width: 100%;
	padding: 100px 10%;
}

.dark-section
{
	background-color: #000!important;
}

a
{
	text-decoration: none;
}

h1,h2,h3,h4,h5
{
	color: #171c3a;
	font-weight: 500;
}
label
{
	font-size: .95em;
	font-weight: 400;
	color: #999;
	text-transform:capitalize;
	display: block;
	margin-bottom: 5px;
}
input
{
	border: 0;
	border-bottom: 1.2px solid #cdcdcd;
	padding: 10px 10px;
	font-size: .95em;
	transition: all 1s ease-in-out;
	color: #cdcdcd;
	background-color: transparent;
	width: 100%;
}
input:active,input:focus
{
	outline: #171c3a;
	border-bottom: 1.2px solid #55a2ff;
}

input[type=submit]:active,input[type=submit]:focus
{
	outline: #171c3a;
	border: 1.2px solid #55a2ff;
}

.btn-disabled
{
	cursor: not-allowed!important;
}

textarea
{
	resize: none;
	height: 150px;
	padding: 20px;
	font-size: .95em;
	width: 100%;
	border-radius: 10px;
	border: 0;
	border: 1.2px solid #cdcdcd;
	color: #cdcdcd;
	background-color: transparent;
}

textarea:active,textarea:focus
{
	outline: none;
	border: 1.2px solid #55a2ff;
}

ul li
{
	line-height: 35px;
}

.primary-button
{
	padding: 20px;
	background-color: transparent;
	color: #cdcdcd;
	position: relative;
	font-size: 1em;
	letter-spacing: -.1px;
	font-weight: 600;
	text-transform: capitalize;
	border: 2px solid #cdcdcd;
	cursor: pointer;
	border-radius: 40px;
	padding-right: 60px;
}

.primary-button:after
{
	content: url('../images/right-arrow.svg');
	position: absolute;
	height: 20px;
	width: 20px;
	top: 17px;
	right: 20px;
}

.input-group
{
	padding: 20px 0;
	margin: 20px 0;
	position: relative;
}

.float-label
{
	position: absolute;
	top: 30px;
	font-size: .95em;
	transition: all .3s ease-in-out;
	left: 10px;
}

.float-label-active
{
	top: 0;
	left: 0;
	font-size: 1em;
	color: #55a2ff;
	font-weight: 500!important;
}

.text-center
{
	text-align: center!important;
}

.white-text
{
	color:#cdcdcd!important;
}

.sm-text
{
	font-size: .75em!important;
}

.light-weight
{
	font-weight: 400;
}

#menu
{
	display: block;
	padding: 0 10%;
	display: flex;
	transition: all .5s ease-in-out;
}

.white-menu
{
	background-color: #000!important;
	/*background-image: linear-gradient(170deg, rgb(15, 58, 175) 0%, rgb(107, 84, 254) 100%);*/
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.transparent-menu
{
	background-color: transparent;
	box-shadow: 0 0 6px rgba(43, 43, 43, 0);
}

#mob-menu
{
	display: none;
	/*border-bottom: 1px solid rgba();*/
	/*box-shadow: 0 0 6px rgba(43, 43, 43, 0.15);*/
	padding: 15px 10%;
	background-color: #;
	transition: all .5s ease-in;
	justify-content: space-between;
}

#mob-menu-content
{
	display: none;
}

nav
{	
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	
}

nav .menu-list a
{
	color: #fff;
	font-size: .89em;
	padding: 40px 30px;
	display: inline-block;
	font-weight: 500;
	text-decoration:none;
}

.sub-menu-header-container
{
	display: inline-block;
	position: relative;
}

.sub-menu-container
{
	position: absolute;
	top: 100%;
	left: 0;
	border-radius: 2px;
	border: 1px solid rgba(255,255,255,0.15);
	border-top: 0;
	width: 250px;
	background-color: #000;
	display: none;
}

.sub-menu-container-active
{
	display: block!important;
}


.sub-menu-container a
{
	padding: 16px 20px!important;
	transition: all .3s ease-in-out;
	width: 100%;
}

.sub-menu-container a:hover
{
	background-color: #222;
}




/* Index page headers */

.header
{
	margin-bottom: 50px;
}

.header h2
{
	font-size: 1.05em;
	font-weight: 500;
	letter-spacing: -.15px;
	color: #55a2ff;
}

.header h3
{
	font-size: 1.6em;
	font-weight: 500;
	color: #cdcdcd;
	margin-top: 10px!important;
	line-height: 45px;
	max-width: 50%;
	letter-spacing: -.5px;
}


/* Other page headers */




.section-header
{
	margin-bottom: 50px;
}

.section-header h1
{
	font-size: 1.05em;
	font-weight: 700;
	letter-spacing: -.15px;
	color: #55a2ff;
}

.section-header h2
{
	font-size: 1.6em;
	font-weight: 700;
	color: #cdcdcd;
	margin-top: 10px!important;
	line-height: 45px;
	max-width: 50%;
	letter-spacing: -.5px;
}




.header-center
{
	text-align: center!important;
}

.header-center h2
{
	max-width: 60%;
	margin: auto;
}



/* Landing section */
#landing-container
{
	width: 100%;
	padding: 0 0!important;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

#header-slider
{
	width: 100%;
	min-height:500px; 
	background-size: cover;
	background-position: center;
	margin: auto;
	position: relative;
}

.header-slider-image
{
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	display: none;
	transition: all 1s ease-in-out;
	-webkit-animation: showPopup .5s ease-in;
          animation: showPopup .5s ease-in;
}

.header-slider-image-active
{
	/*opacity: 1!important;*/
	transition: all 1s ease-in-out;
	display: block!important;
	-webkit-animation: showPopup .5s ease-in forwards;
          animation: showPopup .5s ease-in forwards;
}

.slide
{
	width: 100%;
	padding: 0 10%;
	margin: auto;
	margin-top: 200px;
	min-height: 500px;
	display: none;
	opacity: 0;
	background-position: center;
	background-size: cover;
	transform: translateY(-50px);
}

.slide-active
{
	position: relative;
	z-index: 9;
	-webkit-animation: slidePopup .5s ease-in  forwards;
          animation: slidePopup .5s ease-in  forwards;
	display: block!important;
}


.slide-arrow
{
	width: 50px;
	padding: 10px 15px;
	cursor: pointer;
	transition: all .3s ease-in-out;
}
/*
.slide-arrow:hover
{
	background-color: #fff;
	color: #000;
}
*/

.slide-arrow-left
{
	transform: rotateZ(180deg);
}

#landing-overlay
{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index:0;
	left: 0;
	background: linear-gradient(rgba(0,0,0,0.5), #000 ); 
}

.cta-sub-header
{
	text-transform:;
	color: #fff;
	font-size: .95em;
}

.cta-header
{
	font-size: 2.4em;
	font-weight: 700;
	color: #2d77e2;
	margin-top: 10px;
	max-width: 50%;
	border-radius: 2px;
	color: #fff;
	z-index: 9;
	line-height: 55px;
	letter-spacing: -.1px;
}

.cta-btn-container
{
	margin: auto;
	margin-top: 70px;
	z-index: 9;
}

.cta-btn-container a
{
	text-decoration: none;
	color: #fff;
	border-radius: 40px;
	background-color: transparent;
	padding: 18px 35px;
	font-weight: 500;
	border: 2px solid #fff;
	letter-spacing: .1px;
}

.cta-btn-container a i
{
	padding-left: 5px;
}


/* Service section */


#service-container
{
	position: relative;
	z-index: 0;
}

#service-grid
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: 100%;
}

.service-block
{
	flex: 1 0 25%;
	margin: 1%;
	position: relative;
	padding: 80px 0;
	border-radius: 10px;
	-webkit-transition: all  .3s ease-in-out;
	-o-transition: all  .5s ease-in-out;
	transition: all  .5s ease-in-out;
	position: relative;
	text-align: center;
	background-color: #242424;
	overflow: hidden;
}


.service-block div:after
{
	position: absolute;
	content: url('../images/right-arrow.svg');
	right: 30px;
	bottom: 30px;
	height: 20px;
	width: 20px;
}



.service-block img
{
	height: 120px;
}

.service-block
{
}

.service-block h4
{
	margin-top:10px;
	font-size:1.05em;
	color: #f2f2f2;
	font-weight: 400;
	line-height: 20px;
}
.service-block p
{
	margin-top:5px;
	display: none;
	font-size: .875em;
	font-weight: 400;
	color: #a09e99;
	color: #888;
	line-height: 25px;
}

/* Reason section */

#reason-container
{
	background-color: ;
}

#reason-grid
{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.reason
{
	flex:1 0 45%;
	/*width: 45%;*/
	background-color: #fff;
	background-color: #242424;
	border-radius: 10px;
	width: 100%;
	margin: 20px 2%;
	padding: 40px 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*justify-content: space-around;*/
	-ms-flex-preferred-size: 1 auto;
}

.reason img
{
	height: 60px;
	padding-right: 40px;
}

.reason h4
{
	margin-top:10px;
	font-size: 1em;
	color: #eeeeee;
	font-weight: 500;
	line-height: 20px;
}

.reason p
{
	margin-top:5px;
	font-size: .85em;
	color: #cdcdcd;
	line-height: 25px;
}

#reason-btn-container
{
	margin: auto;
	margin-top: 50px;
	text-align: center;
}


#reason-btn-container a
{
	/*background-color: #222;*/
	border: 1.2px solid rgba(255,255,255,1);
	text-decoration: none;
	padding: 18px 30px;
	color: #eee;
	border-radius: 40px;
	text-decoration: none;
}


#reason-btn-container img
{
	vertical-align: middle;
}
/* Footer contact */

#footer-contact-container
{
	background-color: #2d77e2;
	background-image: linear-gradient(170deg, rgb(15, 58, 175) 0%, rgb(107, 84, 254) 100%);
	/*background-image: linear-gradient(240deg, rgb(199, 7, 66) 0%, rgb(125, 11, 61) 100%);*/
	min-height: 300px;
	max-width: 80%;
	border-radius: 10px;
	margin: auto;
	margin: 100px auto;
	z-index: 1;
	text-align: center;
	position: relative;
	overflow: hidden;
}

#footer-contact-container img
{
	height: 120%;
	width: auto;
	position: absolute;
	right: 40px;
	z-index: -1;
	top: -10%;
	opacity: .15;
}
#footer-contact-container h2
{
	color: #fff;
	font-weight: 400;
	z-index: 9;
	font-size: 1.6em;
	text-align: center;
}

#footer-contact-container a
{
	border: 1.4px solid #fff;
	color: #fff;
	padding: 15px 30px;
	font-size: 1.1em;
	margin:auto;
	margin-top: 50px;
	z-index: 9;
	font-weight: 400;
	border-radius: 40px;
	display: inline-block;
}

#footer-contact-container a i
{
	padding-left: 15px;
}

/* Footer */
.footer
{
	padding: 0 10%;
	max-width: 100%;
}

.footer h4
{
	font-size: .95em;
	color: #2d77e2;
	margin-bottom: 20px;
	font-weight: 500;
}

.footer a
{
	font-size: .95em;
	color: #999;
	font-weight: 500;
	padding: 2px 0;
	margin: 10px 0;
	display: block;
	width: auto;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.footer a:hover
{
	color: #fff;
}


#footer-grid
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	        	padding: 40px 0;
	padding-top: 60px;
}


#footer-co img
{
	height: 50px;
	width: auto;
}

#footer-co p
{
	font-size: .85em;
	margin: 10px 0;
	font-weight: 500;
}

#footer-social-container
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;

}

#footer-social-container img
{
	height: 25px;
	margin: 0 10px;
}

#footer-quicklink-container
{
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

#footer-quicklink-container div
{
	width: 33.3%
}

#footer-copy-container
{
	border-top: 1px solid #999;
	padding: 40px;
	text-align: center;
}

#footer-copy-container p
{
	color:#eee;
	font-size: .9em;
}


/* Page common styles */

.service-pic div:after
{
	position: absolute;
	content: url('../images/right-arrow.svg');
	right: 30px;
	bottom: 30px;
	height: 20px;
	width: 20px;
}



/* Service page */
.service-section
{
	position: relative;
	padding: 40px 12.5%;
}

.service-section h3
{
	text-decoration: underline;
}

.service-section p
{
	text-align: left;
	font-size: 1.05em;
	line-height: 38px;
	margin: 50px 0;
	color: #cdcdcd;
}



.service-pic
{
	position: relative;
	background-position: center;
}

.service-pic:after
{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index:1;
	left: 0;
	background: linear-gradient(rgba(0,0,0,0.1), #000 ); 
}

.service-text-container
{
	margin: 50px 0;
}


.service-text-container h3
{
	text-align: left;
	font-size: 1.05em;
	line-height: 30px;
	margin-top: 50px;
	color: #cdcdcd;
}

.service-text-container p
{
	text-align: left;
	font-size: 1.05em;
	line-height: 38px;
	margin-top: 50px;
	color: #cdcdcd;
}

.service-pic
{
	height: 400px;
	width: 100%;
	background-size: cover;
}

.service-flex-box-container
{
	margin: 50px 0;
}

.service-flex-box-head
{
	text-decoration: underline;
	font-weight: 500;
	font-size: 1.1em;
	text-align: left;
}

.service-flex-box
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 50px;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	max-width: 100%;
	grid-row-gap: 60px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.service-flex-item
{
	text-align: center;
	margin:40px 20px;
}

.service-flex-item img
{
	height: 60px;
	margin-bottom: 10px;
}

.service-flex-item p
{
	font-size: .9em;
	color: #cdcdcd;
	font-weight: 500;
}

.service-footer-container
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 50px 0;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.service-nav-item p
{
	text-align: left;
	margin-bottom: 0;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 20px;
	letter-spacing: 1px;
}

.service-nav-item a
{
	position: relative;
	text-decoration: none;
	display: block;
	color: #cdcdcd;
	border: 1.2px solid #cdcdcd;
	border-radius: 40px;
	padding: 20px 30px;
	background-color: transparent;
}


/*.service-nav-item a:after
{
	content: '';
	position: absolute;
	left: 50%;
	border-radius: 50%;
	transition: all .3s ease-in-out;
	transform-origin: center;
	height: 0%;
	width: 0%;
	background-color: #cdcdcd;
}

.service-nav-item a:hover:after
{
	height: 100%;
	width: 100%;

}*/

.service-nav-item a i
{
	padding-left: 10px;
}



/* About Page */

.about-ul-container
{
	margin-top: 50px;
}

.about-ul-container ul li
{
	line-height: 30px;
	margin-left: 0;
}



/* Contact page */
#contact-flex
{
	display: flex;
}

#contact-form
{
	width: 50%;
	display: inline-block;
}

#contact-submit
{
	display: inline;
	margin: auto;
	text-align: center;
}

#contact_err
{
	text-align: center;
	top: -30px;
	display: none;
	transition: all .3s ease-in;
	position: absolute;
}

.err_active
{	
	color: #ff4e50!important;
	display: inline-block!important;
	top: -10px!important;
	transition: all .3s ease-in;
}

.info_active
{	
	color: #fff;
	display: inline-block!important;
	top: -10px!important;
	transition: all .3s ease-in;
}

#contact-right-container
{
	display: inline-block;
	width: 50%;
	padding: 40px 80px;
}

.location-container
{
	display: flex;
	margin: 30px 0;
}

.location-container img
{
	height: 30px;
	margin-right: 20px;
}

.location-header
{
	margin-bottom: 10px;
}

.location-address,.location-contact
{
	font-size: .95em;
	line-height: 25px;
}


/* Privacy page */

#privacy-container
{
	margin-top: 100px;
}

#privacy-container h2
{
	margin:30px 0;
	text-decoration: underline;
}

#privacy-container h3
{
	margin:30px 0;
	text-decoration: underline;
}

#privacy-container p
{
	margin: 15px 0;
	line-height: 30px;
}

#privacy-container li
{
	margin: 5px 0;
	line-height: 30px;
}
/* Mobile style */
@media only screen and (max-width: 1024px)
 {

section
{
	padding: 50px 8%;
}

/* mobile Index page headers */

.header
{
	margin-bottom: 30px;
}

.header h2
{
	font-size: .85em;
	font-weight: 500;
	letter-spacing: -.15px;
	color: #55a2ff;
}

.header h3
{
	font-size: 1.1em;
	font-weight: 500;
	color: #cdcdcd;
	margin-top: 10px!important;
	line-height: 30px;
	max-width: 100%;
	letter-spacing: -.5px;
}


#menu
{
	display: none!important;
}

#mob-menu-header-container img
{
	height: 40px;
}

#mob-menu-trigger
{
	position: relative;
	height: 40px;
	width: 40px;
	margin: auto 0
}

#mob-menu-trigger-span-one
{
	position: absolute;
	left: 10px;
	top: 6px;
	width: 25px;
	height: 2px;
	background-color: #fff;
}

#mob-menu-trigger-span-two
{
	position: absolute;
	left: 10px;
	top: 12px;
	width: 17px;
	height: 2px;
	background-color: #fff;
}

#mob-menu-trigger-span-three
{
	position: absolute;
	left: 10px;
	top: 18px;
	width: 20px;
	height: 2px;
	background-color: #fff;
}
#mob-menu
{
	display: -webkit-box!important;
	display: -ms-flexbox!important;
	display: flex!important;
}

#mob-menu-content
{
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #000;
	position: fixed;
	z-index: 999;
	display: none;
}

.mob-menu-content-active
{
	opacity: 0;
	transition: all 1s ease-in-out;
	display: block!important;
	-webkit-animation: showPopup .5s ease-in forwards;
          animation: showPopup .5s ease-in forwards;
}

#mob-menu-close
{
	height: 18px;
	right:40px;
	top: 20px;
	z-index: 999;
	position: absolute;
}

#mob-menu-nav-container
{
	position: relative;
	margin-top: 40px;
	padding: 20px 40px;
}

#mob-menu-nav-container a
{
	color: #fff;
	text-decoration: none;
	font-size: .95em;
	font-weight: 400;
	padding:15px;
	display: block;
}

#mob-sub-menu-container
{
	padding-left: 20px;
	display: none;
}

.mob-sub-menu-container-active
{
		opacity: 0;
	transition: all 1s ease-in-out;
	display: block!important;
	-webkit-animation: showPopup .5s ease-in forwards;
          animation: showPopup .5s ease-in forwards;
	
}

.mob-sub-menu-container a
{
	font-size: .85em;
}

/* mobile Landing section */
#landing-container
{
	width: 100%;
	padding: 0 0!important;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

#header-slider
{
	width: 100%;
	min-height:200px; 
	background-size: cover;
	background-position: center;
	margin: auto;
	position: relative;
}

.header-slider-image
{
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	display: none;
	transition: all 1s ease-in-out;
	-webkit-animation: showPopup .5s ease-in;
          animation: showPopup .5s ease-in;
}

.header-slider-image-active
{
	/*opacity: 1!important;*/
	transition: all 1s ease-in-out;
	display: block!important;
	-webkit-animation: showPopup .5s ease-in forwards;
          animation: showPopup .5s ease-in forwards;
}

.slide
{
	width: 100%;
	padding: 200px 10%;
	margin: auto;
	min-height: 450px;
	display: none;
	opacity: 0;
	background-position: center;
	background-size: cover;
	transform: translateY(-50px);
}

.slide-active
{
	position: relative;
	z-index: 9;
	-webkit-animation: slidePopup .5s ease-in  forwards;
          animation: slidePopup .5s ease-in  forwards;
	display: block!important;
}


.slide-arrow
{
	width: 40px;
	padding: 6px 12px;
	cursor: pointer;
	transition: all .3s ease-in-out;
}


.slide-arrow-left
{
	transform: rotateZ(180deg);
}

#landing-overlay
{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index:0;
	left: 0;
	background: linear-gradient(rgba(0,0,0,0.5), #000 ); 
}

.cta-sub-header
{
	text-transform:;
	color: #fff;
	font-size: .85em;
}

.cta-header
{
	font-size: 1.4em;
	font-weight: 500;
	color: #2d77e2;
	margin-top: 10px;
	max-width:100%;
	border-radius: 2px;
	color: #fff;
	z-index: 9;
	line-height: 35px;
	letter-spacing: -.1px;
}

.cta-btn-container
{
	margin: auto;
	margin-top: 40px;
	z-index: 9;
}

.cta-btn-container a
{
	text-decoration: none;
	color: #fff;
	border-radius: 40px;
	background-color: transparent;
	padding: 15px 30px;
	font-weight: 500;
	font-size: .95em;
	border: 2px solid #fff;
	letter-spacing: .1px;
}

.cta-btn-container a i
{
	padding-left: 5px;
}



 	/* mobile service block */

#service-container
{
	position: relative;
	z-index: 0;
}

#service-grid
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: 100%;
}

.service-block
{
	flex: 1 0 48%;
	margin: 1%;
	position: relative;
	padding: 20px 20px;
	border-radius: 10px;
	-webkit-transition: all  .3s ease-in-out;
	-o-transition: all  .5s ease-in-out;
	transition: all  .5s ease-in-out;
	position: relative;
	text-align: center;
	background-color: #242424;
	overflow: hidden;
}


.service-block div:after
{
	position: absolute;
	content: url('../images/right-arrow.svg');
	right: 10px;
	bottom: 10px;
	height: 15px;
	width: 15px;
}



.service-block img
{
	height: 40px;
}

.service-block
{
}

.service-block h4
{
	margin-top:10px;
	font-size:.85em;
	color: #f2f2f2;
	font-weight: 400;
	line-height: 20px;
}
.service-block p
{
	margin-top:5px;
	display: none;
	font-size: .875em;
	font-weight: 400;
	color: #a09e99;
	color: #888;
	line-height: 25px;
}

	/* mobile reason section */

#reason-container
{
	background-color: ;
}

#reason-grid
{
	width: 100%;
	display: block;
	flex-wrap: wrap;
	margin-top: 20px;
}

.reason
{
	flex:1 0 45%;
	/*width: 45%;*/
	background-color: #fff;
	background-color: #242424;
	border-radius: 10px;
	width: 100%;
	margin: 20px 0;
	padding: 20px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: block;
	/*justify-content: space-around;*/
	-ms-flex-preferred-size: 1 auto;
}

.reason img
{
	height: 30px;
	padding-right: 0;
}

.reason h4
{
	margin-top:10px;
	font-size: .95em;
	color: #eeeeee;
	font-weight: 500;
	line-height: 20px;
}

.reason p
{
	margin-top:5px;
	font-size: .8em;
	color: #cdcdcd;
	line-height: 25px;
}

#reason-btn-container
{
	margin: auto;
	margin-top: 50px;
	text-align: center;
}


#reason-btn-container a
{
	border: 1.2px solid rgba(255,255,255,1);
	text-decoration: none;
	font-size:.85em;
	padding: 15px 30px;
	color: #eee;
	border-radius: 40px;
	text-decoration: none;
}


#reason-btn-container img
{
	vertical-align: middle;
}


 /* Mobile Footer contact */

#footer-contact-container
{
	background-color: #2d77e2;
	background-image: linear-gradient(170deg, rgb(15, 58, 175) 0%, rgb(107, 84, 254) 100%);
	min-height: 100px;
	max-width: 100%;
	border-radius: 0;
	margin: auto;
	margin: 100px auto;
	z-index: 1;
	text-align: center;
	position: relative;
	overflow: hidden;
}

#footer-contact-container img
{
	height: 50%;
	width: auto;
	position: absolute;
	right: 40px;
	z-index: -1;
	top: -10%;
	opacity: .15;
}
#footer-contact-container h2
{
	color: #fff;
	font-weight: 400;
	z-index: 9;
	font-size: 1.4em;
	text-align: center;
}

#footer-contact-container a
{
	border: 1.4px solid #fff;
	color: #fff;
	padding: 15px 30px;
	font-size: .95em;
	margin:auto;
	margin-top: 50px;
	z-index: 9;
	font-weight: 400;
	border-radius: 40px;
	display: inline-block;
}

#footer-contact-container a i
{
	padding-left: 15px;
}

/* Mobile Footer */
.footer
{
	padding: 0 6%;
	max-width: 100%;
}

.footer h4
{
	font-size: .95em;
	color: #2d77e2;
	margin-bottom: 20px;
	font-weight: 500;
}

.footer a
{
	font-size: .95em;
	color: #999;
	font-weight: 500;
	padding: 2px 0;
	margin: 10px 0;
	display: block;
	width: auto;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.footer a:hover
{
	color: #fff;
}


#footer-grid
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: grid;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	grid-gap: 40px;
	padding: 40px 0;
	padding-top: 60px;
}

#footer-co img
{
	height: 50px;
	width: auto;
}

#footer-co p
{
	font-size: .85em;
	margin: 10px 0;
	font-weight: 500;
}

#footer-social-container
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;

}

#footer-social-container img
{
	height: 25px;
	margin: 0 10px;
}

#footer-quicklink-container
{
	width: 60%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

#footer-quicklink-container div
{
	width: 50%;
}

#footer-copy-container
{
	border-top: 1px solid #999;
	padding: 40px;
	text-align: center;
}

#footer-copy-container p
{
	color:#eee;
	font-size: .9em;
}


/* Other page headers */



.section-header
{
	margin-bottom: 30px;
}

.section-header h1
{
	font-size: .95em;
	font-weight: 500;
	letter-spacing: -.15px;
	color: #55a2ff;
}

.section-header h2
{
	font-size: 1.2em;
	font-weight: 500;
	color: #cdcdcd;
	margin-top: 10px!important;
	line-height: 35px;
	max-width: 90%;
	letter-spacing: -.5px;
}




.header-center
{
	text-align: left!important;
}

.header-center h2
{
	max-width: 100%;
	margin: auto;
}



/* Service page */
.service-header-section
{
	margin-top: 100px;
	padding: 0 12.5%;

}

.service-text-container
{
	margin: 50px 0;
}

.service-text-container p
{
	text-align: left;
	font-size: .9em;
	line-height: 28px;
	margin-top: 50px;
}

.service-pic
{
	height: 200px;
	width: 100%;
	background-size: cover;
	border-radius: 2px;
}

.service-flex-box-container
{
	margin: 50px 0;
}

.service-flex-box-head
{
	text-decoration: underline;
	font-weight: 500;
	font-size: .85em;
	text-align: left;
}

.service-flex-box
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 0px;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	max-width: 100%;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.service-flex-item
{
	text-align: center;
}

.service-flex-item img
{
	height: 50px;
	margin-bottom: 10px;
}

.service-flex-item p
{
	font-size: .9em;
	font-weight: 500;
}

.service-footer-container
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: inline-block;
	margin: auto;
	text-align: center;
	margin: 20px 0;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.service-nav-item p
{
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-weight: 500;
	font-size: .7em;
	letter-spacing: 1px;
}

.service-nav-item a
{
	text-align: center;
	margin: auto;
	text-decoration: none;
	display: block;
	font-size: .85em;
	padding: 15px 30px;
	background-color: transparent;
}

.service-nav-item a .fa-arrow-right
{
	padding-left: 3px;
}

.service-nav-item a .fa-arrow-left
{
	padding-right: 3px;
}

#contact-flex
{
	display: block;
}

#contact-form
{
	width: 100%;
	display: block;
}

#contact-right-container
{
	display:block;
	width: 100%;
	padding: 0 20px;
}

.location-container
{
	display: block;
	width: 50%;
}

.location-container img
{
	height: 20px;
	display: inline;
	margin-right: 10px;
	float: left;
}

.location-container h3
{
	display: inline;
	font-size: 1em;
}

.location-container p
{
	display: inline-block;
	margin: 5px 0;
	font-size: .85em;
	line-height: 20px;
}

 }